New Release D3D9Client Development

littleplatonian

New member
Joined
Dec 4, 2011
Messages
32
Reaction score
0
Points
0
Location
Sacramento
Feature request: Menu bar color config option.

I was wondering if it would be possible to add the 'color config dial' found in many windows applications for font color, etc. to the menu config dialog box. I'm currently using it with auto-hide enabled with labels only and I thought it would be nice to change the color of the labels and the information to either side of it at will for different situations.
 

Jarod

Member
Joined
Dec 13, 2011
Messages
169
Reaction score
0
Points
16
Does variable transparency for MFD could be implemented by ng-clients ? That would be nice.
 

kuddel

Donator
Donator
Joined
Apr 1, 2008
Messages
2,064
Reaction score
508
Points
113
The implementation will be tricky but it could work if the Orbiter will pre-create the window during Orbiter startup.
Yes it might be tricky. The dialogs are definitely not created at startup. They are created on the spot when needed.
Here's the procedure I was thinking of:
1. Add a Hook to the Main Window (Orbiter Renderer) to catch all WM_INITDIALOG messages.
2. Add a Hook to the Main Window (Orbiter Renderer) to catch all WM_DESTROY messages.
3.a. In the Init-Callback Method (1), check if it is "the right" Dialog (Text=="Visual Helpers" or ID==230 e.g.)
3.b. If "the right" Dialog is found, apply a Hook for the according Checkbox.
3.c. When the CheckBox-Callback(3.b) is called, set the value at D3D9Client Object (so it can be used fast and anytime during rendering)
4. In the Destroy-Callback Method (2), check if it is "the right" Dialog (Text=="Visual Helpers" or ID==230 e.g.) and remove all hooks.

I think this could work (hopefully ;) )

In pseudo-code:
PHP:
class Scene {
  public:
    // Construction / Destruction
    Scene() {
      showBodyForceVectors = false;
      AddWndHook();
    }
    ~Scene() {
      RemoveCheckBoxHook();
      RemoveWndHook();
    }

    // When availably through Orbiter API, these will direct call oapiShowBody...
    bool GetShowBodyForceVectors () {return showBodyForceVectors;}
    void SetShowBodyForceVectors (bool on) {showBodyForceVectors = on;}

    void Render () {
     // ...
     // render grapple points
     //
     if (true == GetShowBodyForceVectors()) {
       for (pv=vobjFirst; pv; pv=pv->next) {
         pv->vobj->RenderBodyForceVectors(pDevice);
     }
     // ...
    }

  private:
    bool showBodyForceVectors;

    HOOKHANDLE hook_wnd;
    HOOKHANDLE hook_cbox;

    void AddWndHook () {
      if (!hook_wnd_init) {
        hook_wnd = SetWindowsHookEx(WM_INITDIALOG | WM_DESTROY, (HOOKPROC)WndCallback);
      }
    }
    void RemoveWndHook () {
      if (hook_wnd) {
        UnhookWindowsHookEx(hook_wnd);
      }
    }

    void AddCheckBoxHook () {
      if (!hook_cbox) {
        hook_cbox = SetWindowsHookEx(BM_SETCHECK, (HOOKPROC)CboxCallback);
      }
    }
    void RemoveCheckBoxHook () {
      if (hook_cbox) {
        UnhookWindowsHookEx(hook_cbox);
      }
    }

    LRESULT WndCallback (int nCode, WPARAM wParam, LPARAM lParam) {
      if (isOurWindow(wParam, lParam)) {
        if (nCode == WM_INITDIALOG) {
          AddCheckBoxHook();
        } else { // WM_DESTROY
          RemoveCheckBoxHook();
        }
      }
    }
    LRESULT CboxCallback (int nCode, WPARAM wParam, LPARAM lParam) {
      if (isOurCheckBox(wParam, lParam)) {
        SetShowBodyForceVectors( get_checkbox_state(wParam, lParam) );
      }
    }
}

/Kuddel
 
Last edited:

DaveS

Addon Developer
Addon Developer
Donator
Beta Tester
Joined
Feb 4, 2008
Messages
9,452
Reaction score
707
Points
203
Would be possible to incorporate a external camera view pan capability? That would be pretty handy when debugging/testing animations which is not located near the center of the image.
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,669
Reaction score
798
Points
128
Here's the procedure I was thinking of:
1. Add a Hook to the Main Window (Orbiter Renderer) to catch all WM_INITDIALOG messages.
2. Add a Hook to the Main Window (Orbiter Renderer) to catch all WM_DESTROY messages.
3.a. In the Init-Callback Method (1), check if it is "the right" Dialog (Text=="Visual Helpers" or ID==230 e.g.)
3.b. If "the right" Dialog is found, apply a Hook for the according Checkbox.
3.c. When the CheckBox-Callback(3.b) is called, set the value at D3D9Client Object (so it can be used fast and anytime during rendering)
4. In the Destroy-Callback Method (2), check if it is "the right" Dialog (Text=="Visual Helpers" or ID==230 e.g.) and remove all hooks.

That sounds good and logical. I have never used the "Hook" functions to do anything, so I don't know. But I'll trust you know what you are doing.

---------- Post added at 00:55 ---------- Previous post was at 00:49 ----------

Would be possible to incorporate a external camera view pan capability? That would be pretty handy when debugging/testing animations which is not located near the center of the image.
Handling the camera isn't a problem but every key on a keyboard is pretty much reserved for something. I suppose the 'WASD' is a logical choise for panning while the 'debug' mode is active. Or the panning could be done via mouse while holding some other key. I'll look into it.
 

DaveS

Addon Developer
Addon Developer
Donator
Beta Tester
Joined
Feb 4, 2008
Messages
9,452
Reaction score
707
Points
203
Handling the camera isn't a problem but every key on a keyboard is pretty much reserved for something. I suppose the 'WASD' is a logical choise for panning while the 'debug' mode is active. Or the panning could be done via mouse while holding some other key. I'll look into it.
How about the left mouse-button? The right mouse-button is already set up for rotation, so it makes sense(hold left button to pan, the right button to rotate).
 
Last edited:

Cosmic Penguin

Geek Penguin in GTO
News Reporter
Donator
Joined
Jan 27, 2011
Messages
3,672
Reaction score
2
Points
63
Location
Hong Kong
Hmm... my D3D9 RC42 has a problem with re-spawning the Orbiter launch pad under the stable 100830 release....

This happens with every add-on that I've tested so far.

Code:
Orbiter Version 100830
D3D9Client Build [Mar  5 2012]
Exception Code=0xC0000005, Address=0x02D156C6
EAX=0x00000001 EBX=0x0F3BC8F0 ECX=0x02D1FEA3 EDX=0x41DBA8BB ESI=0x0C6CE430 EDI=0x00000000 EBP=0x00491100 ESP=0x009FF714 EIP=0x02D156C6
C:\Users\Ivan\Desktop\Orbiter_2010\Modules\Plugin\D3D9Client.dll EntryPoint=0x02D21C5D, Base=0x02CE0000, Size=1290240
Exception in clbkCloseSession()
!!! Abnormal Program Termination !!!

I wonder what's going on?
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,669
Reaction score
798
Points
128
Hmm... my D3D9 RC42 has a problem with re-spawning the Orbiter launch pad under the stable 100830 release....

This could be related into a bug I fixed a few days ago. Should be fixed from a coming RC43 release.
 

FordPrefect

Addon Developer
Addon Developer
Donator
Joined
Feb 7, 2008
Messages
407
Reaction score
41
Points
28
It's really cool. But what do you guys think about the twilight ? Isn't the darkness coming far too soon after the sun set ?
Good observation Jarmonik!
Eric Bruneton's atmospheric rendering code is brilliant due to his scientific research and approach, though I was thinking the exact same thing.
You can "test" the dawn and dusk effects in SpaceEngine (as it uses E.B.'s code), and to me the sky is getting too dark too quickly after sunset or vice-versa prior sunrise. In reality, the sky/atmosphere has a dark blueish to light blueish hue before the effects of red/orange sunlight (sunrise here) kick in. So this seems one little thing, that could be improved on an otherwise spectacular atmospheric rendering code.
 

kuddel

Donator
Donator
Joined
Apr 1, 2008
Messages
2,064
Reaction score
508
Points
113
Hi jarmonik,

I have come currently quite far with my "OapiExtension" class.
But now I have a more general design question:

We have 2 options how to implement this:
a) Explicit method calls for non-present API functions
b) Transparent method calls.

Let me explain what I mean by that:
With (a), the renderer code calls e.g.
PHP:
 if (oapiExtension->GetShowBodyForceVector()){
 ...
}
With option (b) the renderer code uses the same approach as for getting any other Orbiter-config-parameter:
PHP:
// Native Orbiter config
DWORD plnmode = *(DWORD*)gc->GetConfigParam(CFGPRM_PLANETARIUMFLAG);
if (plnmode & PLN_ENABLE) {
  ...
}
// Non-native config (BFV: show [B]ody [F]orce [V]ectors)
DWORD bfvmode = *(DWORD*)gc->GetConfigParam(CFGPRM_SHOWBODYFORCEVECTORSFLAG);
if (bfvmode & BFV_ENABLED) {
  ...
}
The second (b) approach just overrides the GetConfigParam-Method of GraphicsClient and does the right thing.
PHP:
// ==============================================================
// Overridden
//
const void *D3D9Client::GetConfigParam (DWORD paramtype) const
{
    return (paramtype >= CFGPRM_SHOWBODYFORCEVECTORSFLAG)
           ? oapiExtension->GetConfigParam(paramtype)
           : GraphicsClient::GetConfigParam(paramtype);
}
I just add some more CFGPRM_xxx definitions somewhere in the "OapiExtension.h" header, all with values bigger than the "official" API CFGPRM_s.
As soon an martin exposes some of those, we just have to exchange 'our' CFGPRM_SHOWBODYFORCEVECTORSFLAG by the 'official' name martin has chosen. Just changes in Scene.cpp. That's it.

I am currently preferring the second (b) option, cause it is more transparent to the programmer. On the other hand, someone (you?) might like to see directly that this config comes from 'inofficial' sources.

What's your opinion about this?

/Kuddel
 

Jarod

Member
Joined
Dec 13, 2011
Messages
169
Reaction score
0
Points
16
Is it possible to implement brighter "night light level" in order to see cities a little more like those ISS timelapse videos ?
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,669
Reaction score
798
Points
128
What's your opinion about this?

I would prefer the option (b) as well for the same reasons. Thanks for doing this.

---------- Post added at 00:44 ---------- Previous post was at 00:35 ----------

Is it possible to implement brighter "night light level" in order to see cities a little more like those ISS timelapse videos ?

Looks like there is night-lights intensity setting in the visual effects tab but it's not working. It would also require a lot of art work and textures. I don't have time right now but I'll look into it later when implementing an improved atmospheric rendering.
 

kuddel

Donator
Donator
Joined
Apr 1, 2008
Messages
2,064
Reaction score
508
Points
113
I would prefer the option (b) as well for the same reasons. Thanks for doing this.
O.K. So how do you want it? ;)

Shall I give you a complete package (RC42 based), or a diff-file, or my Subversion Repository, or ...? PM or here in the thread?

I can of course wait 'till you release RC43 and I'll do the merge on top of that. Whatever you prefer.

Things that work:

  • All check-boxes are available, though the gauges (opacity and scale) are not yet read. They are a bit more tricky ;)
  • Should work for Orbiter-2010 and above (tested with v110830 and v111105)

