Recent content by Woodylepic

  1. W

    Problem deallocate memory and ShiftCG = CTD?

    I think that if you initialise the cog in a separate SetClassCaps (cfg); like this it will not crash ? see the example above. void lc36_launchpad::clbkSetClassCaps (FILEHANDLE cfg) { SetClassCaps (cfg); } void lc36_launchpad::SetClassCaps (FILEHANDLE cfg) { ShiftCG...
  2. W

    Problem simulation of canard wing for A-003 and A-004 Little Joe apollo capsule any idea ?

    The lift of the capsule was made similar to apollo projet and work perfecly but I got some problem to get a descent canard wing configuration, I have made a little wing at position of the canard but that not working very good (the capsule move like a pendulum and was not oriented correcly for...
  3. W

    Problem simulation of canard wing for A-003 and A-004 Little Joe apollo capsule any idea ?

    I'm trying to simulate the canard wing for post deployment of the chute (early landing system) for Little Joe capsule (BP23 and SC-002) to get a correct angle of deployment of the chute, It is possible to get a wing whit an "angle" or something that can simulate this ? any idea :hailprobe...
  4. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    void QTV::clbkSetClassCaps (FILEHANDLE cfg) { stage=0; SetfirstStage (); char attach_id[8]={"SH"}; launch_pad_attachement=CreateAttachment (true,_V(0, 0, -8.771),_V(0,-1,0),_V(0,0,1),attach_id); } Ok Orb :thumbup: but I have to initiate the first stage some where ? So I need to put the...
  5. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    Your Right Orb :thumbup: I have disable this line and now all ok. For the Orbiter 2010 debug I have try to debug an other Orbiter whit only Orbiter in the word and same problem blank liste. Thank for your Help Orb Now I know where is the trouble. But how to resolve this ? I have a...
  6. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    // ============================================================== // ORBITER MODULE: QTV // Part of the ORBITER SDK // Copyright (C) 1/20/2011 Ronald Dandurand // All rights reserved // // QTV.h // QTV basic specs and animations // // QTV mesh and textures by Ronald Dandurand //...
  7. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    Here all my listing // ============================================================== // ORBITER MODULE: QTV // Part of the ORBITER SDK // Copyright (C) 1/20/2011 Ronald Dandurand // All rights reserved // // ! = contraire aux...
  8. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    What is a null pointer ? Like I said before I have only this NULL QTV::QTV (OBJHANDLE hObj, int fmodel) : VESSEL3 (hObj, fmodel) { // propellant resources ph_recrut_tank = NULL;//disconnect the thruster from its current tank, ph_algol_tank = NULL; // truster group resources thg_recruit = NULL...
  9. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    I got this in Ollydbg where Orbiter Crash in attached mode
  10. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    Ok now I got this whene orbiter crash Exception non gérée à 0x0040614f dans orbiter.exe : 0xC0000005: Violation d'accès lors de la lecture de l'emplacement 0x00000050.
  11. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    I have try to attach Orbiter but I see nothing in the debugger (does I attach the module only or Orbiter and my module ?) It is possible that the problem come from becose the projet is compiled as debug, not release ? I have try to compile as release and same problem Orbiter crash at 2em...
  12. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    Ofcourse yes from C++ debuger But I got a message before debuger start "no debug info for Orbiter.exe"
  13. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    Command F:\ORBITER 2010\orbiter.exe Work F:\ORBITER 2010\ I have try this but I see a blank page no scenario ?
  14. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    I have try the debuger but I have some trouble whit it,(whene I start Orbiter in the debuger I have a blank scenario windows ? whit no mission displayed. so I can't select any scenario in ?) But hall seem to be ok in my module except the crash when I reload a new mission. the problem seem to...
  15. W

    Problem Orbiter crash whene i reload a scenario for 2em time ?

    All my Rockets are suborbitals so no load state and save state. The only NULL I have is this, QTV::QTV (OBJHANDLE hObj, int fmodel) : VESSEL3 (hObj, fmodel) { // propellant resources ph_recrut_tank = NULL;//disconnect the thruster from its current tank, ph_algol_tank = NULL; // truster group...
Back
Top