Things to do:

  • Get the values of the gauges (will most likely be floats ranging from 0...1)
  • I would like to add a config parameter that disables the Hooking completely. The values can still be accessed by the Renderer code, but they will allways be returned as 0 (zero/off) in that case (like it's now).
    I've done some testing and I don't see any impact on framerate with or without the hook, but this switch might be usefull anyway.

Good night,
Kuddel
 
Last edited:
Joined
Mar 23, 2008
Messages
165
Reaction score
0
Points
16
Some more unstructured testing: I get night light textures appearing on the KSC surface tile, day or night. This is on a laptop with Intel GMA 965 Express graphics, vanilla Orbiter 100830 and RC42. The actual texture displayed changes with camera angle, see pictures two and three - suggests to me a possible link with the runway lights? I've tried the Earth L14 textures which has the same behaviour. In addition, the nightlights toggle in Visual Effects tab seems to have no effect.

picture.php
picture.php
picture.php


Note - this seems to be specific to one laptop - I cannot reproduce this on a I3/Intel HD3000 laptop.

Would be possible to incorporate a external camera view pan capability? That would be pretty handy when debugging/testing animations which is not located near the center of the image.

Another vote for this feature, not necessarily for debugging but for general use.

(Edit)

and just got this when adding a celestial sphere image (the sphere flashes green and magenta):
picture.php
 
Last edited:

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,669
Reaction score
798
Points
128
D3D9Client RC43

Here is RC43 for testing. I decided to release what I got right now before starting to work with a new features. RC43 should be pretty stable.

- Saturn ring shadow implemented
- Celestial body dots albedo set
- VASI is visible during daytime
- sun light/runway lights bug related to sim time reduction in scenario editor fixed.
- Several bugs are fixed.

- Saturn ring clipping reduced (not fixed). A fix would require a fundamental rewrite of the rendering code. I already found a high resolution texture for the rings. It's a 1 by 11000 pixels (33kb uncompressed). It should give a pretty good results.

Attachment removed due to a bad bug. Will upload a new version later today
 
Last edited:

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,669
Reaction score
798
Points
128
Shall I give you a complete package (RC42 based), or a diff-file, or my Subversion Repository, or ...? PM or here in the thread?

You can upload the RC42 based package. I'll merge it with my current code.

---------- Post added at 16:30 ---------- Previous post was at 16:27 ----------

In addition, the nightlights toggle in Visual Effects tab seems to have no effect.
I'll check it out. It could have gone broken in some point.

and just got this when adding a celestial sphere image (the sphere flashes green and magenta):
??? I don't know what's going on.

---------- Post added at 17:19 ---------- Previous post was at 16:30 ----------

and just got this when adding a celestial sphere image (the sphere flashes green and magenta):

It's a runway light, I have never seen it like that. Does it occur in RC43.
 

N_Molson

Addon Developer
Addon Developer
Donator
Joined
Mar 5, 2010
Messages
9,295
Reaction score
3,265
Points
203
Location
Toulouse
Hi,

I got a CTD that doesn't happen with default D3D7 :

It occured when I F3-switched focus to another ship (the Fregat) orbiting the Moon. It seems that there are problems at the end of the Log.

HTML:
D3D9Client Log

(0: 0.00s 2us)(0xBAC) ================ clbkInitialise ===============
(1: 0.00s 95us)(0xBAC) Orbiter Version = 100830
(2: 0.01s 5694us)(0xBAC) Index:0 640 x 480 60Hz (22)
(3: 0.01s 5786us)(0xBAC) Index:1 640 x 480 70Hz (22)
(4: 0.01s 6252us)(0xBAC) Index:2 640 x 480 72Hz (22)
(5: 0.01s 6522us)(0xBAC) Index:3 640 x 480 75Hz (22)
(6: 0.01s 6790us)(0xBAC) Index:4 720 x 480 60Hz (22)
(7: 0.01s 7068us)(0xBAC) Index:5 720 x 576 60Hz (22)
(8: 0.01s 7337us)(0xBAC) Index:6 800 x 600 60Hz (22)
(9: 0.01s 7607us)(0xBAC) Index:7 800 x 600 70Hz (22)
(10: 0.01s 7985us)(0xBAC) Index:8 800 x 600 72Hz (22)
(11: 0.01s 8361us)(0xBAC) Index:9 800 x 600 75Hz (22)
(12: 0.01s 8636us)(0xBAC) Index:10 1024 x 768 60Hz (22)
(13: 0.01s 8902us)(0xBAC) Index:11 1024 x 768 70Hz (22)
(14: 0.01s 9173us)(0xBAC) Index:12 1024 x 768 72Hz (22)
(15: 0.01s 9443us)(0xBAC) Index:13 1024 x 768 75Hz (22)
(16: 0.01s 9713us)(0xBAC) Index:14 1152 x 864 60Hz (22)
(17: 0.01s 9993us)(0xBAC) Index:15 1152 x 864 70Hz (22)
(18: 0.01s 10265us)(0xBAC) Index:16 1152 x 864 72Hz (22)
(19: 0.01s 10539us)(0xBAC) Index:17 1152 x 864 75Hz (22)
(20: 0.01s 10809us)(0xBAC) Index:18 1280 x 720 60Hz (22)
(21: 0.01s 11079us)(0xBAC) Index:19 1280 x 768 60Hz (22)
(22: 0.01s 11350us)(0xBAC) Index:20 1280 x 768 70Hz (22)
(23: 0.01s 11620us)(0xBAC) Index:21 1280 x 768 72Hz (22)
(24: 0.01s 11887us)(0xBAC) Index:22 1280 x 768 75Hz (22)
(25: 0.01s 12157us)(0xBAC) Index:23 1280 x 800 60Hz (22)
(26: 0.01s 12427us)(0xBAC) Index:24 1280 x 800 70Hz (22)
(27: 0.01s 12696us)(0xBAC) Index:25 1280 x 800 72Hz (22)
(28: 0.01s 12967us)(0xBAC) Index:26 1280 x 800 75Hz (22)
(29: 0.01s 13237us)(0xBAC) Index:27 1280 x 960 60Hz (22)
(30: 0.01s 13507us)(0xBAC) Index:28 1280 x 960 70Hz (22)
(31: 0.01s 13778us)(0xBAC) Index:29 1280 x 960 72Hz (22)
(32: 0.02s 14047us)(0xBAC) Index:30 1280 x 960 75Hz (22)
(33: 0.02s 14152us)(0xBAC) Index:31 1280 x 1024 60Hz (22)
(34: 0.02s 14184us)(0xBAC) Index:32 1280 x 1024 70Hz (22)
(35: 0.02s 14216us)(0xBAC) Index:33 1280 x 1024 72Hz (22)
(36: 0.02s 14293us)(0xBAC) Index:34 1280 x 1024 75Hz (22)
(37: 0.02s 14326us)(0xBAC) Index:35 800 x 600 56Hz (22)
(38: 27.79s 41us)(0xBAC) Node[2] = RLM (0x772C8)
(39: 27.79s 90us)(0xBAC) Node[1] = Part 3 (0x79990)
(40: 27.79s 107us)(0xBAC) Node[0] = _RLM Launch#5 in 1 orbit (0x79BA0)
(41: 27.79s 123us)(0xBAC) Scenario = Scenarios\RLM\Part 3\_RLM Launch#5 in 1 orbit.scn
(42: 27.79s 3us)(0xBAC) ================ clbkCreateRenderWindow ===============
(43: 27.80s 2394us)(0xBAC) [VideoConfiguration] Adapter=0, ModeIndex=32
(44: 27.80s 3384us)(0xBAC) Adapter = NVIDIA GeForce GT 240
(45: 27.80s 3410us)(0xBAC) MaxTextureBlendStages..: 8
(46: 27.80s 3426us)(0xBAC) MaxTextureWidth........: 8192
(47: 27.80s 3441us)(0xBAC) MaxTextureHeight.......: 8192
(48: 27.80s 3455us)(0xBAC) MaxPrimitiveCount......: 8388607
(49: 27.80s 3486us)(0xBAC) MaxVertexIndex.........: 16777215
(50: 27.80s 3500us)(0xBAC) MaxAnisotropy..........: 16
(51: 27.80s 3518us)(0xBAC) MaxSimultaneousTextures: 8
(52: 27.80s 3543us)(0xBAC) MaxStreams.............: 16
(53: 27.80s 3557us)(0xBAC) MaxStreamStride........: 255
(54: 27.80s 3571us)(0xBAC) MaxVertexBlendMatrices.: 4
(55: 27.80s 3586us)(0xBAC) MaxVShaderInstrExecuted: 65535
(56: 27.80s 3600us)(0xBAC) MaxPointSize...........: 8192.000000
(57: 27.80s 3616us)(0xBAC) VertexShaderVersion....: 0x300
(58: 27.80s 3631us)(0xBAC) PixelShaderVersion.....: 0x300
(59: 27.80s 3645us)(0xBAC) NumSimultaneousRTs.....: 4
(60: 27.80s 3659us)(0xBAC) D3DPTEXTURECAPS_POW2...: 0
(61: 27.80s 3674us)(0xBAC) NONPOW2CONDITIONAL.....: 0
(62: 27.80s 3688us)(0xBAC) VertexDeclCaps.........: 0x30F
(63: 27.80s 3702us)(0xBAC) DevCaps................: 0x1BBEF0
(64: 27.80s 3717us)(0xBAC) DevCaps2...............: 0x51
(65: 27.80s 3731us)(0xBAC) XNA Math Support.......: Yes
(66: 27.86s 62004us)(0xBAC) Creating a BackBuffer SURFHANDLE=0x191DCD8 D3DSURF=0x9EB00
(67: 27.86s 62114us)(0xBAC) Available Texture Memory = 1485 MB
(68: 27.86s 398us)(0xBAC) ----- Initialize D3D9ClientSurface Tech -----
(69: 27.94s 78790us)(0xBAC) Render Target = 0x9EB00
(70: 28.09s 233640us)(0xBAC) [NEW FONT] ( Courier New), Size=20, Weight=400 Pitch&Family=31
(71: 28.10s 237270us)(0xBAC) TextMetrics: Ascent = 15
(72: 28.10s 237300us)(0xBAC) TextMetrics: Descent = 5
(73: 28.10s 237315us)(0xBAC) TextMetrics: Height = 20
(74: 28.10s 237329us)(0xBAC) TextMetrics: AvgWidth = 10
(75: 28.10s 237344us)(0xBAC) TextMetrics: MaxWidth = 11
(76: 28.10s 243519us)(0xBAC) Font Video Memory Usage = 256 kb
(77: 28.10s 243690us)(0xBAC) Font and Charter set creation succesfull
(78: 28.11s 808us)(0xBAC) Texture Null.dds loaded. (16 x 16)
(79: 28.17s 66582us)(0xBAC) Starting to initialize basic a rendering technique...
(80: 28.17s 66628us)(0xBAC) [Compiling Effects for Shader Model 3.0]
(81: 29.82s 1608us)(0xBAC) Texture Contrail1.dds loaded. (256 x 256)
(82: 29.82s 1579us)(0xBAC) Texture Contrail1.dds loaded. (256 x 256)
(83: 29.85s 27528us)(0xBAC) Texture star.dds loaded. (512 x 512)
(84: 29.85s 1442us)(0xBAC) Texture Ball.dds loaded. (64 x 64)
(85: 29.86s 6399us)(0xBAC) Texture Ball2.dds loaded. (64 x 64)
(86: 29.87s 14322us)(0xBAC) Texture Ball3.dds loaded. (128 x 128)
(87: 29.87s 124us)(0xBAC) D3D9ClientSurface: New Texture(0x191F848) w=256, h=256
(88: 29.90s 32us)(0xBAC) [NEW FONT] ( Arial), Size=15, Weight=400 Pitch&Family=31
(89: 29.91s 2782us)(0xBAC) TextMetrics: Ascent = 12
(90: 29.91s 2802us)(0xBAC) TextMetrics: Descent = 3
(91: 29.91s 2817us)(0xBAC) TextMetrics: Height = 15
(92: 29.91s 2831us)(0xBAC) TextMetrics: AvgWidth = 5
(93: 29.91s 2846us)(0xBAC) TextMetrics: MaxWidth = 32
(94: 29.91s 8665us)(0xBAC) Font Video Memory Usage = 256 kb
(95: 29.91s 8873us)(0xBAC) Font and Charter set creation succesfull
(96: 29.91s 8923us)(0xBAC) [NEW FONT] ( Fixed), Size=18, Weight=400 Pitch&Family=31
(97: 29.92s 12004us)(0xBAC) TextMetrics: Ascent = 14
(98: 29.92s 12023us)(0xBAC) TextMetrics: Descent = 4
(99: 29.92s 12038us)(0xBAC) TextMetrics: Height = 18
(100: 29.92s 12052us)(0xBAC) TextMetrics: AvgWidth = 10
(101: 29.92s 12067us)(0xBAC) TextMetrics: MaxWidth = 11
(102: 29.92s 18177us)(0xBAC) Font Video Memory Usage = 256 kb
(103: 29.92s 18349us)(0xBAC) Font and Charter set creation succesfull
(104: 30.02s 114153us)(0xBAC) CSphereManager:: Textures Loaded
(105: 30.02s 114223us)(0xBAC) CSphere Manager constructed
(106: 30.02s 114248us)(0xBAC) ================ Scene Created ===============
(107: 30.02s 807us)(0xBAC) Texture Fcd01.dds loaded. (32 x 32)
(108: 30.03s 1422us)(0xBAC) Texture Fcd01_n.dds loaded. (32 x 32)
(109: 30.03s 1578us)(0xBAC) Texture Fcd02.dds loaded. (32 x 32)
(110: 30.04s 824us)(0xBAC) Texture Fcd02_n.dds loaded. (32 x 32)
(111: 30.06s 834us)(0xBAC) Texture Fcd03.dds loaded. (32 x 32)
(112: 30.07s 829us)(0xBAC) Texture Fcd03_n.dds loaded. (32 x 32)
(113: 30.09s 14365us)(0xBAC) Texture Fcd04.dds loaded. (32 x 32)
(114: 30.10s 14122us)(0xBAC) Texture Fcd04_n.dds loaded. (32 x 32)
(115: 30.11s 14390us)(0xBAC) Texture Fcd05.dds loaded. (32 x 32)
(116: 30.13s 883us)(0xBAC) Texture Fcd05_n.dds loaded. (32 x 32)
(117: 30.14s 14246us)(0xBAC) Texture Fcd06.dds loaded. (32 x 32)
(118: 30.16s 14118us)(0xBAC) Texture Fcd06_n.dds loaded. (32 x 32)
(119: 30.17s 14414us)(0xBAC) Texture Fcd07.dds loaded. (32 x 32)
(120: 30.18s 14117us)(0xBAC) Texture Fcd07_n.dds loaded. (32 x 32)
(121: 30.20s 14382us)(0xBAC) Texture Fcd08.dds loaded. (32 x 32)
(122: 30.21s 14110us)(0xBAC) Texture Fcd08_n.dds loaded. (32 x 32)
(123: 30.23s 14394us)(0xBAC) Texture Fcd09.dds loaded. (32 x 32)
(124: 30.24s 14108us)(0xBAC) Texture Fcd09_n.dds loaded. (32 x 32)
(125: 30.26s 14403us)(0xBAC) Texture Fcd10.dds loaded. (32 x 32)
(126: 30.27s 14150us)(0xBAC) Texture Fcd10_n.dds loaded. (32 x 32)
(127: 30.29s 14346us)(0xBAC) Texture Fcd11.dds loaded. (32 x 32)
(128: 30.30s 14065us)(0xBAC) Texture Fcd11_n.dds loaded. (32 x 32)
(129: 30.31s 14402us)(0xBAC) Texture Fcd12.dds loaded. (32 x 32)
(130: 30.33s 14096us)(0xBAC) Texture Fcd12_n.dds loaded. (32 x 32)
(131: 30.34s 14418us)(0xBAC) Texture Fcd13.dds loaded. (32 x 32)
(132: 30.36s 14076us)(0xBAC) Texture Fcd13_n.dds loaded. (32 x 32)
(133: 30.37s 14421us)(0xBAC) Texture Roof01.dds loaded. (32 x 32)
(134: 30.38s 14136us)(0xBAC) Texture Roof01_n.dds loaded. (32 x 32)
(135: 30.40s 14361us)(0xBAC) Texture Roof02.dds loaded. (32 x 32)
(136: 30.41s 14145us)(0xBAC) Texture Roof02_n.dds loaded. (32 x 32)
(137: 30.43s 14364us)(0xBAC) Texture Wall01.dds loaded. (32 x 32)
(138: 30.44s 14122us)(0xBAC) Texture Wall01_n.dds loaded. (32 x 32)
(139: 30.46s 14381us)(0xBAC) Texture Door01.dds loaded. (32 x 32)
(140: 30.47s 14034us)(0xBAC) Texture Door01_n.dds loaded. (32 x 32)
(141: 30.49s 14479us)(0xBAC) Texture Lpad01.dds loaded. (128 x 128)
(142: 30.50s 14110us)(0xBAC) Texture Lpad01_n.dds loaded. (128 x 128)
(143: 30.51s 14409us)(0xBAC) Texture Lpad02.dds loaded. (128 x 128)
(144: 30.53s 14049us)(0xBAC) Texture Lpad02_n.dds loaded. (128 x 128)
(145: 30.54s 14412us)(0xBAC) Texture Lpad02a.dds loaded. (128 x 128)
(146: 30.56s 14055us)(0xBAC) Texture Lpad02a_n.dds loaded. (128 x 128)
(147: 30.57s 14495us)(0xBAC) Texture Taxiway1.dds loaded. (128 x 128)
(148: 30.58s 13981us)(0xBAC) Texture Taxiway1_n.dds loaded. (128 x 128)
(149: 30.60s 14488us)(0xBAC) Texture Taxiway2.dds loaded. (128 x 128)
(150: 30.61s 14017us)(0xBAC) Texture Taxiway2_n.dds loaded. (128 x 128)
(151: 30.63s 14449us)(0xBAC) Texture Monorail.dds loaded. (64 x 64)
(152: 30.64s 14028us)(0xBAC) Texture Monorail_n.dds loaded. (64 x 64)
(153: 30.66s 14474us)(0xBAC) Texture Hangrail.dds loaded. (64 x 64)
(154: 30.67s 14044us)(0xBAC) Texture Hangrail_n.dds loaded. (64 x 64)
(155: 30.69s 14460us)(0xBAC) Texture Solpanel.dds loaded. (128 x 128)
(156: 30.70s 14056us)(0xBAC) Texture Solpanel_n.dds loaded. (128 x 128)
(157: 31.07s 368975us)(0xBAC) Texture Runway2.dds loaded. (2048 x 2048)
(158: 31.08s 7255us)(0xBAC) Texture Runway2_n.dds loaded. (256 x 256)
(159: 31.08s 1410us)(0xBAC) Texture Ball.dds loaded. (64 x 64)
(160: 31.08s 7921us)(0xBAC) Texture Ball_n.dds loaded. (64 x 64)
(161: 31.10s 14512us)(0xBAC) Texture Cape17.dds loaded. (128 x 128)
(162: 31.11s 14232us)(0xBAC) Texture Cape17_n.dds loaded. (128 x 128)
(163: 31.13s 14217us)(0xBAC) Texture Cape18.dds loaded. (128 x 128)
(164: 31.14s 14126us)(0xBAC) Texture Cape18_n.dds loaded. (128 x 128)
(165: 31.16s 14374us)(0xBAC) Texture Cape19.dds loaded. (128 x 128)
(166: 31.17s 14271us)(0xBAC) Texture Cape19_n.dds loaded. (128 x 128)
(167: 31.19s 14221us)(0xBAC) Texture Cape20.dds loaded. (128 x 128)
(168: 31.20s 14085us)(0xBAC) Texture Cape20_n.dds loaded. (128 x 128)
(169: 31.21s 14383us)(0xBAC) Texture Cape21.dds loaded. (128 x 128)
(170: 31.23s 14137us)(0xBAC) Texture Cape21_n.dds loaded. (128 x 128)
(171: 31.24s 14381us)(0xBAC) Texture Cape22.dds loaded. (128 x 128)
(172: 31.26s 14149us)(0xBAC) Texture Cape22_n.dds loaded. (128 x 128)
(173: 31.27s 14469us)(0xBAC) Texture Cape23.dds loaded. (128 x 128)
(174: 31.28s 13930us)(0xBAC) Texture Cape23_n.dds loaded. (128 x 128)
(175: 31.30s 14431us)(0xBAC) Texture yell.dds loaded. (32 x 32)
(176: 31.31s 14083us)(0xBAC) Texture yell_n.dds loaded. (32 x 32)
(177: 31.31s 24us)(0xBAC) [NEW FONT] ( Courier New), Size=-20, Weight=400 Pitch&Family=31
(178: 31.32s 3000us)(0xBAC) TextMetrics: Ascent = 17
(179: 31.32s 3021us)(0xBAC) TextMetrics: Descent = 5
(180: 31.32s 3036us)(0xBAC) TextMetrics: Height = 22
(181: 31.32s 3055us)(0xBAC) TextMetrics: AvgWidth = 12
(182: 31.32s 3070us)(0xBAC) TextMetrics: MaxWidth = 13
(183: 31.32s 10054us)(0xBAC) Font Video Memory Usage = 512 kb
(184: 31.32s 10295us)(0xBAC) Font and Charter set creation succesfull
(185: 31.32s 10337us)(0xBAC) [NEW FONT] ( Arial), Size=20, Weight=400 Pitch&Family=31
(186: 31.33s 12979us)(0xBAC) TextMetrics: Ascent = 15
(187: 31.33s 12999us)(0xBAC) TextMetrics: Descent = 4
(188: 31.33s 13013us)(0xBAC) TextMetrics: Height = 19
(189: 31.33s 13028us)(0xBAC) TextMetrics: AvgWidth = 8
(190: 31.33s 13042us)(0xBAC) TextMetrics: MaxWidth = 45
(191: 31.33s 18515us)(0xBAC) Font Video Memory Usage = 256 kb
(192: 31.33s 18698us)(0xBAC) Font and Charter set creation succesfull
(193: 31.33s 674us)(0xBAC) LoadTextureSpecial(font1tex.dds) Handle=0x194D8B8
(194: 31.34s 6463us)(0xBAC) Texture font1tex.dds loaded. (512 x 256)
(195: 31.56s 2698us)(0xBAC) Texture 0x194D990 (VAB_TL1.dds) added in repository
(196: 31.56s 1435us)(0xBAC) Texture 0x194DAC0 (VAB_FR01.dds) added in repository
(197: 31.57s 7111us)(0xBAC) Texture 0x194DBF0 (VAB_TL2.dds) added in repository
(198: 31.59s 14973us)(0xBAC) Texture 0x194DD20 (VAB_FR02.dds) added in repository
(199: 31.60s 17880us)(0xBAC) Texture 0x194DE50 (VAB_BK01.dds) added in repository
(200: 31.61s 10065us)(0xBAC) Texture 0x194DF80 (LCC_WNDS.dds) added in repository
(201: 31.63s 13934us)(0xBAC) Texture 0x194E0B0 (LCC_DRS.dds) added in repository
(202: 31.67s 23029us)(0xBAC) Texture 0x194E1E0 (KSC\KLC39B.dds) added in repository
(203: 31.68s 4071us)(0xBAC) Texture 0x194E310 (generic\concrete1.dds) added in repository
(204: 31.68s 1659us)(0xBAC) Texture 0x194E440 (generic\stripes.dds) added in repository
(205: 31.68s 6960us)(0xBAC) Texture 0x194E570 (generic\concrete2a.dds) added in repository
(206: 31.70s 15762us)(0xBAC) Texture 0x194E6A0 (generic\concrete3.dds) added in repository
(207: 31.71s 14129us)(0xBAC) Texture 0x194E7D0 (generic\tiles1.dds) added in repository
(208: 31.75s 34188us)(0xBAC) Texture 0x194E900 (KSC\MLP.dds) added in repository
(209: 31.75s 2695us)(0xBAC) Texture 0x194EA30 (generic\metal_plates1.dds) added in repository
(210: 31.76s 5633us)(0xBAC) Texture 0x194EB60 (generic\railings1.dds) added in repository
(211: 32.11s 325236us)(0xBAC) Texture 0x194EC90 (Krayniy/POL_10.dds) added in repository
(212: 32.44s 329205us)(0xBAC) Texture 0x194EDC0 (Krayniy/POL_01.dds) added in repository
(213: 32.78s 337822us)(0xBAC) Texture 0x194EEF0 (Krayniy/POL_02.dds) added in repository
(214: 33.11s 334741us)(0xBAC) Texture 0x194F020 (Krayniy/POL_03.dds) added in repository
(215: 33.45s 335021us)(0xBAC) Texture 0x194F150 (Krayniy/POL_04.dds) added in repository
(216: 33.78s 332745us)(0xBAC) Texture 0x194F280 (Krayniy/POL_05.dds) added in repository
(217: 34.11s 332446us)(0xBAC) Texture 0x194F3B0 (Krayniy/POL_06.dds) added in repository
(218: 34.45s 332781us)(0xBAC) Texture 0x194F4E0 (Krayniy/POL_07.dds) added in repository
(219: 34.78s 332305us)(0xBAC) Texture 0x194F610 (Krayniy/POL_08.dds) added in repository
(220: 35.11s 327217us)(0xBAC) Texture 0x194F740 (Krayniy/POL_09.dds) added in repository
(221: 35.19s 86488us)(0xBAC) Texture 0x194F870 (Krayniy/PLI_01.dds) added in repository
(222: 35.52s 323239us)(0xBAC) Texture 0x194F9A0 (Krayniy/RAZ_00.dds) added in repository
(223: 35.80s 15167us)(0xBAC) Texture 0x194FAD0 (Krayniy/ASPHALT.dds) added in repository
(224: 35.84s 13669us)(0xBAC) Texture 0x194FC00 (Krayniy/STE2X10S.dds) added in repository
(225: 35.86s 14123us)(0xBAC) Texture 0x194FD30 (Krayniy/SKLOKN.dds) added in repository
(226: 35.87s 14420us)(0xBAC) Texture 0x194FE60 (Krayniy/SKLDVER.dds) added in repository
(227: 35.93s 56442us)(0xBAC) Texture 0x194FF90 (Krayniy/0015.dds) added in repository
(228: 35.93s 1555us)(0xBAC) Texture 0x19500C0 (Krayniy/beton.dds) added in repository
(229: 36.07s 13033us)(0xBAC) Texture 0x19501F0 (Krayniy/DVE2X10s.dds) added in repository
(230: 36.09s 14437us)(0xBAC) Texture 0x1950320 (Krayniy/OKNO02s.dds) added in repository
(231: 36.10s 14081us)(0xBAC) Texture 0x1950450 (Krayniy/OKNO01s.dds) added in repository
(232: 36.11s 14414us)(0xBAC) Texture 0x1950580 (Krayniy/STE2X10s.dds) added in repository
(233: 36.14s 15487us)(0xBAC) Texture 0x19506B0 (Krayniy/kryscha.dds) added in repository
(234: 36.31s 15774us)(0xBAC) Texture 0x19507E0 (Krayniy/0015_n.dds) added in repository
(235: 36.33s 11031us)(0xBAC) Texture 0x1950910 (Krayniy/DVE3X3.dds) added in repository
(236: 36.34s 14396us)(0xBAC) Texture 0x1950A40 (Krayniy/OKNO3X3.dds) added in repository
(237: 36.37s 15415us)(0xBAC) Texture 0x1950B70 (Krayniy/STE3X3.dds) added in repository
(238: 36.47s 12730us)(0xBAC) Texture 0x1950CA0 (Krayniy/KRYSHA.dds) added in repository
(239: 36.49s 14204us)(0xBAC) Texture 0x1950DD0 (Krayniy/OKNO01S.dds) added in repository
(240: 36.51s 15429us)(0xBAC) Texture 0x1950F00 (Krayniy/DVE2X10S.dds) added in repository
(241: 36.53s 14295us)(0xBAC) Texture 0x1951030 (Krayniy/OKNO02S.dds) added in repository
(242: 38.19s 15183us)(0xBAC) Texture 0x1951160 (Krayniy/KRYSCHA.dds) added in repository
(243: 39.04s 15192us)(0xBAC) Texture 0x1951290 (Krayniy/OKNO01m.dds) added in repository
(244: 39.06s 14458us)(0xBAC) Texture 0x19513C0 (Krayniy/DVE2X10m.dds) added in repository
(245: 39.07s 14091us)(0xBAC) Texture 0x19514F0 (Krayniy/REFL.dds) added in repository
(246: 39.09s 14420us)(0xBAC) Texture 0x1951620 (Krayniy/STE2X10m.dds) added in repository
(247: 39.44s 15194us)(0xBAC) Texture 0x1951750 (Krayniy/TRUBA.dds) added in repository
(248: 39.46s 13409us)(0xBAC)[WARNING] Texture Krayniy/FONAR.dds not found.
(249: 39.50s 1747us)(0xBAC) Texture 0x1951880 (Krayniy/DVE2X10L.dds) added in repository
(250: 39.50s 1781us)(0xBAC) Texture 0x19519B0 (Krayniy/OKNO02L.dds) added in repository
(251: 39.51s 13983us)(0xBAC) Texture 0x1951AE0 (Krayniy/okno02L.dds) added in repository
(252: 39.53s 14390us)(0xBAC) Texture 0x1951C10 (Krayniy/STE2X10l.dds) added in repository
(253: 39.56s 15652us)(0xBAC) Texture 0x1951D40 (Krayniy/Krysha.dds) added in repository
(254: 39.59s 15101us)(0xBAC) Texture 0x1951E70 (Krayniy/met_red.dds) added in repository
(255: 39.60s 14120us)(0xBAC) Texture 0x1951FA0 (Krayniy/met_bel.dds) added in repository
(256: 39.61s 14377us)(0xBAC) Texture 0x19520D0 (Krayniy/METALL.dds) added in repository
(257: 39.64s 15462us)(0xBAC) Texture 0x1952200 (Krayniy/KRABEL.dds) added in repository
(258: 39.74s 690us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(259: 39.74s 2251us)(0xBAC) Texture 0x1952330 (Krayniy/an2_01.dds) added in repository
(260: 39.76s 15305us)(0xBAC) Texture 0x1952460 (Krayniy/an2_02.dds) added in repository
(261: 39.77s 14542us)(0xBAC) Texture 0x1952590 (Krayniy/an2_03.dds) added in repository
(262: 39.79s 13102us)(0xBAC) Texture 0x19526C0 (Krayniy/an2_04.dds) added in repository
(263: 39.80s 14181us)(0xBAC) Texture 0x19527F0 (Krayniy/an2_05.dds) added in repository
(264: 39.81s 14184us)(0xBAC) Texture 0x1952920 (Krayniy/an2_06.dds) added in repository
(265: 39.84s 705us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(266: 39.85s 5606us)(0xBAC) Texture 0x1952A50 (Krayniy/tu154.dds) added in repository
(267: 40.04s 1716us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(268: 40.04s 2373us)(0xBAC) Texture 0x1952B80 (Krayniy/il76_01.dds) added in repository
(269: 40.05s 2762us)(0xBAC) Texture 0x1952CB0 (Krayniy/il76_02.dds) added in repository
(270: 40.06s 11924us)(0xBAC) Texture 0x1952DE0 (Krayniy/il76_03.dds) added in repository
(271: 40.07s 15595us)(0xBAC) Texture 0x1952F10 (Krayniy/il76_04.dds) added in repository
(272: 40.09s 14219us)(0xBAC) Texture 0x1953040 (Krayniy/il76_05.dds) added in repository
(273: 40.10s 12958us)(0xBAC) Texture 0x1953170 (Krayniy/il76_06.dds) added in repository
(274: 40.17s 1811us)(0xBAC) Texture 0x19532A0 (Krayniy/an72_01.dds) added in repository
(275: 40.17s 1738us)(0xBAC) Texture 0x19533D0 (Krayniy/an72_02.dds) added in repository
(276: 40.17s 3616us)(0xBAC) Texture 0x1953500 (Krayniy/an72_03.dds) added in repository
(277: 40.19s 14281us)(0xBAC) Texture 0x1953630 (Krayniy/an72_04.dds) added in repository
(278: 40.20s 14087us)(0xBAC) Texture 0x1953760 (Krayniy/an72_05.dds) added in repository
(279: 40.21s 13532us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(280: 40.23s 15115us)(0xBAC) Texture 0x1953890 (Krayniy/an72_06.dds) added in repository
(281: 40.24s 14486us)(0xBAC) Texture 0x19539C0 (Krayniy/an72_07.dds) added in repository
(282: 40.26s 14061us)(0xBAC) Texture 0x1953AF0 (Krayniy/an72_08.dds) added in repository
(283: 40.27s 14412us)(0xBAC) Texture 0x1953C20 (Krayniy/an72_09.dds) added in repository
(284: 40.29s 13866us)(0xBAC) Texture 0x1953D50 (Krayniy/an72_10.dds) added in repository
(285: 40.30s 14565us)(0xBAC) Texture 0x1953E80 (Krayniy/an72_11.dds) added in repository
(286: 40.31s 13903us)(0xBAC) Texture 0x1953FB0 (Krayniy/an72_12.dds) added in repository
(287: 40.33s 14385us)(0xBAC) Texture 0x19540E0 (Krayniy/an72_13.dds) added in repository
(288: 40.34s 14268us)(0xBAC) Texture 0x1954210 (Krayniy/an72_14.dds) added in repository
(289: 40.46s 14111us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(290: 40.70s 14438us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(291: 40.94s 14133us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(292: 41.11s 714us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(293: 41.11s 3669us)(0xBAC) Texture 0x1954340 (Krayniy/an26_01.dds) added in repository
(294: 41.11s 4085us)(0xBAC) Texture 0x1954470 (Krayniy/an26_02.dds) added in repository
(295: 41.15s 693us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(296: 41.20s 681us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(297: 41.20s 3664us)(0xBAC) Texture 0x19545A0 (Krayniy/an12_01.dds) added in repository
(298: 41.25s 732us)(0xBAC)[WARNING] Texture 00000000.dds not found.
(299: 41.36s 15231us)(0xBAC) Texture 0x19546D0 (Krayniy/RAMABEL.dds) added in repository
(300: 41.39s 35307us)(0xBAC) Texture 0x1954800 (Krayniy/STEKLO.dds) added in repository
(301: 41.39s 1393us)(0xBAC) Texture 0x1954930 (Krayniy/ZEL.dds) added in repository
(302: 41.40s 5839us)(0xBAC) Texture 0x1954A60 (Krayniy/KRAS.dds) added in repository
(303: 41.41s 13686us)(0xBAC)[WARNING] Texture Krayniy/FONAR.dds not found.
(304: 41.48s 1536us)(0xBAC) Texture 0x1954B90 (Krayniy/BETON.dds) added in repository
(305: 41.50s 15250us)(0xBAC) Texture 0x1954CC0 (Krayniy/RJAV.dds) added in repository
(306: 41.51s 14124us)(0xBAC) Texture 0x1954DF0 (Krayniy/ANTPL2.dds) added in repository
(307: 41.53s 14666us)(0xBAC) Texture 0x1954F20 (Krayniy/BALKON2.dds) added in repository
(308: 41.54s 13810us)(0xBAC) Texture 0x1955050 (Krayniy/RAMA.dds) added in repository
(309: 41.56s 14348us)(0xBAC) Texture 0x1955180 (Krayniy/BALK3D.dds) added in repository
(310: 41.57s 14030us)(0xBAC) Texture 0x19552B0 (Krayniy/NOJKA.dds) added in repository
(311: 41.59s 14714us)(0xBAC) Texture 0x19553E0 (Krayniy/PORUCH.dds) added in repository
(312: 41.60s 13895us)(0xBAC) Texture 0x1955510 (Krayniy/BAYKONUR.dds) added in repository
(313: 41.61s 14453us)(0xBAC) Texture 0x1955640 (Krayniy/SETKAG.dds) added in repository
(314: 41.63s 14083us)(0xBAC) Texture 0x1955770 (Krayniy/SETKAV.dds) added in repository
(315: 41.66s 15101us)(0xBAC) Texture 0x19558A0 (Krayniy/KRIOK2.dds) added in repository
(316: 41.69s 15004us)(0xBAC) Texture 0x19559D0 (Krayniy/KRIOK1.dds) added in repository
(317: 41.70s 14522us)(0xBAC) Texture 0x1955B00 (Krayniy/EMBLKIRP.dds) added in repository
(318: 41.71s 13902us)(0xBAC) Texture 0x1955C30 (Krayniy/TOW1_1.dds) added in repository
(319: 41.73s 14367us)(0xBAC) Texture 0x1955D60 (Krayniy/TOW1_15.dds) added in repository
(320: 41.74s 14057us)(0xBAC) Texture 0x1955E90 (Krayniy/TOW1_14.dds) added in repository
(321: 41.76s 14433us)(0xBAC) Texture 0x1955FC0 (Krayniy/TOW1_13.dds) added in repository
(322: 41.77s 14052us)(0xBAC) Texture 0x19560F0 (Krayniy/TOW1_12.dds) added in repository
(323: 41.79s 14421us)(0xBAC) Texture 0x1956220 (Krayniy/TOW1_11.dds) added in repository
(324: 41.80s 14151us)(0xBAC) Texture 0x1956350 (Krayniy/TOW1_10.dds) added in repository
(325: 41.81s 14327us)(0xBAC) Texture 0x1956480 (Krayniy/TOW1_9.dds) added in repository
(326: 41.83s 14109us)(0xBAC) Texture 0x19565B0 (Krayniy/TOW1_8.dds) added in repository
(327: 41.84s 14390us)(0xBAC) Texture 0x19566E0 (Krayniy/TOW1_7.dds) added in repository
(328: 41.86s 14090us)(0xBAC) Texture 0x1956810 (Krayniy/TOW1_6.dds) added in repository
(329: 41.87s 14390us)(0xBAC) Texture 0x1956940 (Krayniy/TOW1_5.dds) added in repository
(330: 41.89s 14090us)(0xBAC) Texture 0x1956A70 (Krayniy/TOW1_4.dds) added in repository
(331: 41.90s 14404us)(0xBAC) Texture 0x1956BA0 (Krayniy/TOW1_3.dds) added in repository
(332: 41.91s 14099us)(0xBAC) Texture 0x1956CD0 (Krayniy/TOW1_2.dds) added in repository
(333: 41.97s 11280us)(0xBAC) Texture 0x1956E00 (Krayniy/null.dds) added in repository
(334: 41.99s 20514us)(0xBAC) Texture 0x1956F30 (Krayniy/zel2.dds) added in repository
(335: 42.05s 37234us)(0xBAC) Texture 0x1957060 (Krayniy/KLUMBA.dds) added in repository
(336: 42.06s 5453us)(0xBAC) Texture 0x1957190 (Krayniy/POR.dds) added in repository
(337: 42.12s 19479us)(0xBAC) Texture 0x19572C0 (Krayniy/ZABOR5.dds) added in repository
(338: 42.16s 21680us)(0xBAC) Texture 0x19573F0 (Krayniy/zabor5.dds) added in repository
(339: 42.30s 14415us)(0xBAC) Texture 0x1957520 (Krayniy/zabor1.dds) added in repository
(340: 42.34s 14472us)(0xBAC) Texture 0x1957650 (Krayniy/ZABOR1.dds) added in repository
(341: 42.53s 25455us)(0xBAC) Texture 0x1957780 (Krayniy/03X15.dds) added in repository
(342: 42.53s 5598us)(0xBAC) Texture 0x19578B0 (Krayniy/03X3.dds) added in repository
(343: 42.54s 11134us)(0xBAC) Texture 0x19579E0 (Krayniy/golub.dds) added in repository
(344: 42.59s 22686us)(0xBAC) Texture 0x1957B10 (Krayniy/red_01.dds) added in repository
(345: 42.64s 23287us)(0xBAC) Texture 0x1957C40 (Krayniy/red_02.dds) added in repository
(346: 42.68s 23632us)(0xBAC) Texture 0x1957D70 (Krayniy/red_03.dds) added in repository
(347: 42.72s 23214us)(0xBAC) Texture 0x1957EA0 (Krayniy/red_04.dds) added in repository
(348: 42.76s 22812us)(0xBAC) Texture 0x1957FD0 (Krayniy/red_05.dds) added in repository
(349: 42.80s 19009us)(0xBAC) Texture 0x1958100 (Krayniy/yel_01.dds) added in repository
(350: 42.85s 19548us)(0xBAC) Texture 0x1958230 (Krayniy/yel_02.dds) added in repository
(351: 42.89s 19161us)(0xBAC) Texture 0x1958360 (Krayniy/yel_03.dds) added in repository
(352: 42.93s 19488us)(0xBAC) Texture 0x1958490 (Krayniy/yel_04.dds) added in repository
(353: 42.98s 19181us)(0xBAC) Texture 0x19585C0 (Krayniy/yel_05.dds) added in repository
(354: 43.02s 19537us)(0xBAC) Texture 0x19586F0 (Krayniy/yel_06.dds) added in repository
(355: 43.06s 19138us)(0xBAC) Texture 0x1958820 (Krayniy/yel_07.dds) added in repository
(356: 43.10s 19558us)(0xBAC) Texture 0x1958950 (Krayniy/yel_08.dds) added in repository
(357: 43.15s 22999us)(0xBAC) Texture 0x1958A80 (Krayniy/5_23-.dds) added in repository
(358: 43.19s 23240us)(0xBAC) Texture 0x1958BB0 (Krayniy/1_05-.dds) added in repository
(359: 43.24s 1883us)(0xBAC) Texture 0x1958CE0 (AMSO\rock1.dds) added in repository
(360: 43.46s 10736us)(0xBAC) Texture 0x1958E10 (AMSO\ROCK1.dds) added in repository
(361: 43.89s 8674us)(0xBAC) Texture 0x1958F40 (AMSO\Rock1.dds) added in repository
(362: 43.90s 14096us)(0xBAC) Texture 0x1959070 (AMSO\rille.dds) added in repository
(363: 44.08s 1504us)(0xBAC) Texture 0x19591A0 (AMSO\surveyor_copperfoil.dds) added in repository
(364: 44.09s 1750us)(0xBAC) Texture 0x19592D0 (AMSO\surveyor_metal.dds) added in repository
(365: 44.10s 13519us)(0xBAC) Texture 0x1959400 (AMSO\surveyor_atl_hull.dds) added in repository
(366: 44.12s 20398us)(0xBAC) Texture 0x1959530 (AMSO\surveyor_solarpnl.dds) added in repository
(367: 44.56s 11592us)(0xBAC) Texture 0x1959660 (UMmu\BaseMoonExt.dds) added in repository
(368: 44.57s 13427us)(0xBAC) Texture 0x1959790 (UMmu\BaseMoonRoof.dds) added in repository
(369: 44.59s 14200us)(0xBAC) Texture 0x19598C0 (UMmu\BaseMoonFloor.dds) added in repository
(370: 44.60s 14098us)(0xBAC) Texture 0x19599F0 (UMmu\BaseMoonSide.dds) added in repository
(371: 44.95s 27us)(0xBAC) [NEW FONT] ( Arial), Size=-29, Weight=400 Pitch&Family=31
(372: 44.95s 2649us)(0xBAC) TextMetrics: Ascent = 27
(373: 44.95s 2671us)(0xBAC) TextMetrics: Descent = 6
(374: 44.95s 2686us)(0xBAC) TextMetrics: Height = 33
(375: 44.95s 2700us)(0xBAC) TextMetrics: AvgWidth = 13
(376: 44.95s 2719us)(0xBAC) TextMetrics: MaxWidth = 77
(377: 44.96s 11785us)(0xBAC) Font Video Memory Usage = 1024 kb
(378: 44.96s 13199us)(0xBAC) Font and Charter set creation succesfull
(379: 44.96s 13268us)(0xBAC) [NEW FONT] ( Arial), Size=-14, Weight=400 Pitch&Family=31
(380: 44.96s 16020us)(0xBAC) TextMetrics: Ascent = 13
(381: 44.96s 16046us)(0xBAC) TextMetrics: Descent = 3
(382: 44.96s 16062us)(0xBAC) TextMetrics: Height = 16
(383: 44.96s 16076us)(0xBAC) TextMetrics: AvgWidth = 6
(384: 44.96s 16090us)(0xBAC) TextMetrics: MaxWidth = 37
(385: 44.97s 22218us)(0xBAC) Font Video Memory Usage = 256 kb
(386: 44.97s 22435us)(0xBAC) Font and Charter set creation succesfull
(387: 44.99s 20743us)(0xBAC) Texture 0x1961268 (Proton_LV\Contrail1.dds) added in repository
(388: 44.99s 1523us)(0xBAC) Texture 0x1961398 (Proton_LV\UDMH2.dds) added in repository
(389: 45.00s 1503us)(0xBAC) Texture 0x19614C8 (Proton_LV\Exhaust2.dds) added in repository
(390: 45.00s 4718us)(0xBAC) Texture 0x19615F8 (Proton_LV\exhaust_yellow.dds) added in repository
(391: 45.12s 2557us)(0xBAC) Texture 0x1961880 (Proton_LV\KVTK2.dds) added in repository
(392: 45.12s 1617us)(0xBAC) Texture 0x1963A68 (r7_SZ\Exhaust2.dds) added in repository
(393: 45.13s 5239us)(0xBAC) Texture 0x1963B98 (r7_SZ\frg_ex.dds) added in repository
(394: 45.16s 33382us)(0xBAC) Texture 0x1963CC8 (r7_SZ\Contrail.dds) added in repository
(395: 45.32s 2534us)(0xBAC) Texture 0x19680B0 (ISS_DC.dds) added in repository
(396: 45.33s 1504us)(0xBAC) Texture 0x1968188 (ISS_DCS.dds) added in repository
(397: 45.33s 2194us)(0xBAC) Texture 0x1968260 (D_RING.dds) added in repository
(398: 45.34s 14205us)(0xBAC) Texture 0x1968390 (ISSPANEL.dds) added in repository
(399: 45.36s 14514us)(0xBAC) Texture 0x19684C0 (ISSMOD.dds) added in repository
(400: 45.37s 13835us)(0xBAC) Texture 0x19685F0 (ISSCOVER.dds) added in repository
(401: 45.39s 19671us)(0xBAC) Texture 0x1968720 (ISSB.dds) added in repository
(402: 45.40s 8777us)(0xBAC) Texture 0x1968850 (ISSP2.dds) added in repository
(403: 45.41s 14422us)(0xBAC) Texture 0x1968980 (ISSDOT.dds) added in repository
(404: 45.43s 14124us)(0xBAC) Texture 0x1968AB0 (ISSB3.dds) added in repository
(405: 45.44s 14550us)(0xBAC) Texture 0x1968BE0 (ISSZMOD.dds) added in repository
(406: 45.46s 13929us)(0xBAC) Texture 0x1968D10 (ISSB2.dds) added in repository
(407: 45.47s 14404us)(0xBAC) Texture 0x1968E40 (ISSSOLAR.dds) added in repository
(408: 45.49s 14072us)(0xBAC) Texture 0x1968F70 (ISSB4.dds) added in repository
(409: 45.50s 14398us)(0xBAC) Texture 0x19690A0 (ISSKU.dds) added in repository
(410: 45.51s 14080us)(0xBAC) Texture 0x19691D0 (ISSKU1.dds) added in repository
(411: 45.53s 14435us)(0xBAC) Texture 0x1969300 (ISSDISH.dds) added in repository
(412: 45.54s 14055us)(0xBAC) Texture 0x1969430 (ISSKU2.dds) added in repository
(413: 45.56s 14467us)(0xBAC) Texture 0x1969560 (ISSBSO.dds) added in repository
(414: 45.57s 14077us)(0xBAC) Texture 0x1969690 (ISSBSO2.dds) added in repository
(415: 45.59s 14404us)(0xBAC) Texture 0x19697C0 (ISSMB.dds) added in repository
(416: 45.60s 14139us)(0xBAC) Texture 0x19698F0 (ISSUSAF.dds) added in repository
(417: 45.62s 14994us)(0xBAC) Texture 0x1969A20 (NASDA.dds) added in repository
(418: 45.63s 13402us)(0xBAC) Texture 0x1969B50 (ISSRAD.dds) added in repository
(419: 45.64s 14577us)(0xBAC) Texture 0x1969C80 (ISSESA.dds) added in repository
(420: 45.66s 14096us)(0xBAC) Texture 0x1969DB0 (ISSBS.dds) added in repository
(421: 45.67s 14359us)(0xBAC) Texture 0x1969EE0 (ISSCUP.dds) added in repository
(422: 45.69s 13974us)(0xBAC) Texture 0x196A010 (METALCON.dds) added in repository
(423: 45.70s 14367us)(0xBAC) Texture 0x196A140 (ISSINS.dds) added in repository
(424: 45.71s 14202us)(0xBAC) Texture 0x196A270 (QUESTCOV.dds) added in repository
(425: 45.73s 15561us)(0xBAC) Texture 0x196A3A0 (GRAPLE.dds) added in repository
(426: 45.74s 12833us)(0xBAC) Texture 0x196A4D0 (ISSCOV2.dds) added in repository
(427: 45.76s 14399us)(0xBAC) Texture 0x196A600 (ISSHAND.dds) added in repository
(428: 45.77s 14260us)(0xBAC) Texture 0x196A730 (ISS_UN.dds) added in repository
(429: 45.79s 14183us)(0xBAC) Texture 0x196A860 (ISSRED.dds) added in repository
(430: 45.80s 14118us)(0xBAC) Texture 0x196A990 (ISSUSA.dds) added in repository
(431: 45.89s 2494us)(0xBAC) Texture 0x196AEC8 (Proton_LV\PMANEW.dds) added in repository
(432: 45.98s 36748us)(0xBAC) Texture 0x196CB80 (Proton_LV\Contrail2.dds) added in repository
(433: 45.98s 1559us)(0xBAC) Texture 0x196CCB0 (Proton_LV\Light.dds) added in repository
(434: 46.11s 2660us)(0xBAC) Texture 0x196D578 (ISSR\exhaust_crcs.dds) added in repository
(435: 46.11s 6623us)(0xBAC) Texture 0x196D358 (ISSR\Contrailst.dds) added in repository
(436: 46.17s 23738us)(0xBAC) Texture 0x1974390 (r7_SZ\Contrail2.dds) added in repository
(437: 46.17s 1529us)(0xBAC) Texture 0x19744C0 (r7_SZ\Exhaust3.dds) added in repository
(438: 46.20s 1728us)(0xBAC) Texture 0x19794E0 (r7_SZ\sf02.dds) added in repository
(439: 46.21s 1754us)(0xBAC) Texture 0x1979D90 (r7_SZ\SF02.dds) added in repository
(440: 46.24s 1694us)(0xBAC) Texture 0x197A978 (r7_SZ\sf01.dds) added in repository
(441: 46.25s 1783us)(0xBAC) Texture 0x197B2C8 (r7_SZ\SF01.dds) added in repository
(442: 46.29s 15089us)(0xBAC) Texture 0x197BC30 (r7_SZ\Exhaust5.dds) added in repository
(443: 46.31s 21684us)(0xBAC) Texture 0x197BD60 (r7_SZ\Contrail3.dds) added in repository
(444: 46.40s 2638us)(0xBAC) Texture 0x197EE08 (r7_SZ\r7_souyz_3stg.dds) added in repository
(445: 46.49s 1663us)(0xBAC) Texture 0x1980BA0 (ISSR\progress_solar.dds) added in repository
(446: 46.50s 2489us)(0xBAC) Texture 0x1980CD0 (ISSR\TM.dds) added in repository
(447: 46.50s 4753us)(0xBAC) Texture 0x1980E00 (ISSR\cable_tma.dds) added in repository
(448: 46.56s 1669us)(0xBAC) Texture 0x1984918 (r7_SZ\r7_souyz_1stg.dds) added in repository
(449: 46.75s 1554us)(0xBAC) Texture 0x198ED48 (r7_SZ\r7_souyz_2stg1.dds) added in repository
(450: 46.75s 1565us)(0xBAC) Texture 0x198EE78 (r7_SZ\r7_souyz_2stg.dds) added in repository
(451: 46.79s 32810us)(0xBAC) Texture 0x1990368 (r7_SZ\Contrail1.dds) added in repository
(452: 46.89s 2651us)(0xBAC) Texture 0x1991E30 (r7_SZ\rust.dds) added in repository
(453: 46.90s 1704us)(0xBAC) Texture 0x1991F60 (r7_SZ\table.dds) added in repository
(454: 46.90s 3759us)(0xBAC) Texture 0x1992090 (r7_SZ\r7_concrete.dds) added in repository
(455: 46.91s 14386us)(0xBAC) Texture 0x19921C0 (r7_SZ\r7_concrete31.dds) added in repository
(456: 46.93s 14061us)(0xBAC) Texture 0x19922F0 (r7_SZ\r7_concrete21.dds) added in repository
(457: 47.03s 3452us)(0xBAC) Texture 0x1993B60 (r7_SZ\TrenchPad1.dds) added in repository
(458: 47.20s 2685us)(0xBAC) Texture 0x1996418 (r7_S\platform.dds) added in repository
(459: 47.63s 2641us)(0xBAC) Texture 0x199A340 (r7_SZ\r7_ferm.dds) added in repository
(460: 47.63s 1597us)(0xBAC) Texture 0x199A470 (r7_SZ\r7_ferm2.dds) added in repository
(461: 47.67s 1658us)(0xBAC) Texture 0x199CB58 (r7_SZ\Lights.dds) added in repository
(462: 47.70s 1738us)(0xBAC) Texture 0x199CC88 (UMmu\U_mmu.dds) added in repository
(463: 47.75s 2433us)(0xBAC) Texture 0x199F178 (UMmu\Ummu20.dds) added in repository
(464: 47.77s 2437us)(0xBAC) Texture 0x199F708 (UMmu\Ummu20Tech.dds) added in repository
(465: 47.90s 2574us)(0xBAC) Texture 0x19A4840 (ISSR\TMA.dds) added in repository
(466: 47.91s 1610us)(0xBAC) Texture Cockpit\Glasspit_red.dds loaded. (512 x 256)
(467: 47.91s 5191us)(0xBAC) LoadTextureSpecial(Cockpit\hud_red.dds) Handle=0x19A8F30
(468: 47.92s 11007us)(0xBAC) Texture Cockpit\hud_red.dds loaded. (512 x 256)
(469: 47.92s 113us)(0xBAC) D3D9ClientSurface: New Surface(0x19A9008) w=380, h=380
(470: 47.92s 110us)(0xBAC) D3D9ClientSurface: New Texture(0x19A90E0) w=380, h=380
(471: 47.92s 26us)(0xBAC) [NEW FONT] ( Courier New), Size=-17, Weight=400 Pitch&Family=31
(472: 47.92s 3133us)(0xBAC) TextMetrics: Ascent = 15
(473: 47.92s 3158us)(0xBAC) TextMetrics: Descent = 5
(474: 47.92s 3172us)(0xBAC) TextMetrics: Height = 20
(475: 47.92s 3187us)(0xBAC) TextMetrics: AvgWidth = 10
(476: 47.92s 3201us)(0xBAC) TextMetrics: MaxWidth = 11
(477: 47.93s 9217us)(0xBAC) Font Video Memory Usage = 256 kb
(478: 47.93s 9365us)(0xBAC) Font and Charter set creation succesfull
(479: 47.93s 9408us)(0xBAC) [NEW FONT] ( Arial), Size=-12, Weight=400 Pitch&Family=31
(480: 47.93s 12007us)(0xBAC) TextMetrics: Ascent = 12
(481: 47.93s 12027us)(0xBAC) TextMetrics: Descent = 3
(482: 47.93s 12042us)(0xBAC) TextMetrics: Height = 15
(483: 47.93s 12057us)(0xBAC) TextMetrics: AvgWidth = 5
(484: 47.93s 12071us)(0xBAC) TextMetrics: MaxWidth = 32
(485: 47.94s 17525us)(0xBAC) Font Video Memory Usage = 256 kb
(486: 47.94s 17657us)(0xBAC) Font and Charter set creation succesfull
(487: 47.94s 17702us)(0xBAC) [NEW FONT] ( Arial), Size=-17, Weight=400 Pitch&Family=31
(488: 47.94s 20260us)(0xBAC) TextMetrics: Ascent = 15
(489: 47.94s 20279us)(0xBAC) TextMetrics: Descent = 4
(490: 47.94s 20294us)(0xBAC) TextMetrics: Height = 19
(491: 47.94s 20308us)(0xBAC) TextMetrics: AvgWidth = 8
(492: 47.94s 20323us)(0xBAC) TextMetrics: MaxWidth = 45
(493: 47.95s 25646us)(0xBAC) Font Video Memory Usage = 256 kb
(494: 47.95s 25780us)(0xBAC) Font and Charter set creation succesfull
(495: 47.95s 1057us)(0xBAC) Surface 0x19A9008 (???) converted into a GDI surface (380,380)
(496: 47.96s 139us)(0xBAC) D3D9ClientSurface: New Surface(0x19B4110) w=380, h=380
(497: 47.96s 123us)(0xBAC) D3D9ClientSurface: New Texture(0x19B41E8) w=380, h=380
(498: 47.96s 1307us)(0xBAC) Surface 0x19B4110 (???) converted into a GDI surface (380,380)
(499: 47.97s 2006us)(0xBAC) [NEW FONT] ( Arial), Size=20, Weight=400 Pitch&Family=31
(500: 47.97s 5014us)(0xBAC) TextMetrics: Ascent = 16
(501: 47.97s 5038us)(0xBAC) TextMetrics: Descent = 4
(502: 47.97s 5053us)(0xBAC) TextMetrics: Height = 20
(503: 47.97s 5067us)(0xBAC) TextMetrics: AvgWidth = 8
(504: 47.97s 5081us)(0xBAC) TextMetrics: MaxWidth = 27
(505: 47.97s 10670us)(0xBAC) Font Video Memory Usage = 256 kb
(506: 47.97s 10858us)(0xBAC) Font and Charter set creation succesfull
(507: 47.97s 10907us)(0xBAC) [NEW FONT] ( Courier New), Size=20, Weight=400 Pitch&Family=31
(508: 47.97s 10999us)(0xBAC) TextMetrics: Ascent = 15
(509: 47.97s 11016us)(0xBAC) TextMetrics: Descent = 5
(510: 47.97s 11031us)(0xBAC) TextMetrics: Height = 20
(511: 47.97s 11045us)(0xBAC) TextMetrics: AvgWidth = 10
(512: 47.97s 11060us)(0xBAC) TextMetrics: MaxWidth = 11
(513: 47.98s 12759us)(0xBAC) Font Video Memory Usage = 256 kb
(514: 47.98s 12884us)(0xBAC) Font and Charter set creation succesfull
(515: 48.19s 2us)(0xBAC) ================ clbkPostCreation ===============
(516: 48.19s 401us)(0xBAC) Parsing a planet Config\Sun.cfg
(517: 48.19s 485us)(0xBAC) Default Path Sun\Base
(518: 48.19s 524us)(0xBAC) Scanning bases from Config\Sun\Base
(519: 48.19s 568us)(0xBAC) Parsing a planet Config\Mercury.cfg
(520: 48.19s 646us)(0xBAC) Default Path Mercury\Base
(521: 48.19s 701us)(0xBAC) Scanning bases from Config\Mercury\Base
(522: 48.19s 741us)(0xBAC) Parsing a planet Config\Venus.cfg
(523: 48.20s 818us)(0xBAC) Default Path Venus\Base
(524: 48.20s 876us)(0xBAC) Scanning bases from Config\Venus\Base
(525: 48.20s 915us)(0xBAC) Parsing a planet Config\Earth.cfg
(526: 48.20s 991us)(0xBAC) Default Path Earth\Base
(527: 48.20s 1062us)(0xBAC) Scanning bases from Config\Earth\Base
(528: 48.20s 1125us)(0xBAC) Parsing a base Config\Earth\Base\Alcantara.cfg
(529: 48.20s 1250us)(0xBAC) Parsing a base Config\Earth\Base\Al_Anbar.cfg
(530: 48.20s 1426us)(0xBAC) Parsing a base Config\Earth\Base\Baikonur.cfg
(531: 48.20s 1569us)(0xBAC) Parsing a base Config\Earth\Base\Barent_Sea.cfg
(532: 48.20s 1688us)(0xBAC) Parsing a base Config\Earth\Base\Canaveral.cfg
(533: 48.20s 1812us)(0xBAC) Parsing a base Config\Earth\Base\China_Lake.cfg
(534: 48.20s 1929us)(0xBAC) Parsing a base Config\Earth\Base\Doberai.cfg
(535: 48.20s 2065us)(0xBAC) Parsing a base Config\Earth\Base\Edwards.cfg
(536: 48.20s 2309us)(0xBAC) Parsing a base Config\Earth\Base\Gran_canaria.cfg
(537: 48.20s 2425us)(0xBAC) Parsing a base Config\Earth\Base\Habana.cfg
(538: 48.20s 2572us)(0xBAC) Parsing a base Config\Earth\Base\Hammaguira.cfg
(539: 48.20s 2693us)(0xBAC) Parsing a base Config\Earth\Base\Inyokern.cfg
(540: 48.20s 2828us)(0xBAC) Parsing a base Config\Earth\Base\Jingyu.cfg
(541: 48.20s 2962us)(0xBAC) Parsing a base Config\Earth\Base\Jiuquan.cfg
(542: 48.20s 3098us)(0xBAC) Parsing a base Config\Earth\Base\Kagoshima.cfg
(543: 48.20s 3212us)(0xBAC) Parsing a base Config\Earth\Base\Kapustin_Yar.cfg
(544: 48.20s 3326us)(0xBAC) Parsing a base Config\Earth\Base\Kourou.cfg
(545: 48.20s 3455us)(0xBAC) Parsing a base Config\Earth\Base\Krayniy.cfg
(546: 48.20s 3602us)(0xBAC) Parsing a base Config\Earth\Base\Kura.cfg
(547: 48.20s 3735us)(0xBAC) Parsing a base Config\Earth\Base\Matagorda.cfg
(548: 48.20s 3848us)(0xBAC) Parsing a base Config\Earth\Base\Musudan.cfg
(549: 48.20s 3982us)(0xBAC) Parsing a base Config\Earth\Base\Overberg.cfg
(550: 48.20s 4116us)(0xBAC) Parsing a base Config\Earth\Base\Palmachim.cfg
(551: 48.20s 4229us)(0xBAC) Parsing a base Config\Earth\Base\Peenemunde.cfg
(552: 48.20s 4351us)(0xBAC) Parsing a base Config\Earth\Base\Plesetsk.cfg
(553: 48.20s 4627us)(0xBAC) Parsing a base Config\Earth\Base\Salto_di_Quirra.cfg
(554: 48.20s 4752us)(0xBAC) Parsing a base Config\Earth\Base\San_Marco.cfg
(555: 48.20s 4874us)(0xBAC) Parsing a base Config\Earth\Base\Soyuz_landing_site.cfg
(556: 48.20s 4988us)(0xBAC) Parsing a base Config\Earth\Base\Sriharikota.cfg
(557: 48.20s 5112us)(0xBAC) Parsing a base Config\Earth\Base\Svobodniy.cfg
(558: 48.20s 5230us)(0xBAC) Parsing a base Config\Earth\Base\Taiyuan.cfg
(559: 48.20s 5367us)(0xBAC) Parsing a base Config\Earth\Base\Tanegashima.cfg
(560: 48.20s 5477us)(0xBAC) Parsing a base Config\Earth\Base\Toulouse.cfg
(561: 48.20s 5621us)(0xBAC) Parsing a base Config\Earth\Base\Vandenberg.cfg
(562: 48.20s 5736us)(0xBAC) Parsing a base Config\Earth\Base\Wallops_Island.cfg
(563: 48.20s 5852us)(0xBAC) Parsing a base Config\Earth\Base\White_Sands.cfg
(564: 48.20s 5963us)(0xBAC) Parsing a base Config\Earth\Base\Woomera.cfg
(565: 48.20s 6095us)(0xBAC) Parsing a base Config\Earth\Base\Wuzhai.cfg
(566: 48.20s 6342us)(0xBAC) Parsing a base Config\Earth\Base\Xichang.cfg
(567: 48.20s 8968us)(0xBAC) Parsing a planet Config\Moon.cfg
(568: 48.20s 9049us)(0xBAC) Default Path Moon\Base
(569: 48.20s 9101us)(0xBAC) Scanning bases from Config\Moon\Base
(570: 48.20s 9153us)(0xBAC) Parsing a base Config\Moon\Base\Brighton.cfg
(571: 48.20s 9302us)(0xBAC) Parsing a base Config\Moon\Base\Copernicus.cfg
(572: 48.20s 9417us)(0xBAC) Parsing a base Config\Moon\Base\Descartes.cfg
(573: 48.20s 9534us)(0xBAC) Parsing a base Config\Moon\Base\Fra_Mauro.cfg
(574: 48.20s 9793us)(0xBAC) Parsing a base Config\Moon\Base\Hadley.cfg
(575: 48.20s 9940us)(0xBAC) Parsing a base Config\Moon\Base\Marius_Hills.cfg
(576: 48.20s 10063us)(0xBAC) Parsing a base Config\Moon\Base\Procellarum.cfg
(577: 48.20s 10326us)(0xBAC) Parsing a base Config\Moon\Base\Taurus_Littrow.cfg
(578: 48.20s 10446us)(0xBAC) Parsing a base Config\Moon\Base\Tranquillity.cfg
(579: 48.20s 10614us)(0xBAC) Parsing a base Config\Moon\Base\UMMUBaseMoon.cfg
(580: 48.20s 10753us)(0xBAC) Parsing a planet Config\Mars.cfg
(581: 48.21s 10831us)(0xBAC) Default Path Mars\Base
(582: 48.21s 10896us)(0xBAC) Scanning bases from Config\Mars\Base
(583: 48.21s 10940us)(0xBAC) Parsing a base Config\Mars\Base\Olympus.cfg
(584: 48.21s 11091us)(0xBAC) Parsing a planet Config\Phobos.cfg
(585: 48.21s 11168us)(0xBAC) Default Path Phobos\Base
(586: 48.21s 11217us)(0xBAC) Scanning bases from Config\Phobos\Base
(587: 48.21s 11261us)(0xBAC) Parsing a planet Config\Deimos.cfg
(588: 48.21s 11338us)(0xBAC) Default Path Deimos\Base
(589: 48.21s 11390us)(0xBAC) Scanning bases from Config\Deimos\Base
(590: 48.21s 11430us)(0xBAC) Parsing a planet Config\Ceres.cfg
(591: 48.21s 11506us)(0xBAC) Default Path Ceres\Base
(592: 48.21s 11558us)(0xBAC) Scanning bases from Config\Ceres\Base
(593: 48.21s 11598us)(0xBAC) Parsing a planet Config\Jupiter.cfg
(594: 48.21s 11674us)(0xBAC) Default Path Jupiter\Base
(595: 48.21s 11739us)(0xBAC) Scanning bases from Config\Jupiter\Base
(596: 48.21s 11777us)(0xBAC) Parsing a planet Config\Io.cfg
(597: 48.21s 11854us)(0xBAC) Default Path Io\Base
(598: 48.21s 11909us)(0xBAC) Scanning bases from Config\Io\Base
(599: 48.21s 11947us)(0xBAC) Parsing a planet Config\Europa.cfg
(600: 48.21s 12022us)(0xBAC) Default Path Europa\Base
(601: 48.21s 12072us)(0xBAC) Scanning bases from Config\Europa\Base
(602: 48.21s 12114us)(0xBAC) Parsing a base Config\Europa\Base\UCGOBaseEuropa.cfg
(603: 48.21s 12358us)(0xBAC) Parsing a planet Config\Ganymede.cfg
(604: 48.21s 12436us)(0xBAC) Default Path Ganymede\Base
(605: 48.21s 12491us)(0xBAC) Scanning bases from Config\Ganymede\Base
(606: 48.21s 12529us)(0xBAC) Parsing a planet Config\Callisto.cfg
(607: 48.21s 12606us)(0xBAC) Default Path Callisto\Base
(608: 48.21s 12656us)(0xBAC) Scanning bases from Config\Callisto\Base
(609: 48.21s 12693us)(0xBAC) Parsing a planet Config\Saturn.cfg
(610: 48.21s 12770us)(0xBAC) Default Path Saturn\Base
(611: 48.21s 12830us)(0xBAC) Scanning bases from Config\Saturn\Base
(612: 48.21s 12867us)(0xBAC) Parsing a planet Config\Mimas.cfg
(613: 48.21s 12942us)(0xBAC) Default Path Mimas\Base
(614: 48.21s 12995us)(0xBAC) Scanning bases from Config\Mimas\Base
(615: 48.21s 13035us)(0xBAC) Parsing a planet Config\Enceladus.cfg
(616: 48.21s 13093us)(0xBAC) Default Path Enceladus\Base
(617: 48.21s 13148us)(0xBAC) Scanning bases from Config\Enceladus\Base
(618: 48.21s 13196us)(0xBAC) Parsing a planet Config\Tethys.cfg
(619: 48.21s 13272us)(0xBAC) Default Path Tethys\Base
(620: 48.21s 13325us)(0xBAC) Scanning bases from Config\Tethys\Base
(621: 48.21s 13363us)(0xBAC) Parsing a planet Config\Dione.cfg
(622: 48.21s 13439us)(0xBAC) Default Path Dione\Base
(623: 48.21s 13491us)(0xBAC) Scanning bases from Config\Dione\Base
(624: 48.21s 13529us)(0xBAC) Parsing a planet Config\Rhea.cfg
(625: 48.21s 13603us)(0xBAC) Default Path Rhea\Base
(626: 48.21s 13656us)(0xBAC) Scanning bases from Config\Rhea\Base
(627: 48.21s 13695us)(0xBAC) Parsing a planet Config\Titan.cfg
(628: 48.21s 13770us)(0xBAC) Default Path Titan\Base
(629: 48.21s 13835us)(0xBAC) Scanning bases from Config\Titan\Base
(630: 48.21s 13872us)(0xBAC) Parsing a planet Config\Hyperion.cfg
(631: 48.21s 13946us)(0xBAC) Default Path Hyperion\Base
(632: 48.21s 13995us)(0xBAC) Scanning bases from Config\Hyperion\Base
(633: 48.21s 14033us)(0xBAC) Parsing a planet Config\Iapetus.cfg
(634: 48.21s 14114us)(0xBAC) Default Path Iapetus\Base
(635: 48.21s 14265us)(0xBAC) Scanning bases from Config\Iapetus\Base
(636: 48.21s 14304us)(0xBAC) Parsing a planet Config\Uranus.cfg
(637: 48.21s 14381us)(0xBAC) Default Path Uranus\Base
(638: 48.21s 14436us)(0xBAC) Scanning bases from Config\Uranus\Base
(639: 48.21s 14473us)(0xBAC) Parsing a planet Config\Miranda.cfg
(640: 48.21s 14552us)(0xBAC) Default Path Miranda\Base
(641: 48.21s 14605us)(0xBAC) Scanning bases from Config\Miranda\Base
(642: 48.21s 14644us)(0xBAC) Parsing a planet Config\Ariel.cfg
(643: 48.21s 14719us)(0xBAC) Default Path Ariel\Base
(644: 48.21s 14771us)(0xBAC) Scanning bases from Config\Ariel\Base
(645: 48.21s 14809us)(0xBAC) Parsing a planet Config\Umbriel.cfg
(646: 48.21s 14885us)(0xBAC) Default Path Umbriel\Base
(647: 48.21s 14937us)(0xBAC) Scanning bases from Config\Umbriel\Base
(648: 48.21s 14976us)(0xBAC) Parsing a planet Config\Titania.cfg
(649: 48.21s 15052us)(0xBAC) Default Path Titania\Base
(650: 48.21s 15104us)(0xBAC) Scanning bases from Config\Titania\Base
(651: 48.21s 15143us)(0xBAC) Parsing a planet Config\Oberon.cfg
(652: 48.21s 15219us)(0xBAC) Default Path Oberon\Base
(653: 48.21s 15270us)(0xBAC) Scanning bases from Config\Oberon\Base
(654: 48.21s 15308us)(0xBAC) Parsing a planet Config\Neptune.cfg
(655: 48.21s 15384us)(0xBAC) Default Path Neptune\Base
(656: 48.21s 15436us)(0xBAC) Scanning bases from Config\Neptune\Base
(657: 48.21s 15474us)(0xBAC) Parsing a planet Config\Triton.cfg
(658: 48.21s 15549us)(0xBAC) Default Path Triton\Base
(659: 48.21s 15609us)(0xBAC) Scanning bases from Config\Triton\Base
(660: 48.21s 15648us)(0xBAC) Parsing a planet Config\Proteus.cfg
(661: 48.21s 15724us)(0xBAC) Default Path Proteus\Base
(662: 48.21s 15774us)(0xBAC) Scanning bases from Config\Proteus\Base
(663: 48.21s 15813us)(0xBAC) Parsing a planet Config\Nereid.cfg
(664: 48.21s 15888us)(0xBAC) Default Path Nereid\Base
(665: 48.21s 15936us)(0xBAC) Scanning bases from Config\Nereid\Base
(666: 48.21s 15975us)(0xBAC) Parsing a planet Config\Pluto.cfg
(667: 48.21s 16053us)(0xBAC) Default Path Pluto\Base
(668: 48.21s 16105us)(0xBAC) Scanning bases from Config\Pluto\Base
(669: 48.21s 16144us)(0xBAC) Parsing a planet Config\Charon.cfg
(670: 48.21s 16327us)(0xBAC) Default Path Charon\Base
(671: 48.21s 16378us)(0xBAC) Scanning bases from Config\Charon\Base
(672: 48.21s 16417us)(0xBAC) Parsing a planet Config\Nix.cfg
(673: 48.21s 16493us)(0xBAC) Default Path Nix\Base
(674: 48.21s 16543us)(0xBAC) Scanning bases from Config\Nix\Base
(675: 48.21s 16584us)(0xBAC) Parsing a planet Config\Hydra.cfg
(676: 48.21s 16660us)(0xBAC) Default Path Hydra\Base
(677: 48.21s 16710us)(0xBAC) Scanning bases from Config\Hydra\Base
(678: 48.21s 16748us)(0xBAC) Parsing a planet Config\Sedna.cfg
(679: 48.21s 16823us)(0xBAC) Default Path Sedna\Base
(680: 48.21s 16872us)(0xBAC) Scanning bases from Config\Sedna\Base
(681: 48.21s 16910us)(0xBAC) Parsing a planet Config\Eris.cfg
(682: 48.21s 16985us)(0xBAC) Default Path Eris\Base
(683: 48.21s 17033us)(0xBAC) Scanning bases from Config\Eris\Base
(684: 48.21s 17072us)(0xBAC) Parsing a planet Config\Dysnomia.cfg
(685: 48.21s 17148us)(0xBAC) Default Path Dysnomia\Base
(686: 48.21s 17197us)(0xBAC) Scanning bases from Config\Dysnomia\Base
(687: 48.21s 17236us)(0xBAC) Parsing a planet Config\1994 CC.cfg
(688: 48.21s 17312us)(0xBAC) Default Path 1994 CC\Base
(689: 48.21s 17364us)(0xBAC) Scanning bases from Config\1994 CC\Base
(690: 48.21s 17402us)(0xBAC) Parsing a planet Config\S2009 136617 1.cfg
(691: 48.21s 17464us)(0xBAC) Default Path S2009 136617 1\Base
(692: 48.21s 17514us)(0xBAC) Scanning bases from Config\S2009 136617 1\Base
(693: 48.21s 17555us)(0xBAC) Parsing a planet Config\S2009 136617 2.cfg
(694: 48.21s 17615us)(0xBAC) Default Path S2009 136617 2\Base
(695: 48.21s 17666us)(0xBAC) Scanning bases from Config\S2009 136617 2\Base
(696: 48.21s 17705us)(0xBAC) Parsing a planet Config\Quaoar.cfg
(697: 48.21s 17781us)(0xBAC) Default Path Quaoar\Base
(698: 48.21s 17830us)(0xBAC) Scanning bases from Config\Quaoar\Base
(699: 48.21s 17887us)(0xBAC) FileParser: 95 entries stored
(700: 48.21s 17903us)(0xBAC) hObj(0x3FDAA0)='Sun' File='Config\Sun.cfg'
(701: 48.21s 17919us)(0xBAC) hObj(0x20DB688)='Mercury' File='Config\Mercury.cfg'
(702: 48.21s 17934us)(0xBAC) hObj(0x20B0850)='Venus' File='Config\Venus.cfg'
(703: 48.21s 17948us)(0xBAC) hObj(0x20C4010)='Earth' File='Config\Earth.cfg'
(704: 48.21s 17963us)(0xBAC) hObj(0x21710A8)='Alcantara' File='Config\Earth\Base\Alcantara.cfg'
(705: 48.21s 17978us)(0xBAC) hObj(0x2117008)='Al Anbar' File='Config\Earth\Base\Al_Anbar.cfg'
(706: 48.21s 17993us)(0xBAC) hObj(0x2118FC8)='Baikonur' File='Config\Earth\Base\Baikonur.cfg'
(707: 48.21s 18011us)(0xBAC) hObj(0x211D1F8)='Barent Sea' File='Config\Earth\Base\Barent_Sea.cfg'
(708: 48.21s 18026us)(0xBAC) hObj(0x2171410)='Cape Canaveral' File='Config\Earth\Base\Canaveral.cfg'
(709: 48.21s 18044us)(0xBAC) hObj(0x213F1D0)='China Lake' File='Config\Earth\Base\China_Lake.cfg'
(710: 48.21s 18060us)(0xBAC) hObj(0x21A0220)='Doberai' File='Config\Earth\Base\Doberai.cfg'
(711: 48.21s 18075us)(0xBAC) hObj(0x21A0588)='Edwards' File='Config\Earth\Base\Edwards.cfg'
(712: 48.21s 18089us)(0xBAC) hObj(0x21A08F0)='Gran Canaria' File='Config\Earth\Base\Gran_canaria.cfg'
(713: 48.21s 18105us)(0xBAC) hObj(0x21A0C58)='Habana' File='Config\Earth\Base\Habana.cfg'
(714: 48.21s 18119us)(0xBAC) hObj(0x2163A48)='Hammaguira' File='Config\Earth\Base\Hammaguira.cfg'
(715: 48.21s 18135us)(0xBAC) hObj(0x2119FD8)='Inyokern' File='Config\Earth\Base\Inyokern.cfg'
(716: 48.21s 18150us)(0xBAC) hObj(0x211A340)='Jingyu' File='Config\Earth\Base\Jingyu.cfg'
(717: 48.21s 18270us)(0xBAC) hObj(0x211A6A8)='Jiuquan' File='Config\Earth\Base\Jiuquan.cfg'
(718: 48.21s 18285us)(0xBAC) hObj(0x211AA10)='Kagoshima' File='Config\Earth\Base\Kagoshima.cfg'
(719: 48.21s 18300us)(0xBAC) hObj(0x21A1008)='Kapustin Yar' File='Config\Earth\Base\Kapustin_Yar.cfg'
(720: 48.21s 18315us)(0xBAC) hObj(0x21A1370)='Kourou' File='Config\Earth\Base\Kourou.cfg'
(721: 48.21s 18330us)(0xBAC) hObj(0x21A16D8)='Krayniy' File='Config\Earth\Base\Krayniy.cfg'
(722: 48.21s 18345us)(0xBAC) hObj(0x40545E0)='Kura' File='Config\Earth\Base\Kura.cfg'
(723: 48.21s 18360us)(0xBAC) hObj(0x40743F0)='Matagorda' File='Config\Earth\Base\Matagorda.cfg'
(724: 48.21s 18375us)(0xBAC) hObj(0x4084038)='Musudan' File='Config\Earth\Base\Musudan.cfg'
(725: 48.21s 18390us)(0xBAC) hObj(0x40843A0)='Overberg' File='Config\Earth\Base\Overberg.cfg'
(726: 48.21s 18405us)(0xBAC) hObj(0x40F3100)='Palmachim' File='Config\Earth\Base\Palmachim.cfg'
(727: 48.21s 18420us)(0xBAC) hObj(0x40F3538)='Peenemünde' File='Config\Earth\Base\Peenemunde.cfg'
(728: 48.21s 18434us)(0xBAC) hObj(0x21A1A40)='Plesetsk' File='Config\Earth\Base\Plesetsk.cfg'
(729: 48.21s 18455us)(0xBAC) hObj(0x21A1DA8)='Salto di Quirra' File='Config\Earth\Base\Salto_di_Quirra.cfg'
(730: 48.21s 18470us)(0xBAC) hObj(0x21A2110)='San Marco' File='Config\Earth\Base\San_Marco.cfg'
(731: 48.21s 18485us)(0xBAC) hObj(0x21A2580)='Soyuz Landing Site' File='Config\Earth\Base\Soyuz_landing_site.cfg'
(732: 48.21s 18500us)(0xBAC) hObj(0x3755E80)='Sriharikota' File='Config\Earth\Base\Sriharikota.cfg'
(733: 48.21s 18514us)(0xBAC) hObj(0x413B008)='Svobodniy' File='Config\Earth\Base\Svobodniy.cfg'
(734: 48.21s 18529us)(0xBAC) hObj(0x4125008)='Taiyuan' File='Config\Earth\Base\Taiyuan.cfg'
(735: 48.21s 18543us)(0xBAC) hObj(0x4125370)='Tanegashima' File='Config\Earth\Base\Tanegashima.cfg'
(736: 48.21s 18561us)(0xBAC) hObj(0x410D008)='Toulouse' File='Config\Earth\Base\Toulouse.cfg'
(737: 48.21s 18576us)(0xBAC) hObj(0x37569A8)='Vandenberg' File='Config\Earth\Base\Vandenberg.cfg'
(738: 48.21s 18590us)(0xBAC) hObj(0x4133008)='Wallops Island' File='Config\Earth\Base\Wallops_Island.cfg'
(739: 48.21s 18605us)(0xBAC) hObj(0x4133370)='White Sands' File='Config\Earth\Base\White_Sands.cfg'
(740: 48.21s 18619us)(0xBAC) hObj(0x41337E0)='Woomera' File='Config\Earth\Base\Woomera.cfg'
(741: 48.21s 18634us)(0xBAC) hObj(0x40E2008)='Wuzhai' File='Config\Earth\Base\Wuzhai.cfg'
(742: 48.21s 18648us)(0xBAC) hObj(0x40E2370)='Xichang' File='Config\Earth\Base\Xichang.cfg'
(743: 48.21s 18663us)(0xBAC) hObj(0x40E5B40)='Moon' File='Config\Moon.cfg'
(744: 48.21s 18677us)(0xBAC) hObj(0x40EC008)='Brighton Beach' File='Config\Moon\Base\Brighton.cfg'
(745: 48.21s 18692us)(0xBAC) hObj(0x40EC370)='Copernicus' File='Config\Moon\Base\Copernicus.cfg'
(746: 48.21s 18706us)(0xBAC) hObj(0x40EEB48)='Descartes' File='Config\Moon\Base\Descartes.cfg'
(747: 48.21s 18721us)(0xBAC) hObj(0x4132B70)='Fra Mauro' File='Config\Moon\Base\Fra_Mauro.cfg'
(748: 48.21s 18735us)(0xBAC) hObj(0x412B960)='Hadley' File='Config\Moon\Base\Hadley.cfg'
(749: 48.21s 18749us)(0xBAC) hObj(0x414F7B8)='Marius Hills' File='Config\Moon\Base\Marius_Hills.cfg'
(750: 48.21s 18764us)(0xBAC) hObj(0x4106230)='Procellarum' File='Config\Moon\Base\Procellarum.cfg'
(751: 48.21s 18779us)(0xBAC) hObj(0x425FC40)='Taurus Littrow' File='Config\Moon\Base\Taurus_Littrow.cfg'
(752: 48.21s 18793us)(0xBAC) hObj(0x42784C0)='Tranquillity' File='Config\Moon\Base\Tranquillity.cfg'
(753: 48.21s 18808us)(0xBAC) hObj(0x427AA18)='UMMU 2.0 Demo' File='Config\Moon\Base\UMMUBaseMoon.cfg'
(754: 48.21s 18823us)(0xBAC) hObj(0x20DBD70)='Mars' File='Config\Mars.cfg'
(755: 48.21s 18837us)(0xBAC) hObj(0x20DC458)='Olympus' File='Config\Mars\Base\Olympus.cfg'
(756: 48.21s 18852us)(0xBAC) hObj(0x4349848)='Phobos' File='Config\Phobos.cfg'
(757: 48.21s 18866us)(0xBAC) hObj(0x2117FC0)='Deimos' File='Config\Deimos.cfg'
(758: 48.21s 18880us)(0xBAC) hObj(0x21186A8)='Ceres' File='Config\Ceres.cfg'
(759: 48.21s 18894us)(0xBAC) hObj(0x4347830)='Jupiter' File='Config\Jupiter.cfg'
(760: 48.21s 18909us)(0xBAC) hObj(0x4378508)='Io' File='Config\Io.cfg'
(761: 48.21s 18923us)(0xBAC) hObj(0x4339810)='Europa' File='Config\Europa.cfg'
(762: 48.21s 18937us)(0xBAC) hObj(0x433C220)='UCGO Base Europa' File='Config\Europa\Base\UCGOBaseEuropa.cfg'
(763: 48.21s 18952us)(0xBAC) hObj(0x4340878)='Ganymede' File='Config\Ganymede.cfg'
(764: 48.21s 18968us)(0xBAC) hObj(0x436B820)='Callisto' File='Config\Callisto.cfg'
(765: 48.21s 18985us)(0xBAC) hObj(0x43798F0)='Saturn' File='Config\Saturn.cfg'
(766: 48.21s 18999us)(0xBAC) hObj(0x437BB98)='Mimas' File='Config\Mimas.cfg'
(767: 48.21s 19014us)(0xBAC) hObj(0x4323008)='Enceladus' File='Config\Enceladus.cfg'
(768: 48.21s 19028us)(0xBAC) hObj(0x43236F0)='Tethys' File='Config\Tethys.cfg'
(769: 48.21s 19043us)(0xBAC) hObj(0x436C7B0)='Dione' File='Config\Dione.cfg'
(770: 48.21s 19057us)(0xBAC) hObj(0x436CEF0)='Rhea' File='Config\Rhea.cfg'
(771: 48.21s 19071us)(0xBAC) hObj(0x436D7E8)='Titan' File='Config\Titan.cfg'
(772: 48.21s 19086us)(0xBAC) hObj(0x43B10C8)='Hyperion' File='Config\Hyperion.cfg'
(773: 48.21s 19100us)(0xBAC) hObj(0x43B17B0)='Iapetus' File='Config\Iapetus.cfg'
(774: 48.21s 19114us)(0xBAC) hObj(0x437CB18)='Uranus' File='Config\Uranus.cfg'
(775: 48.21s 19129us)(0xBAC) hObj(0x439D008)='Miranda' File='Config\Miranda.cfg'
(776: 48.21s 19143us)(0xBAC) hObj(0x437D200)='Ariel' File='Config\Ariel.cfg'
(777: 48.21s 19157us)(0xBAC) hObj(0x437D8E8)='Umbriel' File='Config\Umbriel.cfg'
(778: 48.21s 19172us)(0xBAC) hObj(0x438D6C0)='Titania' File='Config\Titania.cfg'
(779: 48.21s 19186us)(0xBAC) hObj(0x438DDA8)='Oberon' File='Config\Oberon.cfg'
(780: 48.21s 19200us)(0xBAC) hObj(0x438E490)='Neptune' File='Config\Neptune.cfg'
(781: 48.21s 19214us)(0xBAC) hObj(0x438A008)='Triton' File='Config\Triton.cfg'
(782: 48.21s 19229us)(0xBAC) hObj(0x438EB78)='Proteus' File='Config\Proteus.cfg'
(783: 48.21s 19243us)(0xBAC) hObj(0x438F260)='Nereid' File='Config\Nereid.cfg'
(784: 48.21s 19257us)(0xBAC) hObj(0x437E290)='Pluto' File='Config\Pluto.cfg'
(785: 48.21s 19272us)(0xBAC) hObj(0x437E978)='Charon' File='Config\Charon.cfg'
(786: 48.21s 19286us)(0xBAC) hObj(0x437F060)='Nix' File='Config\Nix.cfg'
(787: 48.21s 19300us)(0xBAC) hObj(0x437F748)='Hydra' File='Config\Hydra.cfg'
(788: 48.21s 19315us)(0xBAC) hObj(0x437FE30)='Sedna' File='Config\Sedna.cfg'
(789: 48.21s 19330us)(0xBAC) hObj(0x4380908)='Eris' File='Config\Eris.cfg'
(790: 48.21s 19344us)(0xBAC) hObj(0x43811A8)='Dysnomia' File='Config\Dysnomia.cfg'
(791: 48.21s 19358us)(0xBAC) hObj(0x4381AC8)='1994 CC' File='Config\1994 CC.cfg'
(792: 48.21s 19373us)(0xBAC) hObj(0x43821B0)='S2009 136617 1' File='Config\S2009 136617 1.cfg'
(793: 48.21s 19388us)(0xBAC) hObj(0x4382C88)='S2009 136617 2' File='Config\S2009 136617 2.cfg'
(794: 48.21s 19402us)(0xBAC) hObj(0x4383528)='Quaoar' File='Config\Quaoar.cfg'
(795: 48.21s 2us)(0xBAC) RegisteringVisual (Sun) hVessel=0x0, hObj=0x3FDAA0, Vis=0x1976150, Rec=0x19D3830, Type=3
(796: 48.21s 19us)(0xBAC) RegisteringVisual (Mercury) hVessel=0x0, hObj=0x20DB688, Vis=0x197D3D0, Rec=0x19D3850, Type=4
(797: 48.21s 11us)(0xBAC) Venus has cloud layer
(798: 48.25s 36024us)(0xBAC) Texture 0x19E0E78 (cloud1.dds) added in repository
(799: 48.25s 36069us)(0xBAC) RegisteringVisual (Venus) hVessel=0x0, hObj=0x20B0850, Vis=0x19D3888, Rec=0x19D8EC0, Type=4
(800: 48.26s 6381us)(0xBAC) Texture 0x19E4DF8 (waves.dds) added in repository
(801: 48.26s 6421us)(0xBAC) Earth has cloud layer
(802: 48.26s 6453us)(0xBAC) FogParams: alt_ref=4000, dens_0=5e-005, dens_ref=3e-005
(803: 48.26s 6476us)(0xBAC) RegisteringVisual (Earth) hVessel=0x0, hObj=0x20C4010, Vis=0x19CFC10, Rec=0x19D3D20, Type=4
(804: 48.26s 13us)(0xBAC) RegisteringVisual (Moon) hVessel=0x0, hObj=0x40E5B40, Vis=0x19D0260, Rec=0x19E8DF8, Type=4
(805: 48.26s 12us)(0xBAC) RegisteringVisual (Mars) hVessel=0x0, hObj=0x20DBD70, Vis=0x19ECD10, Rec=0x19ECCF0, Type=4
(806: 48.26s 1996us)(0xBAC) Texture 0x19D0AF0 (Phobos.dds) added in repository
(807: 48.26s 2063us)(0xBAC) Assigning a non-spherical mesh for Phobos
(808: 48.26s 2391us)(0xBAC) RegisteringVisual (Phobos) hVessel=0x0, hObj=0x4349848, Vis=0x19D08A8, Rec=0x19F0DF0, Type=4
(809: 48.27s 2628us)(0xBAC) Texture 0x19D13F0 (Deimos.dds) added in repository
(810: 48.27s 2698us)(0xBAC) Assigning a non-spherical mesh for Deimos
(811: 48.27s 3029us)(0xBAC) RegisteringVisual (Deimos) hVessel=0x0, hObj=0x2117FC0, Vis=0x19D0FB0, Rec=0x19D0BD8, Type=4
(812: 48.38s 3326us)(0xBAC) Texture 0x19D1A98 (ceres.dds) added in repository
(813: 48.38s 3593us)(0xBAC) Assigning a non-spherical mesh for Ceres
(814: 48.39s 10959us)(0xBAC) RegisteringVisual (Ceres) hVessel=0x0, hObj=0x21186A8, Vis=0x19D1850, Rec=0x19D1830, Type=4
(815: 48.39s 15us)(0xBAC) Jupiter has cloud layer
(816: 48.39s 39us)(0xBAC) RegisteringVisual (Jupiter) hVessel=0x0, hObj=0x4347830, Vis=0x19D2138, Rec=0x19D2118, Type=4
(817: 48.39s 5us)(0xBAC) RegisteringVisual (Io) hVessel=0x0, hObj=0x4378508, Vis=0x19D28C0, Rec=0x19D28A0, Type=4
(818: 48.39s 5us)(0xBAC) RegisteringVisual (Europa) hVessel=0x0, hObj=0x4339810, Vis=0xACD0708, Rec=0x19D2AF8, Type=4
(819: 48.39s 4us)(0xBAC) RegisteringVisual (Ganymede) hVessel=0x0, hObj=0x4340878, Vis=0xACD0B38, Rec=0x19D2B38, Type=4
(820: 48.39s 5us)(0xBAC) RegisteringVisual (Callisto) hVessel=0x0, hObj=0x436B820, Vis=0x19D3DD0, Rec=0xACD0F78, Type=4
(821: 48.39s 5us)(0xBAC) RegisteringVisual (Saturn) hVessel=0x0, hObj=0x43798F0, Vis=0x19D43A8, Rec=0xACD0FC0, Type=4
(822: 48.39s 5us)(0xBAC) RegisteringVisual (Mimas) hVessel=0x0, hObj=0x437BB98, Vis=0x19F3258, Rec=0x19D2B58, Type=4
(823: 48.39s 12us)(0xBAC) RegisteringVisual (Enceladus) hVessel=0x0, hObj=0x4323008, Vis=0x19F3B30, Rec=0x19D2B98, Type=4
(824: 48.39s 7us)(0xBAC) RegisteringVisual (Tethys) hVessel=0x0, hObj=0x43236F0, Vis=0x19F7E08, Rec=0x19D2BE0, Type=4
(825: 48.39s 6us)(0xBAC) RegisteringVisual (Dione) hVessel=0x0, hObj=0x436C7B0, Vis=0x19F9360, Rec=0x19D2C20, Type=4
(826: 48.39s 7us)(0xBAC) RegisteringVisual (Rhea) hVessel=0x0, hObj=0x436CEF0, Vis=0x19FA8B8, Rec=0x19D4C80, Type=4
(827: 48.39s 6us)(0xBAC) Titan has cloud layer
(828: 48.39s 25us)(0xBAC) RegisteringVisual (Titan) hVessel=0x0, hObj=0x436D7E8, Vis=0x19FBE10, Rec=0x19D4CC0, Type=4
(829: 48.39s 5us)(0xBAC) RegisteringVisual (Hyperion) hVessel=0x0, hObj=0x43B10C8, Vis=0x19FE6D0, Rec=0x19FE6B0, Type=4
(830: 48.39s 9us)(0xBAC) RegisteringVisual (Iapetus) hVessel=0x0, hObj=0x43B17B0, Vis=0x19FECF0, Rec=0x19FECD0, Type=4
(831: 48.39s 12us)(0xBAC) RegisteringVisual (Uranus) hVessel=0x0, hObj=0x437CB18, Vis=0x1A00290, Rec=0x1A00270, Type=4
(832: 48.39s 5us)(0xBAC) RegisteringVisual (Miranda) hVessel=0x0, hObj=0x439D008, Vis=0x1A045E8, Rec=0x1A045C8, Type=4
(833: 48.39s 6us)(0xBAC) RegisteringVisual (Ariel) hVessel=0x0, hObj=0x437D200, Vis=0x1A04C08, Rec=0x1A04BE8, Type=4
(834: 48.39s 4us)(0xBAC) RegisteringVisual (Umbriel) hVessel=0x0, hObj=0x437D8E8, Vis=0x1A05220, Rec=0x1A05200, Type=4
(835: 48.39s 4us)(0xBAC) RegisteringVisual (Titania) hVessel=0x0, hObj=0x438D6C0, Vis=0x1A05840, Rec=0x1A05820, Type=4
(836: 48.39s 4us)(0xBAC) RegisteringVisual (Oberon) hVessel=0x0, hObj=0x438DDA8, Vis=0x1A05E60, Rec=0x1A05E40, Type=4
(837: 48.39s 12us)(0xBAC) RegisteringVisual (Neptune) hVessel=0x0, hObj=0x438E490, Vis=0x1A06478, Rec=0x1A06458, Type=4
(838: 48.39s 6us)(0xBAC) Triton has cloud layer
(839: 48.39s 26us)(0xBAC) RegisteringVisual (Triton) hVessel=0x0, hObj=0x438A008, Vis=0x1A0A798, Rec=0x1A0A778, Type=4
(840: 48.39s 4us)(0xBAC) RegisteringVisual (Proteus) hVessel=0x0, hObj=0x438EB78, Vis=0x1A0D150, Rec=0x1A0D130, Type=4
(841: 48.39s 4us)(0xBAC) RegisteringVisual (Nereid) hVessel=0x0, hObj=0x438F260, Vis=0x1A0D5C8, Rec=0x1A0D5A8, Type=4
(842: 48.39s 11us)(0xBAC) RegisteringVisual (Pluto) hVessel=0x0, hObj=0x437E290, Vis=0x1A0DAE0, Rec=0x1A0DAC0, Type=4
(843: 48.39s 12us)(0xBAC) RegisteringVisual (Charon) hVessel=0x0, hObj=0x437E978, Vis=0x1A11DF8, Rec=0x1A11DD8, Type=4
(844: 48.40s 4148us)(0xBAC) Texture 0x1A16570 (Nix.dds) added in repository
(845: 48.40s 4245us)(0xBAC) Assigning a non-spherical mesh for Nix
(846: 48.40s 4787us)(0xBAC) RegisteringVisual (Nix) hVessel=0x0, hObj=0x437F060, Vis=0x1A16110, Rec=0x1A160F0, Type=4
(847: 48.42s 4167us)(0xBAC) Texture 0x1A16E30 (Hydra.dds) added in repository
(848: 48.42s 4259us)(0xBAC) Assigning a non-spherical mesh for Hydra
(849: 48.42s 4820us)(0xBAC) RegisteringVisual (Hydra) hVessel=0x0, hObj=0x437F748, Vis=0x1A169D0, Rec=0x1A169B0, Type=4
(850: 48.42s 7us)(0xBAC) RegisteringVisual (Sedna) hVessel=0x0, hObj=0x437FE30, Vis=0x1A17290, Rec=0x1A17270, Type=4
(851: 48.42s 4us)(0xBAC) RegisteringVisual (Eris) hVessel=0x0, hObj=0x4380908, Vis=0x1A17BA8, Rec=0x1A17B88, Type=4
(852: 48.42s 4us)(0xBAC) RegisteringVisual (Dysnomia) hVessel=0x0, hObj=0x43811A8, Vis=0x1A184C0, Rec=0x1A184A0, Type=4
(853: 48.47s 3763us)(0xBAC) Texture 0x1A19248 (1994_CC.dds) added in repository
(854: 48.47s 3912us)(0xBAC) Assigning a non-spherical mesh for 1994 CC
(855: 48.47s 7181us)(0xBAC) RegisteringVisual (1994 CC) hVessel=0x0, hObj=0x4381AC8, Vis=0x1A18DE0, Rec=0x1A18DC0, Type=4
(856: 48.49s 3663us)(0xBAC) Texture 0x1A19B10 (S2009_136617_1.dds) added in repository
(857: 48.49s 3746us)(0xBAC) Assigning a non-spherical mesh for S2009 136617 1
(858: 48.49s 4772us)(0xBAC) RegisteringVisual (S2009 136617 1) hVessel=0x0, hObj=0x43821B0, Vis=0x1A196A8, Rec=0x1A19688, Type=4
(859: 48.50s 3444us)(0xBAC) Texture 0x1A1A3D8 (S2009_136617_2.dds) added in repository
(860: 48.50s 3517us)(0xBAC) Assigning a non-spherical mesh for S2009 136617 2
(861: 48.50s 4060us)(0xBAC) RegisteringVisual (S2009 136617 2) hVessel=0x0, hObj=0x4382C88, Vis=0x1A19F70, Rec=0x1A19F50, Type=4
(862: 48.50s 10us)(0xBAC) RegisteringVisual (Quaoar) hVessel=0x0, hObj=0x4383528, Vis=0x1A1A838, Rec=0x1A1A818, Type=4
(863: 48.50s 4us)(0xBAC) Vessel(0x5163D0C) Proton_LV\KVTK has 1 meshes
(864: 48.50s 1130us)(0xBAC) Mesh(0x4340840) Offset = (0, 0, 0)
(865: 48.50s 1188us)(0xBAC) Vessel(KVTK-1) Vis=0x1977990 has no animations
(866: 48.50s 1205us)(0xBAC) RegisteringVisual (KVTK-1) hVessel=0x5163D0C, hObj=0x4388820, Vis=0x1977990, Rec=0x1A1AC88, Type=10
(867: 48.50s 3us)(0xBAC) Vessel(0x52F3D0C) r7_SZ\Fregat has 2 meshes
(868: 48.60s 5576us)(0xBAC) Normal Map r7_SZ\Foil_F_norm.dds Loaded Successfully
(869: 48.60s 9362us)(0xBAC) Specular Map r7_SZ\Foil_F_spec.dds Loaded Successfully
(870: 48.60s 10062us)(0xBAC) Texture 0x1A1CAD0 (r7_SZ\Foil_F.dds) added in repository
(871: 48.61s 1763us)(0xBAC) Texture 0x1A1CC00 (r7_SZ\Fregat.dds) added in repository
(872: 48.61s 5620us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, 0)
(873: 48.65s 2185us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, 0)
(874: 48.65s 2238us)(0xBAC) Vessel(Fregat) Vis=0x1977678 has 3 animations
(875: 48.65s 2261us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0.5, DefState=0.5
(876: 48.65s 2279us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0.5, DefState=0.5
(877: 48.65s 2296us)(0xBAC) Anim(2): Has 2 animcomps. AnimState=0, DefState=0
(878: 48.65s 2313us)(0xBAC) RegisteringVisual (Fregat) hVessel=0x52F3D0C, hObj=0x4385008, Vis=0x1977678, Rec=0x1A1CA90, Type=10
(879: 48.65s 3us)(0xBAC) Vessel(0x53C425C) RLM has 4 meshes
(880: 49.00s 23169us)(0xBAC) Texture 0x1A1E498 (RLMCabinM.dds) added in repository
(881: 49.02s 25243us)(0xBAC) Normal Map MLI_norm.dds Loaded Successfully
(882: 49.02s 26803us)(0xBAC) Specular Map MLI_spec.dds Loaded Successfully
(883: 49.08s 82720us)(0xBAC) Texture 0x1A1E5C8 (MLI.dds) added in repository
(884: 49.11s 25457us)(0xBAC) Texture 0x1A1E6F8 (WhiteFabric.dds) added in repository
(885: 49.11s 3327us)(0xBAC) Texture 0x1A1E828 (RLM_Panel01.dds) added in repository
(886: 49.13s 21392us)(0xBAC) Texture 0x1A1E958 (Open.dds) added in repository
(887: 49.15s 21306us)(0xBAC) Texture 0x1A1EA88 (RLM_Close.dds) added in repository
(888: 49.16s 31513us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, 0)
(889: 49.36s 6561us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, 0)
(890: 49.42s 4535us)(0xBAC) Normal Map orlan1_norm.dds Loaded Successfully
(891: 49.42s 8243us)(0xBAC) Specular Map orlan1_spec.dds Loaded Successfully
(892: 49.43s 15934us)(0xBAC) Texture 0xACF1548 (orlan1.dds) added in repository
(893: 49.43s 4521us)(0xBAC) Normal Map orlan2_norm.dds Loaded Successfully
(894: 49.44s 8231us)(0xBAC) Specular Map orlan2_spec.dds Loaded Successfully
(895: 49.45s 15790us)(0xBAC) Texture 0xACF1678 (orlan2.dds) added in repository
(896: 49.45s 18845us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 1.25, -0.6)
(897: 49.50s 4526us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 1.25, 0.6)
(898: 49.50s 4617us)(0xBAC) Vessel(LM3) Vis=0x1A1E2C8 has 9 animations
(899: 49.50s 4634us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=0
(900: 49.50s 4650us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(901: 49.50s 4666us)(0xBAC) Anim(2): Has 20 animcomps. AnimState=1, DefState=0
(902: 49.50s 4682us)(0xBAC) Anim(3): Has 1 animcomps. AnimState=0, DefState=0
(903: 49.50s 4698us)(0xBAC) Anim(4): Has 1 animcomps. AnimState=0, DefState=0
(904: 49.50s 4713us)(0xBAC) Anim(5): Has 1 animcomps. AnimState=0, DefState=0
(905: 49.50s 4729us)(0xBAC) Anim(6): Has 1 animcomps. AnimState=0, DefState=0
(906: 49.50s 4750us)(0xBAC) Anim(7): Has 1 animcomps. AnimState=0, DefState=0
(907: 49.50s 4766us)(0xBAC) Anim(8): Has 1 animcomps. AnimState=0, DefState=0
(908: 49.50s 4795us)(0xBAC) RegisteringVisual (LM3) hVessel=0x53C425C, hObj=0x4390008, Vis=0x1A1E2C8, Rec=0x1A1E2A8, Type=10
(909: 49.50s 3us)(0xBAC) Vessel(0x4483D30) ProjectAlpha_ISS has 1 meshes
(910: 49.52s 12140us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, 0)
(911: 49.52s 12194us)(0xBAC) Vessel(ISS) Vis=0xACF8130 has no animations
(912: 49.52s 12210us)(0xBAC) RegisteringVisual (ISS) hVessel=0x4483D30, hObj=0x4482F18, Vis=0xACF8130, Rec=0xACF8110, Type=10
(913: 49.52s 3us)(0xBAC) Vessel(0x5165414) Proton_LV\KVTK has 2 meshes
(914: 49.52s 1091us)(0xBAC) Mesh(0x4340840) Offset = (0, 0, 0)
(915: 49.52s 1446us)(0xBAC) Mesh(0x439FF70) Offset = (0, 0, 0)
(916: 49.52s 1481us)(0xBAC) Vessel(KVTK-2) Vis=0xACFBC00 has no animations
(917: 49.52s 1498us)(0xBAC) RegisteringVisual (KVTK-2) hVessel=0x5165414, hObj=0x4485780, Vis=0xACFBC00, Rec=0xACFBBE0, Type=10
(918: 49.52s 3us)(0xBAC) Vessel(0x5166B1C) Proton_LV\KVTK has 2 meshes
(919: 49.52s 1068us)(0xBAC) Mesh(0x4340840) Offset = (0, 0, 0)
(920: 49.52s 1426us)(0xBAC) Mesh(0x439FF70) Offset = (0, 0, 0)
(921: 49.52s 1465us)(0xBAC) Vessel(KVTK-3) Vis=0xACFEEF0 has no animations
(922: 49.52s 1481us)(0xBAC) RegisteringVisual (KVTK-3) hVessel=0x5166B1C, hObj=0x4486588, Vis=0xACFEEF0, Rec=0xACFEED0, Type=10
(923: 49.52s 3us)(0xBAC) Vessel(0x5403DF4) Proton_LV\LC81 has 2 meshes
(924: 49.79s 3658us)(0xBAC) Texture 0xAD026C8 (Proton_LV\Protonpad_tile.dds) added in repository
(925: 49.79s 1620us)(0xBAC) Texture 0xAD027F8 (Proton_LV\protonpad_tile1.dds) added in repository
(926: 49.80s 7515us)(0xBAC) Texture 0xAD02928 (Proton_LV\rust_pad.dds) added in repository
(927: 49.81s 14299us)(0xBAC) Texture 0xAD02A58 (Proton_LV\rail.dds) added in repository
(928: 49.83s 14127us)(0xBAC) Texture 0xAD02B88 (Proton_LV\Pad_concrete.dds) added in repository
(929: 49.85s 16139us)(0xBAC) Texture 0xAD02CB8 (Proton_LV\Concrete1.dds) added in repository
(930: 49.86s 14016us)(0xBAC) Texture 0xAD02DE8 (Proton_LV\Concrete2.dds) added in repository
(931: 49.87s 12685us)(0xBAC) Texture 0xAD02F18 (Proton_LV\prtm11.dds) added in repository
(932: 49.88s 22101us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, 0)
(933: 50.11s 2828us)(0xBAC) Texture 0xAD07C38 (Proton_LV\prtm15.dds) added in repository
(934: 50.11s 10695us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, -23.75)
(935: 50.11s 10772us)(0xBAC) Vessel(LC81) Vis=0xAD024D8 has 3 animations
(936: 50.11s 10790us)(0xBAC) Anim(0): Has 5 animcomps. AnimState=1, DefState=0
(937: 50.11s 10807us)(0xBAC) Anim(1): Has 21 animcomps. AnimState=1, DefState=0
(938: 50.11s 10824us)(0xBAC) Anim(2): Has 3 animcomps. AnimState=1, DefState=0
(939: 50.11s 10868us)(0xBAC) RegisteringVisual (LC81) hVessel=0x5403DF4, hObj=0x45D94C8, Vis=0xAD024D8, Rec=0xAD024B8, Type=10
(940: 50.11s 3us)(0xBAC) Vessel(0x45DA4A0) BlockDML has 1 meshes
(941: 50.12s 3658us)(0xBAC) Mesh(0x6E727B0) Offset = (0, 0, 0)
(942: 50.12s 3711us)(0xBAC) Vessel(LM3-BlockDML) Vis=0xAD0F820 has no animations
(943: 50.12s 3728us)(0xBAC) RegisteringVisual (LM3-BlockDML) hVessel=0x45DA4A0, hObj=0x4619770, Vis=0xAD0F820, Rec=0xAD0F800, Type=10
(944: 50.12s 3us)(0xBAC) Vessel(0x54046B4) ISSR\SouyzTMA has 2 meshes
(945: 50.12s 669us)(0xBAC) Mesh(0x6E72BF0) Offset = (0, 0, 0)
(946: 50.12s 1107us)(0xBAC) Mesh(0x6E8ABB0) Offset = (0, 0, 0)
(947: 50.12s 1147us)(0xBAC) Vessel(SoyuzTMA-L) Vis=0xAD130F0 has 6 animations
(948: 50.12s 1163us)(0xBAC) Anim(0): Has 2 animcomps. AnimState=2.122e-314, DefState=0
(949: 50.12s 1182us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(950: 50.12s 1204us)(0xBAC) Anim(2): Has 2 animcomps. AnimState=0, DefState=0
(951: 50.12s 1220us)(0xBAC) Anim(3): Has 1 animcomps. AnimState=0, DefState=0
(952: 50.12s 1236us)(0xBAC) Anim(4): Has 9 animcomps. AnimState=0, DefState=0
(953: 50.12s 1251us)(0xBAC) Anim(5): Has 1 animcomps. AnimState=0, DefState=0
(954: 50.12s 1269us)(0xBAC) RegisteringVisual (SoyuzTMA-L) hVessel=0x54046B4, hObj=0x461D7B0, Vis=0xAD130F0, Rec=0xAD130D0, Type=10
(955: 50.12s 3us)(0xBAC) Vessel(0x5493D0C) r7_SZ\LES has 1 meshes
(956: 50.12s 247us)(0xBAC) Mesh(0x4622018) Offset = (0, 0, 0)
(957: 50.12s 277us)(0xBAC) Vessel(SAS) Vis=0xAD16580 has 4 animations
(958: 50.12s 293us)(0xBAC) Anim(0): Has 0 animcomps. AnimState=0, DefState=0
(959: 50.12s 310us)(0xBAC) Anim(1): Has 0 animcomps. AnimState=0, DefState=0
(960: 50.12s 325us)(0xBAC) Anim(2): Has 0 animcomps. AnimState=0, DefState=0
(961: 50.12s 341us)(0xBAC) Anim(3): Has 0 animcomps. AnimState=0, DefState=0
(962: 50.12s 357us)(0xBAC) RegisteringVisual (SAS) hVessel=0x5493D0C, hObj=0x461E5B8, Vis=0xAD16580, Rec=0xAD16560, Type=10
(963: 50.12s 3us)(0xBAC) Vessel(0x54E3D0C) r7_SZ\TMA_fairing has 2 meshes
(964: 50.12s 238us)(0xBAC) Mesh(0x4622050) Offset = (0, 0, 0)
(965: 50.12s 310us)(0xBAC) Mesh(0x46E6540) Offset = (0, 0, 0)
(966: 50.12s 336us)(0xBAC) Vessel(Fairing1) Vis=0xAD16C10 has no animations
(967: 50.12s 352us)(0xBAC) RegisteringVisual (Fairing1) hVessel=0x54E3D0C, hObj=0x46E4578, Vis=0xAD16C10, Rec=0xAD16BF0, Type=10
(968: 50.12s 2us)(0xBAC) Vessel(0x54E4684) r7_SZ\TMA_fairing has 2 meshes
(969: 50.12s 225us)(0xBAC) Mesh(0x46DC6F8) Offset = (0, 0, 0)
(970: 50.12s 293us)(0xBAC) Mesh(0x46DC730) Offset = (0, 0, 0)
(971: 50.12s 313us)(0xBAC) Vessel(Fairing2) Vis=0xAD17EB8 has no animations
(972: 50.12s 329us)(0xBAC) RegisteringVisual (Fairing2) hVessel=0x54E4684, hObj=0x474D158, Vis=0xAD17EB8, Rec=0xAD17E98, Type=10
(973: 50.12s 3us)(0xBAC) Vessel(0x5503D0C) r7_SZ\BlockI has 4 meshes
(974: 50.12s 872us)(0xBAC) Mesh(0x4781730) Offset = (0, 0, 0)
(975: 50.12s 1013us)(0xBAC) Mesh(0x480C540) Offset = (0, 0, -2.686)
(976: 50.12s 1107us)(0xBAC) Mesh(0x480C508) Offset = (0, 0, 2.898)
(977: 50.12s 1646us)(0xBAC) Mesh(0x46DA168) Offset = (0, 0, 5.619)
(978: 50.12s 1704us)(0xBAC) Vessel(BlockI) Vis=0xAD19048 has 4 animations
(979: 50.12s 1721us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=0
(980: 50.12s 1736us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(981: 50.12s 1752us)(0xBAC) Anim(2): Has 1 animcomps. AnimState=0, DefState=0
(982: 50.12s 1767us)(0xBAC) Anim(3): Has 1 animcomps. AnimState=0, DefState=0
(983: 50.12s 1784us)(0xBAC) RegisteringVisual (BlockI) hVessel=0x5503D0C, hObj=0x46E5380, Vis=0xAD19048, Rec=0xAD19028, Type=10
(984: 50.12s 3us)(0xBAC) Vessel(0x6733D0C) r7_SZ\BlockBD has 3 meshes
(985: 50.12s 273us)(0xBAC) Mesh(0x46DC820) Offset = (0, 0, 0)
(986: 50.12s 377us)(0xBAC) Mesh(0x4895998) Offset = (1.186, 0.525, -3.9)
(987: 50.12s 467us)(0xBAC) Mesh(0x4895998) Offset = (1.186, -0.525, -3.9)
(988: 50.12s 492us)(0xBAC) Vessel(BlockB) Vis=0xAD1D1F8 has 2 animations
(989: 50.12s 508us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=0
(990: 50.12s 524us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(991: 50.12s 558us)(0xBAC) RegisteringVisual (BlockB) hVessel=0x6733D0C, hObj=0x4719DC0, Vis=0xAD1D1F8, Rec=0xAD1D1D8, Type=10
(992: 50.12s 3us)(0xBAC) Vessel(0x67345AC) r7_SZ\BlockBD has 3 meshes
(993: 50.12s 441us)(0xBAC) Mesh(0x46DC820) Offset = (0, 0, 0)
(994: 50.12s 586us)(0xBAC) Mesh(0x4895998) Offset = (1.186, 0.525, -3.9)
(995: 50.12s 677us)(0xBAC) Mesh(0x4895998) Offset = (1.186, -0.525, -3.9)
(996: 50.12s 701us)(0xBAC) Vessel(BlockV) Vis=0xAD1F400 has 2 animations
(997: 50.12s 770us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=0
(998: 50.12s 788us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(999: 50.12s 806us)(0xBAC) RegisteringVisual (BlockV) hVessel=0x67345AC, hObj=0x48ACFE8, Vis=0xAD1F400, Rec=0xAD1F3E0, Type=10
(1000: 50.12s 3us)(0xBAC) Vessel(0x6734EEC) r7_SZ\BlockBD has 3 meshes
(1001: 50.12s 266us)(0xBAC) Mesh(0x46DC820) Offset = (0, 0, 0)
(1002: 50.12s 399us)(0xBAC) Mesh(0x4895998) Offset = (1.186, 0.525, -3.9)
(1003: 50.12s 501us)(0xBAC) Mesh(0x4895998) Offset = (1.186, -0.525, -3.9)
(1004: 50.12s 525us)(0xBAC) Vessel(BlockG) Vis=0xAD21638 has 2 animations
(1005: 50.12s 541us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=0
(1006: 50.12s 557us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(1007: 50.12s 574us)(0xBAC) RegisteringVisual (BlockG) hVessel=0x6734EEC, hObj=0x4781A88, Vis=0xAD21638, Rec=0xAD21618, Type=10
(1008: 50.12s 3us)(0xBAC) Vessel(0x673578C) r7_SZ\BlockBD has 3 meshes
(1009: 50.12s 255us)(0xBAC) Mesh(0x46DC820) Offset = (0, 0, 0)
(1010: 50.12s 361us)(0xBAC) Mesh(0x4895998) Offset = (1.186, 0.525, -3.9)
(1011: 50.12s 455us)(0xBAC) Mesh(0x4895998) Offset = (1.186, -0.525, -3.9)
(1012: 50.12s 480us)(0xBAC) Vessel(BlockD) Vis=0xAD23870 has 2 animations
(1013: 50.12s 495us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=0
(1014: 50.12s 511us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(1015: 50.12s 528us)(0xBAC) RegisteringVisual (BlockD) hVessel=0x673578C, hObj=0x6765E20, Vis=0xAD23870, Rec=0xAD23850, Type=10
(1016: 50.12s 3us)(0xBAC) Vessel(0x7793D0C) r7_SZ\BlockA has 6 meshes
(1017: 50.12s 87us)(0xBAC) Mesh(0x4895998) Offset = (1.1, 0, -12.164)
(1018: 50.12s 323us)(0xBAC) Mesh(0x4895998) Offset = (0, 1.1, -12.164)
(1019: 50.12s 407us)(0xBAC) Mesh(0x4895998) Offset = (-1.1, 0, -12.164)
(1020: 50.12s 492us)(0xBAC) Mesh(0x4895998) Offset = (0, -1.1, -12.164)
(1021: 50.12s 606us)(0xBAC) Mesh(0x676A298) Offset = (0, 0, 14.859)
(1022: 50.13s 1135us)(0xBAC) Mesh(0x676AFE0) Offset = (0, 0, 0)
(1023: 50.13s 1187us)(0xBAC) Vessel(Launcher) Vis=0xAD25AA8 has 4 animations
(1024: 50.13s 1204us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=0
(1025: 50.13s 1230us)(0xBAC) Anim(1): Has 1 animcomps. AnimState=0, DefState=0
(1026: 50.13s 1246us)(0xBAC) Anim(2): Has 1 animcomps. AnimState=0, DefState=0
(1027: 50.13s 1267us)(0xBAC) Anim(3): Has 1 animcomps. AnimState=0, DefState=0
(1028: 50.13s 1285us)(0xBAC) RegisteringVisual (Launcher) hVessel=0x7793D0C, hObj=0x6767638, Vis=0xAD25AA8, Rec=0xAD25A88, Type=10
(1029: 50.13s 3us)(0xBAC) Vessel(0x7893D0C) r7_SZ\Launchpad has 13 meshes
(1030: 50.13s 1166us)(0xBAC) Mesh(0x676A218) Offset = (0, -25.65, 0)
(1031: 50.13s 2086us)(0xBAC) Mesh(0x68C4C88) Offset = (111.3, -22.09, 16.9)
(1032: 50.13s 2453us)(0xBAC) Mesh(0x676B018) Offset = (-5.3033, -9.55, -5.3033)
(1033: 50.13s 2808us)(0xBAC) Mesh(0x67ECE58) Offset = (5.3033, -9.55, -5.3033)
(1034: 50.13s 3292us)(0xBAC) Mesh(0x6A00520) Offset = (5.3033, -9.55, 5.3033)
(1035: 50.13s 3632us)(0xBAC) Mesh(0x6A420F8) Offset = (-5.3033, -9.55, 5.3033)
(1036: 50.13s 3770us)(0xBAC) Mesh(0x68C59A8) Offset = (0, -24.25, 0)
(1037: 50.13s 4304us)(0xBAC) Mesh(0x68C59E0) Offset = (0, -24.25, 0)
(1038: 50.13s 6416us)(0xBAC) Mesh(0x68C68E8) Offset = (0, -12.2, 0)
(1039: 50.13s 7202us)(0xBAC) Mesh(0x6C1A4A8) Offset = (-7.5, -12.05, 0)
(1040: 50.13s 7856us)(0xBAC) Mesh(0x6C1A470) Offset = (7.5, -12.05, 0)
(1041: 50.13s 8012us)(0xBAC) Mesh(0x6C8B6F0) Offset = (0, -9.85, 7.5)
(1042: 50.13s 8211us)(0xBAC) Mesh(0x6C6C5B0) Offset = (0, -8.05, 7.35)
(1043: 50.13s 8257us)(0xBAC) Vessel(Launchpad) Vis=0xAD29A40 has 8 animations
(1044: 50.13s 8274us)(0xBAC) Anim(0): Has 9 animcomps. AnimState=0, DefState=0
(1045: 50.13s 8290us)(0xBAC) Anim(1): Has 2 animcomps. AnimState=1, DefState=1
(1046: 50.13s 8307us)(0xBAC) Anim(2): Has 4 animcomps. AnimState=1, DefState=1
(1047: 50.13s 8325us)(0xBAC) Anim(3): Has 2 animcomps. AnimState=1, DefState=1
(1048: 50.13s 8341us)(0xBAC) Anim(4): Has 4 animcomps. AnimState=1, DefState=1
(1049: 50.13s 8358us)(0xBAC) Anim(5): Has 2 animcomps. AnimState=1, DefState=1
(1050: 50.13s 8375us)(0xBAC) Anim(6): Has 1 animcomps. AnimState=1, DefState=1
(1051: 50.13s 8392us)(0xBAC) Anim(7): Has 1 animcomps. AnimState=1, DefState=1
(1052: 50.13s 8410us)(0xBAC) RegisteringVisual (Launchpad) hVessel=0x7893D0C, hObj=0x6768D70, Vis=0xAD29A40, Rec=0xAD29A20, Type=10
(1053: 50.13s 3us)(0xBAC) Vessel(0x815004C) UMmu has 5 meshes
(1054: 50.13s 114us)(0xBAC) Mesh(0x44823B0) Offset = (0, 0, 0)
(1055: 50.13s 307us)(0xBAC) Mesh(0x6C719E8) Offset = (0, 0, 0)
(1056: 50.13s 387us)(0xBAC) Mesh(0x6E2E658) Offset = (0, 0, 0)
(1057: 50.13s 584us)(0xBAC) Mesh(0x6E2E620) Offset = (0, 0, 0)
(1058: 50.13s 632us)(0xBAC) Mesh(0x6E26B78) Offset = (0, -0.5, 0)
(1059: 50.13s 658us)(0xBAC) Vessel(UMmu_Capt-Maj.A.A._Skvortsov) Vis=0xAD33F28 has 1 animations
(1060: 50.13s 674us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=1
(1061: 50.13s 695us)(0xBAC) RegisteringVisual (UMmu_Capt-Maj.A.A._Skvortsov) hVessel=0x815004C, hObj=0x677E768, Vis=0xAD33F28, Rec=0xAD33F08, Type=10
(1062: 50.13s 3us)(0xBAC) Vessel(0x81700AC) UMmu has 5 meshes
(1063: 50.13s 154us)(0xBAC) Mesh(0x6E54600) Offset = (0, 0, 0)
(1064: 50.13s 325us)(0xBAC) Mesh(0x6C719E8) Offset = (0, 0, 0)
(1065: 50.14s 404us)(0xBAC) Mesh(0x6E2E658) Offset = (0, 0, 0)
(1066: 50.14s 462us)(0xBAC) Mesh(0x6E2E620) Offset = (0, 0, 0)
(1067: 50.14s 510us)(0xBAC) Mesh(0x6E26B78) Offset = (0, -0.5, 0)
(1068: 50.14s 535us)(0xBAC) Vessel(UMmu_Eng-Cosm.Y.O._Serova) Vis=0xAD365B8 has 1 animations
(1069: 50.14s 551us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=1
(1070: 50.14s 571us)(0xBAC) RegisteringVisual (UMmu_Eng-Cosm.Y.O._Serova) hVessel=0x81700AC, hObj=0x6DDE258, Vis=0xAD365B8, Rec=0xAD36598, Type=10
(1071: 50.14s 3us)(0xBAC) Vessel(0x819010C) UMmu has 5 meshes
(1072: 50.14s 112us)(0xBAC) Mesh(0x44823B0) Offset = (0, 0, 0)
(1073: 50.14s 283us)(0xBAC) Mesh(0x6C719E8) Offset = (0, 0, 0)
(1074: 50.14s 360us)(0xBAC) Mesh(0x6E2E658) Offset = (0, 0, 0)
(1075: 50.14s 426us)(0xBAC) Mesh(0x6E2E620) Offset = (0, 0, 0)
(1076: 50.14s 471us)(0xBAC) Mesh(0x6E26B78) Offset = (0, -0.5, 0)
(1077: 50.14s 496us)(0xBAC) Vessel(UMmu_Vip-John_Smith) Vis=0xAD38AF8 has 1 animations
(1078: 50.14s 512us)(0xBAC) Anim(0): Has 1 animcomps. AnimState=0, DefState=1
(1079: 50.14s 532us)(0xBAC) RegisteringVisual (UMmu_Vip-John_Smith) hVessel=0x819010C, hObj=0x6DE0DF8, Vis=0xAD38AF8, Rec=0xAD38AD8, Type=10
(1080: 50.14s 552us)(0xBAC) =============== Loading Completed and Visuals Created ================
(1081: 50.18s 58us)(0xBAC)[WARNING] Small Bounding Sphere rad=0 nVtx=28
(1082: 50.18s 106us)(0xBAC) New Base Visual(0x19834E8) Al Anbar hBase=0x2117008, nsbs=1, nsas=0
(1083: 50.18s 2942us)(0xBAC) Texture Earth_0_e0088_n0064.dds loaded. (1024 x 1024)
(1084: 50.18s 3113us)(0xBAC) Texture Earth_0_e0088_n0065.dds loaded. (1024 x 1024)
(1085: 50.19s 3062us)(0xBAC) Texture Earth_0_e0088_n0066.dds loaded. (1024 x 1024)
(1086: 50.19s 3239us)(0xBAC) Texture Earth_0_e0089_n0064.dds loaded. (1024 x 1024)
(1087: 50.20s 7868us)(0xBAC) Texture Earth_0_e0089_n0065.dds loaded. (1024 x 1024)
(1088: 50.20s 2929us)(0xBAC) Texture Earth_0_e0089_n0066.dds loaded. (1024 x 1024)
(1089: 50.20s 3156us)(0xBAC) Texture Earth_0_e0090_n0064.dds loaded. (1024 x 1024)
(1090: 50.21s 7835us)(0xBAC) Texture Earth_0_e0090_n0065.dds loaded. (1024 x 1024)
(1091: 50.21s 3052us)(0xBAC) Texture Earth_0_e0090_n0066.dds loaded. (1024 x 1024)
(1092: 50.22s 3179us)(0xBAC) Texture Earth_0_e0091_n0064.dds loaded. (1024 x 1024)
(1093: 50.23s 8036us)(0xBAC) Texture Earth_0_e0091_n0065.dds loaded. (1024 x 1024)
(1094: 50.23s 3078us)(0xBAC) Texture Earth_0_e0091_n0066.dds loaded. (1024 x 1024)
(1095: 50.23s 3179us)(0xBAC) Texture Earth_0_e0092_n0064.dds loaded. (1024 x 1024)
(1096: 50.24s 8023us)(0xBAC) Texture Earth_0_e0092_n0065.dds loaded. (1024 x 1024)
(1097: 50.24s 3061us)(0xBAC) Texture Earth_0_e0092_n0066.dds loaded. (1024 x 1024)
(1098: 50.25s 2934us)(0xBAC) Texture Earth_0_e0093_n0064.dds loaded. (1024 x 1024)
(1099: 50.25s 3450us)(0xBAC) Texture Earth_0_e0093_n0065.dds loaded. (1024 x 1024)
(1100: 50.25s 3144us)(0xBAC) Texture Earth_0_e0093_n0066.dds loaded. (1024 x 1024)
(1101: 50.26s 2912us)(0xBAC) Texture Earth_3_e0715_n0523.dds loaded. (1024 x 1024)
(1102: 50.26s 3037us)(0xBAC) Texture Earth_3_e0715_n0524.dds loaded. (1024 x 1024)
(1103: 50.26s 2877us)(0xBAC) Texture Earth_3_e0716_n0517.dds loaded. (1024 x 1024)
(1104: 50.27s 3033us)(0xBAC) Texture Earth_3_e0716_n0518.dds loaded. (1024 x 1024)
(1105: 50.27s 2912us)(0xBAC) Texture Earth_3_e0716_n0519.dds loaded. (1024 x 1024)
(1106: 50.27s 2891us)(0xBAC) Texture Earth_3_e0716_n0520.dds loaded. (1024 x 1024)
(1107: 50.27s 2870us)(0xBAC) Texture Earth_3_e0716_n0521.dds loaded. (1024 x 1024)
(1108: 50.28s 3031us)(0xBAC) Texture Earth_3_e0716_n0522.dds loaded. (1024 x 1024)
(1109: 50.28s 5957us)(0xBAC) Texture Earth_3_e0716_n0523.dds loaded. (1024 x 1024)
(1110: 50.29s 7786us)(0xBAC) Texture Earth_3_e0716_n0524.dds loaded. (1024 x 1024)
(1111: 50.29s 2837us)(0xBAC) Texture Earth_3_e0716_n0525.dds loaded. (1024 x 1024)
(1112: 50.30s 3171us)(0xBAC) Texture Earth_3_e0717_n0517.dds loaded. (1024 x 1024)
(1113: 50.31s 8156us)(0xBAC) Texture Earth_3_e0717_n0518.dds loaded. (1024 x 1024)
(1114: 50.31s 7828us)(0xBAC) Texture Earth_3_e0717_n0519.dds loaded. (1024 x 1024)
(1115: 50.32s 7835us)(0xBAC) Texture Earth_3_e0717_n0520.dds loaded. (1024 x 1024)
(1116: 50.33s 7807us)(0xBAC) Texture Earth_3_e0717_n0521.dds loaded. (1024 x 1024)
(1117: 50.34s 7847us)(0xBAC) Texture Earth_3_e0717_n0522.dds loaded. (1024 x 1024)
(1118: 50.34s 2927us)(0xBAC) Texture Earth_3_e0717_n0523.dds loaded. (1024 x 1024)
(1119: 50.34s 3066us)(0xBAC) Texture Earth_3_e0717_n0524.dds loaded. (1024 x 1024)
(1120: 50.35s 3068us)(0xBAC) Texture Earth_3_e0717_n0525.dds loaded. (1024 x 1024)
(1121: 50.35s 2974us)(0xBAC) Texture Earth_3_e0718_n0517.dds loaded. (1024 x 1024)
(1122: 50.36s 7890us)(0xBAC) Texture Earth_3_e0718_n0518.dds loaded. (1024 x 1024)
(1123: 50.36s 7817us)(0xBAC) Texture Earth_3_e0718_n0519.dds loaded. (1024 x 1024)
(1124: 50.37s 7868us)(0xBAC) Texture Earth_3_e0718_n0520.dds loaded. (1024 x 1024)
(1125: 50.38s 7874us)(0xBAC) Texture Earth_3_e0718_n0521.dds loaded. (1024 x 1024)
(1126: 50.39s 7829us)(0xBAC) Texture Earth_3_e0718_n0522.dds loaded. (1024 x 1024)
(1127: 50.40s 7916us)(0xBAC) Texture Earth_3_e0718_n0523.dds loaded. (1024 x 1024)
(1128: 50.40s 7854us)(0xBAC) Texture Earth_3_e0718_n0524.dds loaded. (1024 x 1024)
(1129: 50.41s 2901us)(0xBAC) Texture Earth_3_e0718_n0525.dds loaded. (1024 x 1024)
(1130: 50.41s 3142us)(0xBAC) Texture Earth_3_e0719_n0517.dds loaded. (1024 x 1024)
(1131: 50.42s 7921us)(0xBAC) Texture Earth_3_e0719_n0518.dds loaded. (1024 x 1024)
(1132: 50.43s 7793us)(0xBAC) Texture Earth_3_e0719_n0519.dds loaded. (1024 x 1024)
(1133: 50.43s 7632us)(0xBAC) Texture Earth_3_e0719_n0520.dds loaded. (1024 x 1024)
(1134: 50.44s 7848us)(0xBAC) Texture Earth_3_e0719_n0521.dds loaded. (1024 x 1024)
(1135: 50.45s 7695us)(0xBAC) Texture Earth_3_e0719_n0522.dds loaded. (1024 x 1024)
(1136: 50.46s 7797us)(0xBAC) Texture Earth_3_e0719_n0523.dds loaded. (1024 x 1024)
(1137: 50.47s 7877us)(0xBAC) Texture Earth_3_e0719_n0524.dds loaded. (1024 x 1024)
(1138: 50.47s 3038us)(0xBAC) Texture Earth_3_e0719_n0525.dds loaded. (1024 x 1024)
(1139: 50.47s 2920us)(0xBAC) Texture Earth_3_e0720_n0517.dds loaded. (1024 x 1024)
(1140: 50.48s 7905us)(0xBAC) Texture Earth_3_e0720_n0518.dds loaded. (1024 x 1024)
(1141: 50.48s 4339us)(0xBAC) Texture Earth_3_e0720_n0519.dds loaded. (1024 x 1024)
(1142: 50.49s 7907us)(0xBAC) Texture Earth_3_e0720_n0520.dds loaded. (1024 x 1024)
(1143: 50.50s 7928us)(0xBAC) Texture Earth_3_e0720_n0521.dds loaded. (1024 x 1024)
(1144: 50.51s 7752us)(0xBAC) Texture Earth_3_e0720_n0522.dds loaded. (1024 x 1024)
(1145: 50.52s 7743us)(0xBAC) Texture Earth_3_e0720_n0523.dds loaded. (1024 x 1024)
(1146: 50.52s 3038us)(0xBAC) Texture Earth_3_e0720_n0524.dds loaded. (1024 x 1024)
(1147: 50.52s 3092us)(0xBAC) Texture Earth_3_e0720_n0525.dds loaded. (1024 x 1024)
(1148: 50.53s 3064us)(0xBAC) Texture Earth_3_e0721_n0517.dds loaded. (1024 x 1024)
(1149: 50.53s 2964us)(0xBAC) Texture Earth_3_e0721_n0518.dds loaded. (1024 x 1024)
(1150: 50.53s 2857us)(0xBAC) Texture Earth_3_e0721_n0519.dds loaded. (1024 x 1024)
(1151: 50.53s 3211us)(0xBAC) Texture Earth_3_e0721_n0520.dds loaded. (1024 x 1024)
(1152: 50.54s 2896us)(0xBAC) Texture Earth_3_e0721_n0521.dds loaded. (1024 x 1024)
(1153: 50.55s 9202us)(0xBAC) Texture Earth_3_e0721_n0522.dds loaded. (1024 x 1024)
(1154: 50.55s 2877us)(0xBAC) Texture Earth_3_e0721_n0523.dds loaded. (1024 x 1024)
(1155: 50.55s 3013us)(0xBAC) Texture Earth_3_e0721_n0524.dds loaded. (1024 x 1024)
(1156: 50.56s 2884us)(0xBAC) Texture Earth_3_e0722_n0521.dds loaded. (1024 x 1024)
(1157: 50.56s 3001us)(0xBAC) Texture Earth_3_e0722_n0522.dds loaded. (1024 x 1024)
(1158: 50.56s 2880us)(0xBAC) Texture Earth_3_e0722_n0523.dds loaded. (1024 x 1024)
(1159: 50.57s 3060us)(0xBAC) Texture Earth_3_e0723_n0521.dds loaded. (1024 x 1024)
(1160: 50.57s 2882us)(0xBAC) Texture Earth_3_e0723_n0522.dds loaded. (1024 x 1024)
(1161: 50.57s 3065us)(0xBAC) Texture Earth_3_e0723_n0523.dds loaded. (1024 x 1024)
(1162: 50.57s 2975us)(0xBAC) Texture Earth_6_e5784_n4185.dds loaded. (1024 x 1024)
(1163: 50.58s 2906us)(0xBAC) Texture Earth_6_e5784_n4186.dds loaded. (1024 x 1024)
(1164: 50.58s 3060us)(0xBAC) Texture Earth_6_e5784_n4187.dds loaded. (1024 x 1024)
(1165: 50.58s 2870us)(0xBAC) Texture Earth_6_e5785_n4185.dds loaded. (1024 x 1024)
(1166: 50.59s 7852us)(0xBAC) Texture Earth_6_e5785_n4186.dds loaded. (1024 x 1024)
(1167: 50.59s 2877us)(0xBAC) Texture Earth_6_e5785_n4187.dds loaded. (1024 x 1024)
(1168: 50.60s 2908us)(0xBAC) Texture Earth_6_e5786_n4185.dds loaded. (1024 x 1024)
(1169: 50.61s 7932us)(0xBAC) Texture Earth_6_e5786_n4186.dds loaded. (1024 x 1024)
(1170: 50.61s 2878us)(0xBAC) Texture Earth_6_e5786_n4187.dds loaded. (1024 x 1024)
(1171: 50.61s 2925us)(0xBAC) Texture Earth_6_e5787_n4185.dds loaded. (1024 x 1024)
(1172: 50.62s 7945us)(0xBAC) Texture Earth_6_e5787_n4186.dds loaded. (1024 x 1024)
(1173: 50.62s 3187us)(0xBAC) Texture Earth_6_e5787_n4187.dds loaded. (1024 x 1024)
(1174: 50.63s 2889us)(0xBAC) Texture Earth_6_e5788_n4185.dds loaded. (1024 x 1024)
(1175: 50.63s 3028us)(0xBAC) Texture Earth_6_e5788_n4186.dds loaded. (1024 x 1024)
(1176: 50.63s 2955us)(0xBAC) Texture Earth_6_e5788_n4187.dds loaded. (1024 x 1024)
(1177: 50.64s 3248us)(0xBAC) Texture Earth_6_e5762_n4178.dds loaded. (1024 x 1024)
(1178: 50.64s 3036us)(0xBAC) Texture Earth_6_e5762_n4179.dds loaded. (1024 x 1024)
(1179: 50.64s 3271us)(0xBAC) Texture Earth_6_e5762_n4180.dds loaded. (1024 x 1024)
(1180: 50.64s 3125us)(0xBAC) Texture Earth_6_e5762_n4181.dds loaded. (1024 x 1024)
(1181: 50.65s 3033us)(0xBAC) Texture Earth_6_e5763_n4178.dds loaded. (1024 x 1024)
(1182: 50.65s 4441us)(0xBAC) Texture Earth_6_e5763_n4179.dds loaded. (1024 x 1024)
(1183: 50.66s 3078us)(0xBAC) Texture Earth_6_e5763_n4180.dds loaded. (1024 x 1024)
(1184: 50.66s 3169us)(0xBAC) Texture Earth_6_e5763_n4181.dds loaded. (1024 x 1024)
(1185: 50.66s 3119us)(0xBAC) Texture Earth_6_e5764_n4178.dds loaded. (1024 x 1024)
(1186: 50.67s 7940us)(0xBAC) Texture Earth_6_e5764_n4179.dds loaded. (1024 x 1024)
(1187: 50.68s 7910us)(0xBAC) Texture Earth_6_e5764_n4180.dds loaded. (1024 x 1024)
(1188: 50.68s 3112us)(0xBAC) Texture Earth_6_e5764_n4181.dds loaded. (1024 x 1024)
(1189: 50.68s 2991us)(0xBAC) Texture Earth_6_e5765_n4178.dds loaded. (1024 x 1024)
(1190: 50.69s 7957us)(0xBAC) Texture Earth_6_e5765_n4179.dds loaded. (1024 x 1024)
(1191: 50.70s 2994us)(0xBAC) Texture Earth_6_e5765_n4180.dds loaded. (1024 x 1024)
(1192: 50.70s 2974us)(0xBAC) Texture Earth_6_e5765_n4181.dds loaded. (1024 x 1024)
(1193: 50.70s 3026us)(0xBAC) Texture Earth_6_e5766_n4178.dds loaded. (1024 x 1024)
(1194: 50.70s 3111us)(0xBAC) Texture Earth_6_e5766_n4179.dds loaded. (1024 x 1024)
(1195: 50.71s 3277us)(0xBAC) Texture Earth_6_e5766_n4180.dds loaded. (1024 x 1024)
(1196: 50.71s 3221us)(0xBAC) Texture Earth_6_e5766_n4181.dds loaded. (1024 x 1024)
(1197: 50.71s 3024us)(0xBAC) Texture Earth_6_e5767_n4178.dds loaded. (1024 x 1024)
(1198: 50.72s 3125us)(0xBAC) Texture Earth_6_e5767_n4179.dds loaded. (1024 x 1024)
(1199: 50.72s 3022us)(0xBAC) Texture Earth_6_e5767_n4180.dds loaded. (1024 x 1024)
(1200: 50.72s 3107us)(0xBAC) Texture Earth_6_e5767_n4181.dds loaded. (1024 x 1024)
(1201: 50.73s 3005us)(0xBAC) Texture Earth_6_e5729_n4192.dds loaded. (1024 x 1024)
(1202: 50.73s 3195us)(0xBAC) Texture Earth_6_e5729_n4193.dds loaded. (1024 x 1024)
(1203: 50.73s 3001us)(0xBAC) Texture Earth_6_e5729_n4194.dds loaded. (1024 x 1024)
(1204: 50.74s 3146us)(0xBAC) Texture Earth_6_e5729_n4195.dds loaded. (1024 x 1024)
(1205: 50.74s 3093us)(0xBAC) Texture Earth_6_e5730_n4192.dds loaded. (1024 x 1024)
(1206: 50.75s 8178us)(0xBAC) Texture Earth_6_e5730_n4193.dds loaded. (1024 x 1024)
(1207: 50.76s 8078us)(0xBAC) Texture Earth_6_e5730_n4194.dds loaded. (1024 x 1024)
(1208: 50.76s 2990us)(0xBAC) Texture Earth_6_e5730_n4195.dds loaded. (1024 x 1024)
(1209: 50.76s 2969us)(0xBAC) Texture Earth_6_e5731_n4192.dds loaded. (1024 x 1024)
(1210: 50.77s 7822us)(0xBAC) Texture Earth_6_e5731_n4193.dds loaded. (1024 x 1024)
(1211: 50.78s 7827us)(0xBAC) Texture Earth_6_e5731_n4194.dds loaded. (1024 x 1024)
(1212: 50.78s 3014us)(0xBAC) Texture Earth_6_e5731_n4195.dds loaded. (1024 x 1024)
(1213: 50.78s 3167us)(0xBAC) Texture Earth_6_e5732_n4192.dds loaded. (1024 x 1024)
(1214: 50.79s 7964us)(0xBAC) Texture Earth_6_e5732_n4193.dds loaded. (1024 x 1024)
(1215: 50.80s 8176us)(0xBAC) Texture Earth_6_e5732_n4194.dds loaded. (1024 x 1024)
(1216: 50.80s 2996us)(0xBAC) Texture Earth_6_e5732_n4195.dds loaded. (1024 x 1024)
(1217: 50.81s 3023us)(0xBAC) Texture Earth_6_e5733_n4192.dds loaded. (1024 x 1024)
(1218: 50.82s 7965us)(0xBAC) Texture Earth_6_e5733_n4193.dds loaded. (1024 x 1024)
(1219: 50.82s 7919us)(0xBAC) Texture Earth_6_e5733_n4194.dds loaded. (1024 x 1024)
(1220: 50.83s 3041us)(0xBAC) Texture Earth_6_e5733_n4195.dds loaded. (1024 x 1024)
(1221: 50.83s 2965us)(0xBAC) Texture Earth_6_e5734_n4192.dds loaded. (1024 x 1024)
(1222: 50.84s 7924us)(0xBAC) Texture Earth_6_e5734_n4193.dds loaded. (1024 x 1024)
(1223: 50.85s 7946us)(0xBAC) Texture Earth_6_e5734_n4194.dds loaded. (1024 x 1024)
(1224: 50.85s 3144us)(0xBAC) Texture Earth_6_e5734_n4195.dds loaded. (1024 x 1024)
(1225: 50.85s 3080us)(0xBAC) Texture Earth_6_e5735_n4192.dds loaded. (1024 x 1024)
(1226: 50.86s 3137us)(0xBAC) Texture Earth_6_e5735_n4193.dds loaded. (1024 x 1024)
(1227: 50.86s 3012us)(0xBAC) Texture Earth_6_e5735_n4194.dds loaded. (1024 x 1024)
(1228: 50.86s 3193us)(0xBAC) Texture Earth_6_e5735_n4195.dds loaded. (1024 x 1024)
(1229: 50.86s 3157us)(0xBAC) Texture Earth_6_e5735_n4195.dds loaded. (1024 x 1024)
(1230: 50.87s 3033us)(0xBAC) Texture Earth_6_e5751_n4151.dds loaded. (1024 x 1024)
(1231: 50.87s 3136us)(0xBAC) Texture Earth_6_e5751_n4152.dds loaded. (1024 x 1024)
(1232: 50.87s 2993us)(0xBAC) Texture Earth_6_e5751_n4153.dds loaded. (1024 x 1024)
(1233: 50.88s 3147us)(0xBAC) Texture Earth_6_e5752_n4151.dds loaded. (1024 x 1024)
(1234: 50.89s 7915us)(0xBAC) Texture Earth_6_e5752_n4152.dds loaded. (1024 x 1024)
(1235: 50.89s 3146us)(0xBAC) Texture Earth_6_e5752_n4153.dds loaded. (1024 x 1024)
(1236: 50.89s 2969us)(0xBAC) Texture Earth_6_e5753_n4151.dds loaded. (1024 x 1024)
(1237: 50.90s 8079us)(0xBAC) Texture Earth_6_e5753_n4152.dds loaded. (1024 x 1024)
(1238: 50.90s 3126us)(0xBAC) Texture Earth_6_e5753_n4153.dds loaded. (1024 x 1024)
(1239: 50.91s 3030us)(0xBAC) Texture Earth_6_e5754_n4151.dds loaded. (1024 x 1024)
(1240: 50.91s 7985us)(0xBAC) Texture Earth_6_e5754_n4152.dds loaded. (1024 x 1024)
(1241: 50.92s 3092us)(0xBAC) Texture Earth_6_e5754_n4153.dds loaded. (1024 x 1024)
(1242: 50.92s 2971us)(0xBAC) Texture Earth_6_e5754_n4154.dds loaded. (1024 x 1024)
(1243: 50.92s 2972us)(0xBAC) Texture Earth_6_e5755_n4151.dds loaded. (1024 x 1024)
(1244: 50.93s 3180us)(0xBAC) Texture Earth_6_e5755_n4152.dds loaded. (1024 x 1024)
(1245: 50.93s 7989us)(0xBAC) Texture Earth_6_e5755_n4153.dds loaded. (1024 x 1024)
(1246: 50.94s 2994us)(0xBAC) Texture Earth_6_e5755_n4154.dds loaded. (1024 x 1024)
(1247: 50.94s 3202us)(0xBAC) Texture Earth_6_e5756_n4152.dds loaded. (1024 x 1024)
(1248: 50.94s 2988us)(0xBAC) Texture Earth_6_e5756_n4153.dds loaded. (1024 x 1024)
(1249: 50.95s 3108us)(0xBAC) Texture Earth_6_e5756_n4154.dds loaded. (1024 x 1024)
(1250: 50.95s 3214us)(0xBAC) Texture Earth_6_e5757_n4153.dds loaded. (1024 x 1024)
(1251: 50.96s 5543us)(0xBAC) Texture Earth_6_e5757_n4154.dds loaded. (1024 x 1024)
(1252: 50.96s 7828us)(0xBAC)[WARNING] Small Bounding Sphere rad=0 nVtx=28
(1253: 50.96s 7876us)(0xBAC) New Base Visual(0x1983160) Baikonur hBase=0x2118FC8, nsbs=1, nsas=0
(1254: 50.96s 61us)(0xBAC)[WARNING] Small Bounding Sphere rad=0 nVtx=28
(1255: 50.96s 82us)(0xBAC) New Base Visual(0xAD52678) Kapustin Yar hBase=0x21A1008, nsbs=1, nsas=0
(1256: 50.96s 1569us)(0xBAC)[WARNING] Small Bounding Sphere rad=0 nVtx=28
(1257: 51.02s 59536us)(0xBAC) New Base Visual(0xAD53BA8) Krayniy hBase=0x21A16D8, nsbs=6, nsas=100
(1258: 51.02s 1852us)(0xBAC) Texture D3D9RwyLight.dds loaded. (128 x 128)
(1259: 51.02s 945us)(0xBAC) Texture D3D9RwyLight.dds loaded. (128 x 128)
(1260: 51.02s 1375us)(0xBAC) Texture D3D9RwyLight.dds loaded. (128 x 128)
(1261: 51.02s 44us)(0xBAC)[WARNING] Small Bounding Sphere rad=0 nVtx=28
(1262: 51.03s 65us)(0xBAC) New Base Visual(0xAD99150) Plesetsk hBase=0x21A1A40, nsbs=1, nsas=0
(1263: 51.03s 3us)(0xBAC) New Base Visual(0xAD99390) Soyuz Landing Site hBase=0x21A2580, nsbs=0, nsas=0
(1264: 51.20s 169637us)(0xBAC) Reading Tile Data for Earth_tile.bin
(1265: 51.39s 234us)(0xBAC) Reading Tile Data for Moon_tile.bin
(1266: 66.94s 59us)(0xBAC) Deleting Surface 0x19A9008 (???) (380,380)...
(1267: 66.94s 19us)(0xBAC) Deleting Surface 0x19A90E0 (???) (380,380)...
(1268: 66.94s 67us)(0xBAC) Deleting Surface 0x19B4110 (???) (380,380)...
(1269: 66.94s 16us)(0xBAC) Deleting Surface 0x19B41E8 (???) (380,380)...
(1270: 66.94s 13us)(0xBAC) Deleting Surface 0x19A8DF0 (Cockpit\Glasspit_red.dds) (512,256)...
(1271: 66.94s 1205us)(0xBAC) Texture Cockpit\Glasspit_red.dds loaded. (512 x 256)
(1272: 66.94s 117us)(0xBAC) D3D9ClientSurface: New Surface(0x19B41E8) w=380, h=380
(1273: 66.94s 117us)(0xBAC) D3D9ClientSurface: New Texture(0x19B4110) w=380, h=380
(1274: 66.95s 1283us)(0xBAC) Surface 0x19B41E8 (???) converted into a GDI surface (380,380)
(1275: 66.98s 154us)(0xBAC) D3D9ClientSurface: New Surface(0x19A90E0) w=380, h=380
(1276: 66.98s 124us)(0xBAC) D3D9ClientSurface: New Texture(0x19A9008) w=380, h=380
(1277: 66.98s 1465us)(0xBAC) Surface 0x19A90E0 (???) converted into a GDI surface (380,380)
(1278: 67.01s 360us)(0xBAC)[ERROR] Orbiter Version 100830
(1279: 67.01s 870us)(0xBAC)[ERROR] D3D9Client Build [Mar 11 2012]
(1280: 67.01s 1198us)(0xBAC)[ERROR] Exception Code=0xC0000005, Address=0x0159A72C
(1281: 67.01s 1648us)(0xBAC)[ERROR] EAX=0x00000000 EBX=0x00000000 ECX=0x01B35CC4 EDX=0x00000000 ESI=0x00000000 EDI=0x7E3AA340 EBP=0x009FFE68 ESP=0x009FFE08 EIP=0x0159A72C
(1282: 67.01s 2839us)(0xBAC)[ERROR] G:\Orbiter 2010 P1 - Main\Modules\Plugin\D3D9Client.dll EntryPoint=0x015D266D, Base=0x01590000, Size=1294336
(1283: 67.01s 5832us)(0xBAC)[ERROR] Exception in clbkRenderScene()
(1284: 67.11s 99025us)(0xBAC) ORBITER SCENARIO SAVED SUCCESSFULLY (D3D9ClientRescue.scn)
(1285: 67.11s 99768us)(0xBAC)[ERROR] !!! Abnormal Program Termination !!!
(1286: 67.11s 101349us)(0xBAC) --------------ExitModule------------
(1287: 67.11s 101701us)(0xBAC) Log Closed

A D3D9 Rescue Scenario was generated :

Code:
BEGIN_DESC
Contains the current simulation state before shutdown due to an unexpected error
END_DESC

BEGIN_ENVIRONMENT
  System Sol
  Date MJD 58282.2420204599
END_ENVIRONMENT

BEGIN_FOCUS
  Ship Fregat
END_FOCUS

BEGIN_CAMERA
  TARGET Fregat
  MODE Cockpit
  FOV 40.00
END_CAMERA

BEGIN_HUD
  TYPE Surface
END_HUD

BEGIN_MFD Left
  TYPE Map
  REF Moon
  POS 0.00 0.00
END_MFD

BEGIN_MFD Right
  TYPE OAlign
  REF Moon
END_MFD

BEGIN_SHIPS
KVTK-1:Proton_LV\KVTK
  STATUS Orbiting Sun
  RPOS -18663666123.06 -236145441.97 -155737081779.36
  RVEL 29376.126 -41.201 -5907.344
  AROT -159.33 40.71 -51.83
  AFCMODE 7
  NAVFREQ 0 0
  =========== VESSEL3M vars 
  =========== KVTK vars 
  IGNITE 0 1 0
  OPERATE 0.0000 0.0000
  DUMP 0 0
END
Fregat:r7_SZ\Fregat
  STATUS Orbiting Moon
  RPOS -924634.01 80407.03 -1917262.80
  RVEL 1290.062 -469.007 -647.224
  AROT 32.79 -23.63 -140.68
  RCSMODE 0
  AFCMODE 7
  PRPLEVEL 0:0.668289 1:0.809422
  NAVFREQ 0 0
  =========== VESSEL2M vars 
  FOCUS 1
  CAMERA 1
  =========== Fregat vars 
  ADAPTER_MESHNAME Proton_LV\Fregat_APAS_adapter
  IGNITE 0 1 3
  OPERATE 1478759.8028 0.0000 0.0000
  FUEL 3575.3479 68.8009
END
LM3:RLM
  STATUS Orbiting Moon
  RPOS 1037676.45 562735.69 -1495365.96
  RVEL 1323.258 -280.547 852.205
  AROT 75.62 -69.15 36.76
  VROT -0.06 -0.07 -0.02
  AFCMODE 7
  PRPLEVEL 0:1.000000 1:1.000000 2:1.000000 3:0.879988 4:0.505610 5:0.761855 6:0.834380 7:0.478816 8:1.000000 10:1.000000 12:1.000000
  NAVFREQ 0 1
  ANT 0 0.0000
  HATCH 0 0.0000
  GEAR 1 1.0000
  SHUTTER 0 0.0000
  LANDED 0
  PRESSURE 300.0000
  CO2 0.0000
  CABIN TEMP 293.5255
  FAN 0
  COMPUTER 0
  COOLING 0
  AUTOCOOL 1
  AUTOHEAT 1
  INERTIAL 1
  SUITS 0
  CRASHED 0
  HUDMODE 1
  LAUNCH 0
  DM_FIRED 2
  DM_RESTART 4
  DM_SEP 1
  DONE11 0
  DONE29 0
  CREW HEALTH 0.000000 0.000000
END
ISS:ProjectAlpha_ISS
  STATUS Orbiting Earth
  RPOS 3257802.60 -5826168.58 856103.82
  RVEL -3392.611 -888.550 6844.694
  AROT -83.50 -30.81 -156.23
  VROT 0.06 -0.04 0.03
  AFCMODE 7
  IDS 0:588 100 1:586 100 2:584 100 3:582 100 4:580 100
  NAVFREQ 0 0
  XPDR 466
END
KVTK-2:Proton_LV\KVTK
  STATUS Orbiting Moon
  RPOS 1191631.28 526282.45 -1385982.73
  RVEL 1226.348 -326.886 975.560
  AROT -14.93 -7.16 -99.37
  VROT 0.07 -0.01 0.00
  RCSMODE 2
  AFCMODE 7
  PRPLEVEL 0:0.033429
  NAVFREQ 0 0
  =========== VESSEL3M vars 
  CAMERA 1
  =========== KVTK vars 
  ADAPTER_MESHNAME Proton_LV\KVTK_adapter
  IGNITE 0 1 4
  OPERATE 0.0000 0.0000
  DUMP 0 0
  ADP 0 0
END
KVTK-3:Proton_LV\KVTK
  STATUS Orbiting Earth
  RPOS 3408484.50 1375782.51 5372657.86
  RVEL -6250.192 3691.608 2969.420
  AROT 32.19 13.94 111.55
  AFCMODE 7
  PRPLEVEL 0:0.944242 1:0.466854
  NAVFREQ 0 0
  =========== VESSEL3M vars 
  CAMERA 1
  =========== KVTK vars 
  ADAPTER_MESHNAME Proton_LV\KVTK_adapter
  IGNITE 0 1 1
  OPERATE 0.0000 0.0000
  DUMP 0 0
  ADP 0 0
END
LC81:Proton_LV\LC81
  STATUS Landed Earth
  POS 62.9869700 46.0708400
  HEADING 210.11
  AFCMODE 7
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0
  PAD1 1.0000 1.0000 1.0000
  PAD2 1 1 1
  PAD3 0 0 0
  TIMER -0.0152 -0.0067 -0.0052
  TRG 1 1 1 0 1
END
LM3-BlockDML:BlockDML
  STATUS Orbiting Earth
  RPOS 5734383.16 -3697838.20 -2702273.99
  RVEL 4734.506 675.539 5914.774
  AROT -117.93 4.13 86.32
  AFCMODE 7
  NAVFREQ 0 0
END
SoyuzTMA-L:ISSR\SouyzTMA
  STATUS Landed Earth
  POS -96.2167989 0.7883061
  HEADING 0.00
  ATTACHED 0:0,BlockI
  AFCMODE 7
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0
  CAM 0 0.0000 1
  SOL_DEP 0 0.0000 1
  ENG_COV 0 0.0000 1 0 0
  VKA 0 0.0000 1
  PROBE 0 0.0000 1 0.0000
  LIGHT 1 0
  BATTERY 15721.4757 37.4321
  SHOWDATA 1
  DEPLOY 60.0000
  TRACK 0
  INIT 1
  TARGET 
  CURDOCK 0
  CMST 0
  DETACH 0
  DEPRESS 0 0.0000
  IMP 3
  LUNAR 
END
SAS:r7_SZ\LES
  STATUS Landed Earth
  PRPLEVEL 0:1.000000
  =========== VESSEL2M vars 
  =========== LES vars 
END
Fairing1:r7_SZ\TMA_fairing
  STATUS Landed Earth
  PRPLEVEL 0:1.000000
  =========== VESSEL2M vars 
  FTYPE 0
  MESHNAME1 r7_SZ\SF12
  MESHNAME2 r7_SZ\SF02
  MASS 586.000000
END
Fairing2:r7_SZ\TMA_fairing
  STATUS Landed Earth
  PRPLEVEL 0:1.000000
  =========== VESSEL2M vars 
  FTYPE 0
  MESHNAME1 r7_SZ\SF11
  MESHNAME2 r7_SZ\SF01
  MASS 586.000000
END
BlockI:r7_SZ\BlockI
  STATUS Landed Earth
  PRPLEVEL 0:1.000000
  =========== VESSEL2M vars 
  =========== BLOCK I vars 
  STATEFLAGS 16
  PAYLOAD SoyuzTMA-L
  PREF 0.000000 0.000000 -3.000000
  FAIRING1 Fairing2
  FREF1 -1.245000 0.000000 -3.000000
  FROT1 0.000000 -1.000000 0.000000
  FAIRING2 Fairing1
  FREF2 -1.245000 -0.005000 -3.000000
  FROT2 0.000000 1.000000 0.000000
  LES SAS
END
BlockB:r7_SZ\BlockBD
  STATUS Landed Earth
  PRPLEVEL 0:0.837698
  =========== VESSEL2M vars 
  FLAGS_MI 1
  FLAGS_MD_1 91.988037
  =========== BLOCK BD vars 
  BODY_MESHNAME r7_SZ\BlockBD
END
BlockV:r7_SZ\BlockBD
  STATUS Landed Earth
  PRPLEVEL 0:0.837698
  =========== VESSEL2M vars 
  FLAGS_MI 1
  FLAGS_MD_1 91.988037
  =========== BLOCK BD vars 
  BODY_MESHNAME r7_SZ\BlockBD
END
BlockG:r7_SZ\BlockBD
  STATUS Landed Earth
  PRPLEVEL 0:0.837698
  =========== VESSEL2M vars 
  FLAGS_MI 1
  FLAGS_MD_1 91.988037
  =========== BLOCK BD vars 
  BODY_MESHNAME r7_SZ\BlockBD
END
BlockD:r7_SZ\BlockBD
  STATUS Landed Earth
  PRPLEVEL 0:0.837698
  =========== VESSEL2M vars 
  FLAGS_MI 1
  FLAGS_MD_1 91.988037
  =========== BLOCK BD vars 
  BODY_MESHNAME r7_SZ\BlockBD
END
Launcher:r7_SZ\BlockA
  STATUS Landed Earth
  PRPLEVEL 0:1.000000
  =========== VESSEL2M vars 
  FLAGS_MI 1
  FLAGS_MD_1 132.079073
  =========== BLOCK A vars 
  ADAPTER_MESHNAME r7_SZ\BlockIAdapter
  BODY_MESHNAME r7_SZ\BlockA
  FLAGS_AI_1 2
  PAYLOAD BlockI
  PREF 0.000000 0.000000 -4.250000
  BLOCK_B BlockB
  BLOCK_V BlockV
  BLOCK_G BlockG
  BLOCK_D BlockD
END
Launchpad:r7_SZ\Launchpad
  STATUS Landed Earth
  PRPLEVEL 0:1.000000
  =========== VESSEL2M vars 
  =========== LAUNCHPAD vars 
  FUELING_MAST 1.000000
  BOOMS_MESHNAME r7_SZ\BoomS
  CABLEMAST_MESHNAME r7_SZ\CableMast
  TABLETOP_MESHNAME r7_SZ\TableTop1Late
  LAUNCHER Launcher
  ORBIT 196.000000 200.000000 51.600000
  LIGHT 600.0000
END
UMmu_Capt-Maj.A.A._Skvortsov:UMmu
  STATUS Landed Earth
  POS 63.3391096 45.9203503
  HEADING 91.79
  RCSMODE 0
  AFCMODE 7
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0
  XPDR 130
  O2Level 98.1458
  O2MaxLevel 100.0000
  CardiacBeat 65.0000
  Age 52
  HudColor 1
  Chute 0
  PressureDeath 0
  MeshName UMmu\UMMuX02X
  crewweight 78.5623
END
UMmu_Eng-Cosm.Y.O._Serova:UMmu
  STATUS Landed Earth
  POS 63.3391124 45.9203634
  HEADING 92.20
  RCSMODE 0
  AFCMODE 7
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0
  XPDR 140
  O2Level 98.1458
  O2MaxLevel 100.0000
  CardiacBeat 65.0000
  Age 42
  HudColor 1
  Chute 0
  PressureDeath 0
  MeshName UMmu\UMMuTechX02X
  crewweight 59.3645
END
UMmu_Vip-John_Smith:UMmu
  STATUS Landed Earth
  POS 63.3391106 45.9203375
  HEADING 91.84
  RCSMODE 0
  AFCMODE 7
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0
  XPDR 150
  O2Level 98.1458
  O2MaxLevel 100.0000
  CardiacBeat 65.0000
  Age 48
  HudColor 1
  Chute 0
  PressureDeath 0
  MeshName UMmu\UMMuX02X
  crewweight 56.1942
END
END_SHIPS

BEGIN_ExtMFD
END

Edit : a note about "KVTK-1" : the coordinates are no anomaly. It flew-by the Moon 1 month earlier and has escaped Earth-Moon SOI.
 
Last edited:

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,669
Reaction score
798
Points
128
Can you reproduce the CTD with this build and post the last few lines from the Log. Remember to activate the debug build from the modules tab.

EDIT: I think I found it already, so, let's forget this.
 
Last edited:

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,669
Reaction score
798
Points
128
D3D9Client RC44

Here is RC44 for testing. I decided to release what I got right now before starting to work with a new features. RC44 should be pretty stable.

- Saturn ring shadow implemented
- Celestial body dots albedo set
- VASI is visible during daytime
- sun light/runway lights bug related to sim time reduction in scenario editor fixed.
- Several bugs are fixed.

- Saturn ring clipping reduced (not fixed). A fix would require a fundamental rewrite of the rendering code. I already found a high resolution texture for the rings. It's a 1 by 11000 pixels (33kb uncompressed). It should give a pretty good results.

Package contains a binary for Orbiter 2010-P1
 
Last edited:

kuddel

Donator
Donator
Joined
Apr 1, 2008
Messages
2,064
Reaction score
508
Points
113
Here is RC44...
Hi jarmonik,
you didn't change anything in the source[1], only the Module (dll) changed. Is there something I should also incooperate in my merged version for you?
I've found one or two issues myself, but when the source is not RC44, I think it dosn't make sense to post 'em.

I'll keep my complete package for a while ;) There's no hurry for it. In the meantime I might be able to add some more features.

Attached you will find the changes so far. Included are also the changes I've made in "D3D9Client.cpp" (instance creation and destruction), "Scene.cpp" (usage example in comments [search fo 'Kuddel']) and "D3D9Client.h" ( oapiExtension Member)
So you can familiarize yourself with it and add it to your Solution/Project. I am using VS2010, so my Solution/Project might be added later. Feel free to insert it in any upcoming release. You might be able to see any further changes by me more easily this way.

/Kuddel

[1] compared to the removed RC43
 

Attachments

  • OapiExtension_RC43based.zip
    33.5 KB · Views: 13
Last edited:
Top