Audio fails

Discussion and announcements regarding the Mac port… er, original version of Oolite.

Moderators: another_commander, winston

User avatar
bungi
Above Average
Above Average
Posts: 25
Joined: Sun Oct 18, 2009 12:17 pm

Re: Audio fails

Post by bungi »

not sure if anyone else is still looking at this. I'm back looking at Oolite after a long hiatus with a job where I couldn't contribute here (sorry, I've now left that role).
I've updated to the latest Oolite, and also migrated onto a top spec iMac So resources and hardware *should* not be an issue. What I'm seeing is that the audio is dying when there are too many audio events in rapid succession. Usually for me this is in the middle of a dogfight with a lot of pirates, and it is pretty much guaranteed to get me killed because audio cues are important in the way I fight.
That aside, I've just managed to kill the audio on the trading board, by whizzing through the small items and adding them one by one to my stash. This is basically hitting down and right arrows in rapid succession. Suddenly I got a missile strike crunch noise and the audio died.
I'm wondering if this is a threading bug somewhere. Always close to impossible to debug. The reason I'm wondering is I've installed Telescope, and I'm finding it flaky in systems where I've been fighting for a while, and so a lot of ships have come and gone (been blown away). Now this could be a Telescope bug, not sure, I'm wondering though whether the audio overload is related. Another possible symptom is that I keep getting hit by missiles in combat which I'm not getting a launch sound, or HUD indication of, and no this isn't because I'm dogfighting up close and you accept fast missile launches and hits, this is at long range with no ship inside 10k. Given I have an iron ass, this is usually annoying, but it has lead to me getting toasted a few times, which is not something that happened very often when I was playing before.

Given I have some time on my hands, does someone want to point me at some debug log settings, and get me started with the code debugging? No promises, I'm a software engineer, but I've not bothered with Objective C much. I have had a lot of experience with highly threaded event loops on occasion though, and debugging/testing them.
another_commander
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 6554
Joined: Wed Feb 28, 2007 7:54 am

Re: Audio fails

Post by another_commander »

Not a Mac user, but hopefully this can get you started.

The source sound files you can take a look at are:
OOOpenALController.m
OOMusicController.m
OOSoundSource.m
OOSoundSourcePool.m
OOALMusic.m
OOALSound.m
OOALSoundChannel.m
OOALSoundMixer.m
OOALSoundDecoder.m
OOALBufferedSound.m
OOALStreamedSound.m

You can change this setting in logcontrol.plist file below, in order to get the full sound events logging:
$soundDebug = no; // <------ change this to yes

I would also recommend running Doxygen on the source's root folder so that you can get the graphs of relationships between the sound classes; this might also be of some extra help in figuring things out. This issue has been reported in the past and seems to have been bothering Macs for a while, so I hope that it gets a resolution. Good luck!
User avatar
bungi
Above Average
Above Average
Posts: 25
Joined: Sun Oct 18, 2009 12:17 pm

Re: Audio fails

Post by bungi »

thanks. I'll give it a go, but about to go on holiday for a couple of weeks, so don't hold your breath. I have ideas though, and the code is now cloned.
User avatar
Cholmondely
Archivist
Archivist
Posts: 5004
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Audio fails

Post by Cholmondely »

Just to mention that I've been having similar issues (not that I ever fight anything - I just revolve and leg it for the nearest exit - and then fantasise about marmalising the misbegotten sons of .....).
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
Bogatyr
Deadly
Deadly
Posts: 230
Joined: Sun Feb 24, 2013 11:52 am

Re: Audio fails

Post by Bogatyr »

This happens to be every session on my mac sooner or later, especially when a lot of sounds are used together, like in battle. Sometimes the sound gets corrupted and there's a permanent background hum/buzz, but most often it just cuts out entirely. One potential workaround might be to periodically just reset the sound on a mac -- when this happens in the middle of a huge furball, it's really annoying, and often deadly -- I rely on audio cues for missile launches, laser hits, etc. The only "fix" I've found is exiting and restarting, but without arbitrary save points (stations), this is is not a very good solution.
User avatar
Cholmondely
Archivist
Archivist
Posts: 5004
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Audio fails

Post by Cholmondely »

For the record:

Related but different (iTunes integration):

From my latest.log:

Code: Select all

04:20:40.620 [sound.music.iTunesIntegration.failed]: ootunes returned :{
    NSAppleScriptErrorBriefMessage = "Expected \U201cinto\U201d, \U201cto\U201d, etc. but found \U201c\"\U201d.";
    NSAppleScriptErrorMessage = "Expected \U201cinto\U201d, \U201cto\U201d, etc. but found \U201c\"\U201d.";
    NSAppleScriptErrorNumber = "-2741";
    NSAppleScriptErrorRange = "NSRange: {77, 1}";
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
User avatar
Cholmondely
Archivist
Archivist
Posts: 5004
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Audio fails

Post by Cholmondely »

another_commander wrote: Mon Feb 03, 2020 8:06 am
Not a Mac user, but hopefully this can get you started.

The source sound files you can take a look at are:
OOOpenALController.m
OOMusicController.m
OOSoundSource.m
OOSoundSourcePool.m
OOALMusic.m
OOALSound.m
OOALSoundChannel.m
OOALSoundMixer.m
OOALSoundDecoder.m
OOALBufferedSound.m
OOALStreamedSound.m

You can change this setting in logcontrol.plist file below, in order to get the full sound events logging:
$soundDebug = no; // <------ change this to yes

I would also recommend running Doxygen on the source's root folder so that you can get the graphs of relationships between the sound classes; this might also be of some extra help in figuring things out. This issue has been reported in the past and seems to have been bothering Macs for a while, so I hope that it gets a resolution. Good luck!
If you can tell me how to do any of this, I'll be more than happy to give it a go.

Just got this:

Code: Select all

10:05:50.339 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:50.345 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:50.345 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:244): Error -1 playing source
10:05:50.350 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:50.350 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:244): Error -1 playing source
10:05:58.346 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:58.411 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:58.411 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:244): Error -1 playing source
10:05:58.529 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:58.529 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:244): Error -1 playing source
10:05:58.652 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:58.652 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:244): Error -1 playing source
10:05:58.819 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:58.819 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2424 (0x600001d05d6c), _buffer: 0 (0x600001d05d60))
10:05:58.927 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:58.927 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2423 (0x600001d05d2c), _buffer: 0 (0x600001d05d20))
10:05:59.026 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:59.026 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2422 (0x600001d05cec), _buffer: 0 (0x600001d05ce0))
10:05:59.158 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:59.158 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2421 (0x600001d05cac), _buffer: 0 (0x600001d05ca0))
10:05:59.286 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:05:59.286 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2420 (0x600001d05c6c), _buffer: 0 (0x600001d05c60))
10:06:09.572 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:09.572 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:244): Error -1 playing source
10:06:09.727 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:09.727 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2419 (0x600001d05c2c), _buffer: 0 (0x600001d05c20))
10:06:09.888 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:09.888 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2418 (0x600001d05bec), _buffer: 0 (0x600001d05be0))
10:06:10.057 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:10.057 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2417 (0x600001d05bac), _buffer: 0 (0x600001d05ba0))
10:06:10.277 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:10.278 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2416 (0x600001d05b6c), _buffer: 0 (0x600001d05b60))
10:06:10.372 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:10.372 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2415 (0x600001d05b2c), _buffer: 0 (0x600001d05b20))
10:06:10.528 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:10.528 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2414 (0x600001d05aec), _buffer: 0 (0x600001d05ae0))
10:06:10.692 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:10.693 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2413 (0x600001d05aac), _buffer: 0 (0x600001d05aa0))
10:06:10.877 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:10.877 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2412 (0x600001d05a6c), _buffer: 0 (0x600001d05a60))
10:06:11.042 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:11.042 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2411 (0x600001d05a2c), _buffer: 0 (0x600001d05a20))
10:06:11.212 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:11.213 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2410 (0x600001d059ec), _buffer: 0 (0x600001d059e0))
10:06:11.363 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:11.363 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2409 (0x600001d059ac), _buffer: 0 (0x600001d059a0))
10:06:11.527 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:11.527 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2408 (0x600001d0596c), _buffer: 0 (0x600001d05960))
10:06:11.677 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:11.677 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2407 (0x600001d0592c), _buffer: 0 (0x600001d05920))
10:06:11.843 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:11.843 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2406 (0x600001d058ec), _buffer: 0 (0x600001d058e0))
10:06:12.012 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:12.012 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2405 (0x600001d058ac), _buffer: 0 (0x600001d058a0))
10:06:12.177 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:12.177 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2404 (0x600001d0586c), _buffer: 0 (0x600001d05860))
10:06:12.412 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:12.412 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2403 (0x600001d0582c), _buffer: 0 (0x600001d05820))
10:06:13.602 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:13.602 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2402 (0x600001d057ec), _buffer: 0 (0x600001d057e0))
10:06:21.582 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:21.582 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2401 (0x600001d057ac), _buffer: 0 (0x600001d057a0))
10:06:22.231 [sound.load.error] -[OOALBufferedSound soundBuffer] (OOALBufferedSound.m:87): Could not create OpenAL buffer
10:06:22.232 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:234): Error 4294967246 queueing buffers (_source: 2400 (0x600001d0572c), _buffer: 0 (0x600001d05720))
10:06:42.374 [StationDockControl] GlobalLog (OOJSGlobal.m:266): !!ERROR: Unrecognised Auto AI Script: In-System Trader AI
10:09:45.735 [sound.load.error] -[OOALStreamedSound soundBuffer] (OOALStreamedSound.m:110): Could not create OpenAL buffer
10:09:45.736 [ov.debug] -[OOSoundChannel enqueueBuffer:] (OOALSoundChannel.m:244): Error -1 playing source
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
another_commander
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 6554
Joined: Wed Feb 28, 2007 7:54 am

Re: Audio fails

Post by another_commander »

Cholmondely wrote: Mon Jun 20, 2022 1:46 pm
another_commander wrote: Mon Feb 03, 2020 8:06 am

You can change this setting in logcontrol.plist file below, in order to get the full sound events logging:
$soundDebug = no; // <------ change this to yes
If you can tell me how to do any of this, I'll be more than happy to give it a go.
Try the logcontrol edit above. The other suggestions were made because bungi had mentioned his software engineering background.
User avatar
Cholmondely
Archivist
Archivist
Posts: 5004
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Audio fails

Post by Cholmondely »

bungi wrote: Mon Feb 03, 2020 3:43 pm
thanks. I'll give it a go, but about to go on holiday for a couple of weeks, so don't hold your breath. I have ideas though, and the code is now cloned.
Hope the holiday was good!

Any chance of some advice about tracing the sound problem on the AppleMac?
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
User avatar
Cholmondely
Archivist
Archivist
Posts: 5004
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Audio fails

Post by Cholmondely »

another_commander wrote: Mon Jun 20, 2022 4:50 pm
Cholmondely wrote: Mon Jun 20, 2022 1:46 pm
another_commander wrote: Mon Feb 03, 2020 8:06 am

You can change this setting in logcontrol.plist file below, in order to get the full sound events logging:
$soundDebug = no; // <------ change this to yes
If you can tell me how to do any of this, I'll be more than happy to give it a go.
Try the logcontrol edit above...
I got this:

Code: Select all

Opening log for Oolite version 1.90 (x86-64) under Mac OS X Version 10.15.3 (Build 19D2064) at 2022-06-20 20:35:35 +0000.
Machine type: MacBookAir9,1, 8192 MiB memory, 2 (4 logical) x x86 (family 0x38435547) @ 1100 MHz.
Build options: OpenAL, new planets.

Note that the contents of the log file can be adjusted by editing logcontrol.plist.

21:35:35.462 [dataCache.rebuild.pathsChanged] +[ResourceManager checkCacheUpToDateForPaths:] (ResourceManager.m:1156): Cache is stale (search paths have changed). Rebuilding from scratch.
21:35:35.804 [joystick.error.init] -[OOMacJoystickManager init] (OOMacJoystickManager.m:80): Cannot open HID manager; joystick support will not function.
21:35:35.805 [rendering.opengl.version] -[OOOpenGLExtensionManager reset] (OOOpenGLExtensionManager.m:221): OpenGL renderer version: 2.1.0 ("2.1 INTEL-14.4.26"). Vendor: "Intel Inc.". Renderer: "Intel(R) Iris(TM) Plus Graphics OpenGL Engine (1x6x8 (fused) LP".
21:35:35.805 [rendering.opengl.extensions] -[OOOpenGLExtensionManager reset] (OOOpenGLExtensionManager.m:222): OpenGL extensions (128):
GL_EXT_texture_compression_dxt1, GL_EXT_rescale_normal, GL_EXT_transform_feedback, GL_EXT_blend_func_separate, GL_EXT_framebuffer_sRGB, GL_ATI_texture_env_combine3, GL_ARB_draw_elements_base_vertex, GL_EXT_debug_label, GL_EXT_geometry_shader4, GL_EXT_secondary_color, GL_EXT_separate_specular_color, GL_EXT_shadow_funcs, GL_NV_texgen_reflection, GL_NV_blend_square, GL_ARB_texture_compression_rgtc, GL_EXT_stencil_wrap, GL_ARB_texture_env_crossbar, GL_EXT_framebuffer_blit, GL_ATI_separate_stencil, GL_APPLE_vertex_point_size, GL_EXT_texture_rectangle, GL_APPLE_specular_vector, GL_EXT_packed_depth_stencil, GL_EXT_blend_color, GL_ARB_fragment_program_shadow, GL_EXT_texture_env_add, GL_EXT_provoking_vertex, GL_EXT_texture_array, GL_ARB_texture_env_combine, GL_ARB_point_sprite, GL_ARB_multisample, GL_EXT_framebuffer_object, GL_ARB_framebuffer_sRGB, GL_EXT_texture_lod_bias, GL_APPLE_pixel_buffer, GL_ARB_vertex_program, GL_EXT_bgra, GL_APPLE_fence, GL_APPLE_ycbcr_422, GL_EXT_timer_query, GL_EXT_vertex_array_bgra, GL_ARB_depth_clamp, GL_IBM_rasterpos_clip, GL_ARB_pixel_buffer_object, GL_SGIS_generate_mipmap, GL_EXT_framebuffer_multisample_blit_scaled, GL_ARB_shader_texture_lod, GL_ARB_texture_float, GL_ARB_texture_rectangle, GL_ARB_vertex_shader, GL_NV_texture_barrier, GL_ARB_provoking_vertex, GL_ARB_texture_env_add, GL_APPLE_object_purgeable, GL_ARB_texture_env_dot3, GL_APPLE_rgb_422, GL_NV_depth_clamp, GL_ARB_texture_mirrored_repeat, GL_ARB_texture_cube_map, GL_APPLE_element_array, GL_ATI_texture_float, GL_ARB_window_pos, GL_ARB_sync, GL_ARB_vertex_buffer_object, GL_APPLE_texture_range, GL_NV_conditional_render, GL_EXT_stencil_two_side, GL_ARB_texture_compression, GL_ARB_instanced_arrays, GL_EXT_blend_minmax, GL_ARB_texture_border_clamp, GL_EXT_draw_buffers2, GL_ARB_shading_language_100, GL_EXT_blend_equation_separate, GL_ARB_vertex_blend, GL_EXT_blend_subtract, GL_EXT_packed_float, GL_APPLE_aux_depth_stencil, GL_APPLE_row_bytes, GL_NV_light_max_exponent, GL_EXT_abgr, GL_EXT_texture_filter_anisotropic, GL_ARB_vertex_array_bgra, GL_ARB_draw_buffers, GL_ARB_transpose_matrix, GL_ARB_color_buffer_float, GL_EXT_gpu_program_parameters, GL_APPLE_client_storage, GL_ARB_texture_non_power_of_two, GL_ARB_multitexture, GL_EXT_gpu_shader4, GL_APPLE_flush_render, GL_ARB_framebuffer_object, GL_APPLE_vertex_program_evaluators, GL_APPLE_transform_hint, GL_EXT_texture_compression_s3tc, GL_APPLE_flush_buffer_range, GL_EXT_texture_integer, GL_SGIS_texture_edge_clamp, GL_NV_fog_distance, GL_ARB_occlusion_query, GL_ARB_fragment_shader, GL_ARB_texture_rg, GL_ARB_fragment_program, GL_ARB_seamless_cube_map, GL_ARB_shader_objects, GL_EXT_draw_range_elements, GL_APPLE_vertex_array_object, GL_ARB_depth_texture, GL_EXT_texture_sRGB, GL_ARB_half_float_vertex, GL_APPLE_vertex_array_range, GL_ARB_shadow, GL_EXT_multi_draw_arrays, GL_ARB_half_float_pixel, GL_APPLE_packed_pixels, GL_ARB_point_parameters, GL_EXT_debug_marker, GL_EXT_texture_sRGB_decode, GL_EXT_clip_volume_hint, GL_SGIS_texture_lod, GL_EXT_fog_coord, GL_EXT_texture_shared_exponent, GL_ATI_texture_mirror_once, GL_APPLE_float_pixels, GL_EXT_framebuffer_multisample, GL_ARB_depth_buffer_float, GL_ARB_draw_instanced
21:35:35.878 [rendering.opengl.shader.support] -[OOOpenGLExtensionManager reset] (OOOpenGLExtensionManager.m:256): Shaders are supported.
21:35:35.878 [speech.synthesis] -[Universe initWithGameView:] (Universe.m:297): Spoken messages are off.
21:35:35.949 [dataCache.rebuild.pathsChanged] +[ResourceManager checkCacheUpToDateForPaths:] (ResourceManager.m:1156): Cache is stale (search paths have changed). Rebuilding from scratch.
21:35:35.959 [searchPaths.dumpAll] +[ResourceManager logPaths] (ResourceManager.m:2240): Resource paths: 
    ~/Desktop/Oolite/  Oolite 1.90.app/Contents/Resources
    ~/Library/Application Support/Oolite/Managed AddOns
    ~/Library/Application Support/Oolite/AddOns
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.SolarFlares.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.market_observer.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.Library.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cag.station_options.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.ILS.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/FontDangerousSquare.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.NoMarketNotification.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.LogEvents.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.systemfeatures.sunspots.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.gsagostinho.systemfeatures.rings.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.CombatMFD.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.TechnicalReferenceLibrary-1.0.1.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptMurphy.PoliceIFFScanner.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.cag.Telescope_Extender.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.AutoPrimeEquipment.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.market_inquirer.oxp
    ~/Library/Application Support/Oolite/Managed AddOns/Norby.cag.Telescope.2.11.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.BGS.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.Pagroove.BGSSoundset.oxz
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Ovvldc.Halsis2BGS.oxp
    ~/Library/Application Support/Oolite/AddOns/MilitaryTargettingSystemv1.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Murgh.prohip_xpat_b1_1024.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.phkb.XenonUI.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Pagroove.FamousPlanets.tweaked.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.CommonSenseOTB.SniperLock.oxp
    ~/Library/Application Support/Oolite/AddOns/Amber-Moon-Cronicles_0.9.oxp
    ~/Library/Application Support/Oolite/AddOns/Povray_Planets_Galaxy1_Textures_v1.1.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Okti.LongRangeScanner v0.3.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Murgh.wpb.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.zirael.UsefulMFDs.0.6.oxp
    ~/Library/Application Support/Oolite/AddOns/GalacticAlmanac0.7.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Pagroove.Superhub.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Gnievmir.VimanaHUD.tweaked.VimanaHUD.oxp
21:35:36.080 [speech.setup.begin] __29-[Universe initWithGameView:]_block_invoke (Universe.m:330): Starting to set up speech synthesizer.
21:35:36.080 [shipData.load.begin] +[OOShipRegistry(Singleton) allocWithZone:] (OOShipRegistry.m:1689): Loading ship data.
21:35:36.145 [shipData.load.error] -[OOShipRegistry(OODataLoader) canonicalizeAndTagSubentities:] (OOShipRegistry.m:970): ***** ERROR: the shipdata.plist entry "cb68_sodalite_station-riredi-coluber_no_beacon_version" has unresolved subentity cb68_sodalite_station-dock-riredi-coluber.
21:35:36.147 [shipData.load.error] -[OOShipRegistry(OODataLoader) canonicalizeAndTagSubentities:] (OOShipRegistry.m:970): ***** ERROR: the shipdata.plist entry "XarthBeacon" has unresolved subentity DHI_Nav_Buoy_Subentity.
21:35:36.147 [shipData.load.error] -[OOShipRegistry(OODataLoader) canonicalizeAndTagSubentities:] (OOShipRegistry.m:970): ***** ERROR: the shipdata.plist entry "XarthBeacof" has unresolved subentity DHI_Nav_Buoy_Subentity.
21:35:36.386 [speech.setup.end] __29-[Universe initWithGameView:]_block_invoke (Universe.m:332): Finished setting up speech synthesizer.
21:35:37.410 [startup.complete] -[GameController applicationDidFinishLaunching:] (GameController.m:269): ========== Loading complete in 1.84 seconds. ==========
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Touch Bar Backlight (primary usage 65280:15)
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 65280:11)
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Headset (primary usage 12:1)
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 1:6)
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 1:2)
21:35:37.530 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 65280:3)
21:35:37.531 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Ambient Light Sensor (primary usage 32:65)
21:35:37.531 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
21:35:37.531 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 65280:13)
21:35:37.531 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
21:35:37.697 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.765 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.770 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.775 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.808 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.812 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.815 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.820 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.825 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.830 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.839 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.850 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.863 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.870 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.875 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.885 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.890 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.898 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.905 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.916 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.920 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.925 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.935 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.940 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.948 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.955 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.963 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.968 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.969 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.975 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.979 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.985 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.990 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:37.997 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.000 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.005 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.014 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.020 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.025 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.035 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.040 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.048 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.055 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.064 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.070 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.075 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.085 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.090 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.098 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.105 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.115 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.119 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.125 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.133 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.140 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.147 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.149 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.155 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.163 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.170 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.175 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.180 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.185 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.190 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.199 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.205 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.216 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.219 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.225 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.235 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.240 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.247 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.255 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.264 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.270 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.275 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.298 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.316 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.335 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.355 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.365 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.380 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.397 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.415 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.430 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.450 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.467 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.482 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.500 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.516 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.535 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.550 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.565 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.580 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.600 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.615 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.630 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.650 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.665 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.680 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.700 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.715 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.730 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.745 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.765 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.780 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.800 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.815 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.830 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.850 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.865 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.880 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.900 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.915 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.930 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.950 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.965 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:38.980 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.000 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.015 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.030 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.050 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.065 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.080 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.100 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.115 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.130 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.150 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.165 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.180 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.200 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.215 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.230 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.250 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.265 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.280 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.300 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.315 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.330 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.350 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.365 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.380 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.400 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.415 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.430 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.450 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.465 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.480 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.500 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.515 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.530 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.550 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.565 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.580 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.600 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.615 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.652 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.655 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.665 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.680 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.700 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.715 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.730 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.750 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.765 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.780 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.800 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.815 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.830 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.850 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.865 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.880 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.900 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
21:35:39.915 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg

zillions more of these... then...

21:35:52.099 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
35:55.502 [shipData.load.begin] +[OOShipRegistry(Singleton) allocWithZone:] (OOShipRegistry.m:1689): Loading ship data.
21:35:56.492 [script.load.notFound] +[OOScript scriptsFromFileNamed:] (OOScript.m:137): ***** ERROR: Could not find script file XarthRepair.js.
21:35:56.521 [script.load.world.listAll] +[ResourceManager loadScripts] (ResourceManager.m:2132): Loaded 69 world scripts:
    AutoPrimeEquipment 1.2
    BGS 2.5.3
    BGS-PAGsoundsetv2 2.3
    cagsdebug 1.0
    combat_MFD 1.14
    Halsis2BGS 2.0
    ils 1.13
    Lib_2DCollision 1.7.1
    Lib_Animator 1.7.1
    Lib_BinSearch 1.7.1
    Lib_Config 1.7.1
    Lib_Crypt 1.7.1
    Lib_Cubecode 1.7.1
    Lib_EntityStrength 1.7.1
    Lib_GUI 1.7.1
    Lib_Main 1.7.1
    Lib_MissionCoord 1.7.1
    Lib_Music 1.7.1
    Lib_PAD 1.7.1
    Lib_PAD_Events 1.7.1
    Lib_Starmap 1.7.1
    logevents 1.4
    LongRangeScanner 0.3
    market_inquirer 1.14.1
    market_observer3 3.7
    militarytargettingsystem 1.0
    mo-traders_rating3 3.7
    NoMarketNotification 1.1
    Oolite Equipment Control 1.90
    Oolite Ship Library 1.90
    oolite-cloaking-device 1.90
    oolite-constrictor-hunt 1.90
    oolite-contracts-cargo 1.90
    oolite-contracts-helpers 1.90
    oolite-contracts-parcels 1.90
    oolite-contracts-passengers 1.90
    oolite-libPriorityAI 1.90
    oolite-nova 1.90
    oolite-populator 1.90
    oolite-primable-equipment-register 1.90
    oolite-registership 1.90
    oolite-thargoid-plans 1.90
    oolite-trumbles 3.5
    oolite-tutorial 1.90
    PAGroove_superhubPopulator 1.6.3
    Police_Scanner_Upgrade 1.3.1
    Povray Planets Galaxy1 Textures 1.1
    RandomStationNames 0.7
    sniperlock 1.0
    SolarFlares 1.1
    station_options 1.1
    System Features: Rings 2.10.3
    System Features: Sunspots 1.5
    Target Filtering System 2.075
    tech_ref_lib 1.0.1
    telescope 2.0
    telescope_debug 1.0
    telescope_fps_monitor 1.2
    telescopeeq 2.0
    useful_MFDs 0.5
    VimanaAlerts 1.00
    VimanaHUD 2.075
    Xarth-Eq-conditions 1.5
    XarthBeacon 1.5
    Xarthbot 1.5
    XarthSite_I_pop 1.5
    XenonUI 3.5
    XenonUI_Compatibility 3.5
    XenonUI_CoreMissionFixes 3.5
21:35:56.548 [script.load.notFound] +[OOScript jsScriptFromFileNamed:properties:] (OOScript.m:205): ***** ERROR: Could not find script file XarthRepEq.js.
21:35:56.565 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_FUEL_SCOOPS
21:35:56.568 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_HEAT_SHIELD
21:35:56.568 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_TARGET_MEMORY
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_FUEL_SCOOPS
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_ILS
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_CLOAKING_DEVICE
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_WORMHOLE_SCANNER
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_LONG_RANGE_SCANNER
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_GAL_DRIVE
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_NAVAL_ENERGY_UNIT
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_ESCAPE_POD
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_LONG_RANGE_SCANNER_JUMP
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_MARKET_INQUIRER_MFD
21:35:56.569 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_ALMANAC_UNIT_MFD
21:35:56.580 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_VIMANA_TRAVEL_MODULE
21:35:56.580 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_TELESCOPE
21:35:56.590 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_ECM
21:35:56.592 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_TECH_REF_LIB_BASE
21:35:56.593 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_SMALLDISH
21:35:56.593 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_GRAVSCANNER
21:35:56.593 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_FUEL_INJECTION
21:35:56.593 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_CARGO_BAY
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_NAVAL_SHIELD_BOOSTER
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_VIMANA_TARGET_MODULE
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_TELESCOPEEXT
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_TARGET_FILTERING_SYSTEM
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_SCANNER_SHOW_MISSILE_TARGET
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_VIMANA_SHIP_MODULE
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_ADVANCED_COMPASS
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_POLICE_SCANNER_UPGRADE
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_MULTI_TARGET
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_SHIELD_BOOSTER
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_DOCK_COMP
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_ADVANCED_NAVIGATIONAL_ARRAY
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_INTEGRATED_TARGETING_SYSTEM
21:35:56.594 [LogEvents] GlobalLog (OOJSGlobal.m:266): ship got EQ_SNIPERLOCK
21:35:56.782 [script.javaScript.exception.ooliteDefined] ReportJSError (OOJavaScriptEngine.m:204): ***** JavaScript exception (Xarthbot 1.5): Error: Timer: Invalid argument in constructor (undefined) -- expected function.
21:35:56.799 [XenonUI] GlobalLog (OOJSGlobal.m:266): ERROR! No Xenon UI Resource packs installed. Xenon UI cannot function without one resource pack installed.
21:35:56.857 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to undefined
21:35:56.857 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Tionisla Stella
21:35:56.857 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Stella Mortem (Star)
21:35:57.678 [LogEvents] GlobalLog (OOJSGlobal.m:266): Populators:
 {"oolite-thargoid-scouts":{"priority":40,"location":"LANE_WPS","groupCount":0},
  "oolite-hunters-route1":{"priority":40,"location":"LANE_WP","groupCount":1},
  "oolite-pirate-independent-route1":{"priority":40,"location":"LANE_WP","groupCount":2},
  "oolite-pirate-independent-route2":{"priority":40,"location":"LANE_PS","groupCount":0},
  "oolite-pirate-independent-route3":{"priority":40,"location":"LANE_WS","groupCount":0},
  "oolite-route1-asteroids":{"groupCount":2,"deterministic":1,"priority":20,"location":"LANE_WP","locationSeed":51728},
  "oolite-police-route1":{"priority":40,"location":"LANE_WP","groupCount":2},
  "oolite-interceptors-witchpoint":{"priority":40,"location":"WITCHPOINT","groupCount":0},
  "oolite-pirate-medium-remote":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-couriers-route3":{"priority":40,"location":"LANE_WS","groupCount":1},
  "oolite-interceptors-route1":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-pirate-medium-triangle":{"priority":40,"location":"LANE_WPS","groupCount":0},
  "oolite-pirate-light-remote":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-freighters-docking":{"priority":40,"location":"STATION_AEGIS","groupCount":1},
  "oolite-freighters":{"priority":40,"location":"LANE_WP","groupCount":7},
  "oolite-hunters-medium-route3":{"priority":40,"location":"LANE_WS","groupCount":0},
  "oolite-couriers-route1":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-route2-asteroids":{"groupCount":4,"deterministic":1,"priority":20,"location":"LANE_PS","locationSeed":82715},
  "oolite-hunters-medium-route1":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-smugglers":{"priority":40,"location":"LANE_WP","groupCount":1},
  "oolite-pirate-heavy-remote":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-pirate-light-route1":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-offlane-hermit":{"groupCount":1,"deterministic":1,"priority":99,"location":"PLANET_ORBIT_HIGH","locationSeed":71258},
  "oolite-hunters-triangle":{"priority":40,"location":"LANE_WPS","groupCount":0},
  "oolite-pirate-heavy-route1":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-police-triangle":{"priority":40,"location":"LANE_WPS","groupCount":0},
  "oolite-police-stationpatrol":{"location":"STATION_AEGIS","priority":40},
  "oolite-hunters-heavy-route3":{"priority":40,"location":"LANE_WS","groupCount":0},
  "oolite-hunters-heavy-route1":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-thargoid-strike":{"priority":40,"location":"LANE_WPS","groupCount":0},
  "oolite-pirate-medium-route1":{"priority":40,"location":"LANE_WP","groupCount":0},
  "oolite-pirate-heavy-triangle":{"priority":40,"location":"LANE_WPS","groupCount":0},
  "oolite-nav-buoy":{"deterministic":1,"coordinates":[70148.609375,26948.341796875,568990.625],"priority":5,"location":"COORDINATES"},
  "oolite-assassins":{"priority":40,"location":"WITCHPOINT","groupCount":1},
  "system_features_sunspots":{"coordinates":[681289.4375,134919.84375,-267981.28125],"priority":1000},
  "oolite-witch-buoy":{"deterministic":1,"priority":10,"location":"COORDINATES","coordinates":[0,0,0]},
  "oolite-pirate-light-triangle":{"priority":40,"location":"LANE_WPS","groupCount":0}}
21:35:57.739 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to undefined
21:35:57.739 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Tionisla Stella
21:35:57.739 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Stella Mortem (Star)
21:35:57.739 [LogEvents] GlobalLog (OOJSGlobal.m:266): gui screen will change from GUI_SCREEN_LOAD to GUI_SCREEN_STATUS
21:35:57.740 [LogEvents] GlobalLog (OOJSGlobal.m:266): gui screen changed from GUI_SCREEN_LOAD to GUI_SCREEN_STATUS
21:35:57.756 [LogEvents] GlobalLog (OOJSGlobal.m:266): mission screen opportunity
21:35:57.812 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:57.903 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:57.910 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:57.920 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:57.934 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:57.955 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:57.969 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:57.989 [LogEvents] GlobalLog (OOJSGlobal.m:266): Navigation Buoy 23890 spawned at 10 km
21:35:57.989 [LogEvents] GlobalLog (OOJSGlobal.m:266): Adder 8800 spawned at 33 km
21:35:57.989 [LogEvents] GlobalLog (OOJSGlobal.m:266): GalCop Viper 14937 spawned at 49 km
21:35:57.989 [LogEvents] GlobalLog (OOJSGlobal.m:266): Dodecahedron Station 24056 spawned at 0 km
21:35:57.989 [LogEvents] GlobalLog (OOJSGlobal.m:266): Rock Hermit 25894 spawned at 287 km
21:35:57.990 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 8610 spawned at 326 km
21:35:57.990 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 22526 spawned at 345 km
21:35:57.990 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 11873 spawned at 353 km
21:35:57.990 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 29467 spawned at 357 km
21:35:57.990 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 4608 spawned at 370 km
21:35:57.990 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 21404 spawned at 378 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 18253 spawned at 397 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 3621 spawned at 548 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 29857 spawned at 558 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 12441 spawned at 567 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 9938 spawned at 567 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 31055 spawned at 568 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 4200 spawned at 576 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 22787 spawned at 583 km
21:35:57.991 [LogEvents] GlobalLog (OOJSGlobal.m:266): Asteroid 22629 spawned at 584 km
21:35:57.992 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:58.005 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:58.021 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:58.040 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:58.055 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:35:58.069 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg

More zillions

21:36:04.044 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:36:04.064 [LogEvents] GlobalLog (OOJSGlobal.m:266): gui screen will change from GUI_SCREEN_STATUS to GUI_SCREEN_SHORT_RANGE_CHART
21:36:04.085 [LogEvents] GlobalLog (OOJSGlobal.m:266): gui screen changed from GUI_SCREEN_STATUS to GUI_SCREEN_SHORT_RANGE_CHART
21:36:04.109 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg

More zillions

21:36:11.118 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:36:11.138 [LogEvents] GlobalLog (OOJSGlobal.m:266): info system will change from 124 to 157
21:36:11.138 [LogEvents] GlobalLog (OOJSGlobal.m:266): info system changed from 124 to 157
21:36:11.140 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg

oodles of zillions

21:36:18.253 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:36:18.273 [LogEvents] GlobalLog (OOJSGlobal.m:266): info system will change from 157 to 31
21:36:18.273 [LogEvents] GlobalLog (OOJSGlobal.m:266): info system changed from 157 to 31
21:36:18.274 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg

zillions of zillions

21:36:19.538 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:36:19.558 [LogEvents] GlobalLog (OOJSGlobal.m:266): info system will change from 31 to 157
21:36:19.558 [LogEvents] GlobalLog (OOJSGlobal.m:266): info system changed from 31 to 157
21:36:19.559 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg

skillions of zillions

Leaving Tionisla, en-route for Bemaera to see if there is a "Xarth site" in the poor system (Antient Aliens/Amber Moon.oxp) - using the "Long Range Scanner" cheat oxp

21:36:24.588 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-ambi_station5.ogg
21:36:24.604 [LogEvents] GlobalLog (OOJSGlobal.m:266): gui screen changed from GUI_SCREEN_SHORT_RANGE_CHART to GUI_SCREEN_MAIN
21:36:24.632 [LogEvents] GlobalLog (OOJSGlobal.m:266): will launch from Dodecahedron Station 24056 flying Cobra Mark III 29612
21:36:24.655 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to undefined
21:36:24.656 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Tionisla Stella
21:36:24.656 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Stella Mortem (Star)
21:36:24.675 [VimanaHUD] GlobalLog (OOJSGlobal.m:266): Setting player's crosshairs to green_crosshair_off.plist
21:36:24.722 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.734 [LogEvents] GlobalLog (OOJSGlobal.m:266): compass targeted lost target in mode COMPASS_MODE_PLANET
21:36:24.742 [LogEvents] GlobalLog (OOJSGlobal.m:266): alert condition changed from 0 to 2
21:36:24.742 [VimanaHUD] GlobalLog (OOJSGlobal.m:266): Setting player's crosshairs to crosshair_off.plist
21:36:24.758 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:92): Looping, trying restart for bgs-m_ambi_engine1.ogg
21:36:24.762 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.767 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:92): Looping, trying restart for bgs-m_ambi_engine1.ogg
21:36:24.768 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.772 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.772 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.787 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.787 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.803 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.803 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.818 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.818 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.838 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.839 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.855 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.855 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.868 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.868 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:24.888 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to undefined
21:36:24.888 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Tionisla Stella
21:36:24.889 [LogEvents] GlobalLog (OOJSGlobal.m:266): system information changed in galaxy 0 system 124 key sun_name to Stella Mortem (Star)
21:36:24.890 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:24.890 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg

I sincerely hope that somebody finds this interesting!

21:36:25.855 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:25.855 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:26.022 [LogEvents] GlobalLog (OOJSGlobal.m:266): compass targeted Tionisla I (Capital Planet) undefined in mode COMPASS_MODE_PLANET
21:36:26.023 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:26.023 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg

ad nauseam

21:36:27.063 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:27.078 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:27.078 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs_PAG_breakpattern.ogg
21:36:27.092 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:27.115 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:27.127 [script.javaScript.exception.unexpectedType] ReportJSError (OOJavaScriptEngine.m:204): ***** JavaScript exception (Xarthbot 1.5): TypeError: this.$xarthTimer is undefined
21:36:27.127 [LogEvents] GlobalLog (OOJSGlobal.m:266): launched from Dodecahedron Station 24056
21:36:27.139 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:27.192 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:27.207 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:27.228 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg

More nausea

21:36:28.127 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:28.154 [LogEvents] GlobalLog (OOJSGlobal.m:266): targeted Navigation Buoy 23890 who has 250 energy
21:36:28.194 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg

....

21:36:32.588 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:32.609 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:92): Looping, trying restart for bgs-m_ambi_engine1.ogg
21:36:32.617 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg

....

21:36:40.402 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:40.422 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:92): Looping, trying restart for bgs-m_ambi_engine1.ogg
21:36:40.437 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg

....

21:36:48.220 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg
21:36:48.237 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:92): Looping, trying restart for bgs-m_ambi_engine1.ogg
21:36:48.252 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for bgs-m_ambi_engine1.ogg

This is the vast majority of output until 

Closing log at 2022-06-20 20:43:17 +0000.


What should I try next?
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
User avatar
Cholmondely
Archivist
Archivist
Posts: 5004
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Audio fails

Post by Cholmondely »

Got this with a Strict Game (so without the LogEvents .oxp)

Code: Select all

Opening log for Oolite version 1.90 (x86-64) under Mac OS X Version 10.15.3 (Build 19D2064) at 2022-06-21 11:31:55 +0000.
Machine type: MacBookAir9,1, 8192 MiB memory, 2 (4 logical) x x86 (family 0x38435547) @ 1100 MHz.
Build options: OpenAL, new planets.

Note that the contents of the log file can be adjusted by editing logcontrol.plist.

12:31:55.439 [joystick.error.init] -[OOMacJoystickManager init] (OOMacJoystickManager.m:80): Cannot open HID manager; joystick support will not function.
12:31:55.439 [rendering.opengl.version] -[OOOpenGLExtensionManager reset] (OOOpenGLExtensionManager.m:221): OpenGL renderer version: 2.1.0 ("2.1 INTEL-14.4.26"). Vendor: "Intel Inc.". Renderer: "Intel(R) Iris(TM) Plus Graphics OpenGL Engine (1x6x8 (fused) LP".
12:31:55.439 [rendering.opengl.extensions] -[OOOpenGLExtensionManager reset] (OOOpenGLExtensionManager.m:222): OpenGL extensions (128):
GL_EXT_texture_compression_dxt1, GL_EXT_rescale_normal, GL_EXT_transform_feedback, GL_EXT_blend_func_separate, GL_EXT_framebuffer_sRGB, GL_ATI_texture_env_combine3, GL_ARB_draw_elements_base_vertex, GL_EXT_debug_label, GL_EXT_geometry_shader4, GL_EXT_secondary_color, GL_EXT_separate_specular_color, GL_EXT_shadow_funcs, GL_NV_texgen_reflection, GL_NV_blend_square, GL_ARB_texture_compression_rgtc, GL_EXT_stencil_wrap, GL_ARB_texture_env_crossbar, GL_EXT_framebuffer_blit, GL_ATI_separate_stencil, GL_APPLE_vertex_point_size, GL_EXT_texture_rectangle, GL_APPLE_specular_vector, GL_EXT_packed_depth_stencil, GL_EXT_blend_color, GL_ARB_fragment_program_shadow, GL_EXT_texture_env_add, GL_EXT_provoking_vertex, GL_EXT_texture_array, GL_ARB_texture_env_combine, GL_ARB_point_sprite, GL_ARB_multisample, GL_EXT_framebuffer_object, GL_ARB_framebuffer_sRGB, GL_EXT_texture_lod_bias, GL_APPLE_pixel_buffer, GL_ARB_vertex_program, GL_EXT_bgra, GL_APPLE_fence, GL_APPLE_ycbcr_422, GL_EXT_timer_query, GL_EXT_vertex_array_bgra, GL_ARB_depth_clamp, GL_IBM_rasterpos_clip, GL_ARB_pixel_buffer_object, GL_SGIS_generate_mipmap, GL_EXT_framebuffer_multisample_blit_scaled, GL_ARB_shader_texture_lod, GL_ARB_texture_float, GL_ARB_texture_rectangle, GL_ARB_vertex_shader, GL_NV_texture_barrier, GL_ARB_provoking_vertex, GL_ARB_texture_env_add, GL_APPLE_object_purgeable, GL_ARB_texture_env_dot3, GL_APPLE_rgb_422, GL_NV_depth_clamp, GL_ARB_texture_mirrored_repeat, GL_ARB_texture_cube_map, GL_APPLE_element_array, GL_ATI_texture_float, GL_ARB_window_pos, GL_ARB_sync, GL_ARB_vertex_buffer_object, GL_APPLE_texture_range, GL_NV_conditional_render, GL_EXT_stencil_two_side, GL_ARB_texture_compression, GL_ARB_instanced_arrays, GL_EXT_blend_minmax, GL_ARB_texture_border_clamp, GL_EXT_draw_buffers2, GL_ARB_shading_language_100, GL_EXT_blend_equation_separate, GL_ARB_vertex_blend, GL_EXT_blend_subtract, GL_EXT_packed_float, GL_APPLE_aux_depth_stencil, GL_APPLE_row_bytes, GL_NV_light_max_exponent, GL_EXT_abgr, GL_EXT_texture_filter_anisotropic, GL_ARB_vertex_array_bgra, GL_ARB_draw_buffers, GL_ARB_transpose_matrix, GL_ARB_color_buffer_float, GL_EXT_gpu_program_parameters, GL_APPLE_client_storage, GL_ARB_texture_non_power_of_two, GL_ARB_multitexture, GL_EXT_gpu_shader4, GL_APPLE_flush_render, GL_ARB_framebuffer_object, GL_APPLE_vertex_program_evaluators, GL_APPLE_transform_hint, GL_EXT_texture_compression_s3tc, GL_APPLE_flush_buffer_range, GL_EXT_texture_integer, GL_SGIS_texture_edge_clamp, GL_NV_fog_distance, GL_ARB_occlusion_query, GL_ARB_fragment_shader, GL_ARB_texture_rg, GL_ARB_fragment_program, GL_ARB_seamless_cube_map, GL_ARB_shader_objects, GL_EXT_draw_range_elements, GL_APPLE_vertex_array_object, GL_ARB_depth_texture, GL_EXT_texture_sRGB, GL_ARB_half_float_vertex, GL_APPLE_vertex_array_range, GL_ARB_shadow, GL_EXT_multi_draw_arrays, GL_ARB_half_float_pixel, GL_APPLE_packed_pixels, GL_ARB_point_parameters, GL_EXT_debug_marker, GL_EXT_texture_sRGB_decode, GL_EXT_clip_volume_hint, GL_SGIS_texture_lod, GL_EXT_fog_coord, GL_EXT_texture_shared_exponent, GL_ATI_texture_mirror_once, GL_APPLE_float_pixels, GL_EXT_framebuffer_multisample, GL_ARB_depth_buffer_float, GL_ARB_draw_instanced
12:31:55.484 [rendering.opengl.shader.support] -[OOOpenGLExtensionManager reset] (OOOpenGLExtensionManager.m:256): Shaders are supported.
12:31:55.484 [speech.synthesis] -[Universe initWithGameView:] (Universe.m:297): Spoken messages are off.
12:31:55.579 [searchPaths.dumpAll] +[ResourceManager logPaths] (ResourceManager.m:2240): Resource paths: 
    ~/Desktop/Oolite/  Oolite 1.90.app/Contents/Resources
    ~/Library/Application Support/Oolite/Managed AddOns
    ~/Library/Application Support/Oolite/AddOns
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.SolarFlares.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.market_observer.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.Library.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Convoys.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cag.station_options.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.escort-formations.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.ILS.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/FontDangerousSquare.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.NoMarketNotification.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.LogEvents.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.systemfeatures.sunspots.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.gsagostinho.systemfeatures.rings.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.CombatMFD.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.TechnicalReferenceLibrary-1.0.1.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptMurphy.PoliceIFFScanner.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.cag.Telescope_Extender.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.AutoPrimeEquipment.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.market_inquirer.oxp
    ~/Library/Application Support/Oolite/Managed AddOns/Norby.cag.Telescope.2.11.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.BGS.oxz
    ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.Pagroove.BGSSoundset.oxz
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Ovvldc.Halsis2BGS.oxp
    ~/Library/Application Support/Oolite/AddOns/MilitaryTargettingSystemv1.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.drew.Tianve1.3.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Murgh.prohip_xpat_b1_1024.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.phkb.XenonUI.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Pagroove.FamousPlanets.tweaked.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.CommonSenseOTB.SniperLock.oxp
    ~/Library/Application Support/Oolite/AddOns/Z_superico.oxp
    ~/Library/Application Support/Oolite/AddOns/Povray_Planets_Galaxy1_Textures_v1.1.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Okti.LongRangeScanner v0.3.oxp
    ~/Library/Application Support/Oolite/AddOns/Amber-Moon-Chronicles_0.9.1.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Murgh.wpb.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.zirael.UsefulMFDs.0.6.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Murgh.Diso.oxp
    ~/Library/Application Support/Oolite/AddOns/GalacticAlmanac0.7.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Pagroove.Superhub.oxp
    ~/Library/Application Support/Oolite/AddOns/oolite.oxp.Gnievmir.VimanaHUD.tweaked.VimanaHUD.oxp
12:31:55.618 [shipData.load.begin] +[OOShipRegistry(Singleton) allocWithZone:] (OOShipRegistry.m:1689): Loading ship data.
12:31:55.618 [speech.setup.begin] __29-[Universe initWithGameView:]_block_invoke (Universe.m:330): Starting to set up speech synthesizer.
12:31:55.881 [speech.setup.end] __29-[Universe initWithGameView:]_block_invoke (Universe.m:332): Finished setting up speech synthesizer.
12:31:56.037 [startup.complete] -[GameController applicationDidFinishLaunching:] (GameController.m:269): ========== Loading complete in 0.80 seconds. ==========
12:31:56.140 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
12:31:56.140 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 1:2)
12:31:56.140 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Ambient Light Sensor (primary usage 32:65)
12:31:56.140 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
12:31:56.140 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 65280:11)
12:31:56.141 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 1:6)
12:31:56.141 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Touch Bar Backlight (primary usage 65280:15)
12:31:56.141 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
12:31:56.141 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 65280:3)
12:31:56.141 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Headset (primary usage 12:1)
12:31:56.141 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Keyboard (primary usage 1:6)
12:31:56.141 [joystick.reject] -[OOMacJoystickManager handleDeviceAttach:] (OOMacJoystickManager.m:126): Ignoring HID device: Apple Internal Keyboard / Trackpad (primary usage 65280:13)
12:31:56.280 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.346 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.352 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.362 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.367 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.372 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.397 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.426 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.432 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.437 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.446 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.452 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.461 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.467 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.472 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.479 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.481 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.487 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.496 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.502 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.511 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.517 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.522 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.528 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.532 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.537 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.543 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.547 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.552 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.560 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.567 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.572 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.578 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.581 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.588 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.594 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.596 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.602 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.612 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.617 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.622 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.629 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.632 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.637 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.643 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.646 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.652 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.660 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.667 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.673 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.682 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.687 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.695 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.702 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.712 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.717 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.722 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.727 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.731 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.737 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.745 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.753 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.761 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.767 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.772 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.782 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.787 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.792 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.797 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.802 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.811 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.817 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.822 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.831 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.837 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.844 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.847 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.852 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.861 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.900 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.912 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.932 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.947 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.962 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.982 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:56.996 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.012 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.030 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.047 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.061 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.082 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.097 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.112 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.127 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.147 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.162 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.177 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.197 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.212 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.227 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.247 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.262 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.277 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.297 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.312 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.327 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.347 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.362 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.377 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.397 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.412 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.427 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.447 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.462 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.477 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.497 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.512 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.527 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.547 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.562 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.577 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.597 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.612 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.627 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.647 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.662 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.677 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.697 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.712 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.727 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.747 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.762 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.777 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.797 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.812 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.827 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.847 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.862 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.877 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.897 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.912 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.927 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.947 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.962 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.977 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:57.997 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.027 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.032 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.047 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.062 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.077 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.097 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.117 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.126 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.147 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.162 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.177 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.197 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.212 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.227 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.247 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.262 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.277 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.297 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.312 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.327 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:31:58.347 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg

Ad nauseam, until:

12:32:04.712 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:32:04.782 [files.notFound] +[OOTexture textureWithName:inFolder:options:anisotropy:lodBias:] (OOTexture.m:168): ----- WARNING: Could not find texture file "xenon_standard_nomenu_nohud.png".
12:32:04.782 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg

Ad nauseam until:

12:32:07.181 [sound.buffer] -[OOSoundChannel update] (OOALSoundChannel.m:87): Incomplete, trying next for OoliteTheme.ogg
12:32:07.212 [searchPaths.dumpAll] +[ResourceManager logPaths] (ResourceManager.m:2240): Resource paths: strict
    
12:32:07.219 [shipData.load.begin] +[OOShipRegistry(Singleton) allocWithZone:] (OOShipRegistry.m:1689): Loading ship data.
12:32:07.771 [script.load.world.listAll] +[ResourceManager loadScripts] (ResourceManager.m:2132): Loaded 16 world scripts:
    Oolite Equipment Control 1.90
    Oolite Ship Library 1.90
    oolite-cloaking-device 1.90
    oolite-constrictor-hunt 1.90
    oolite-contracts-cargo 1.90
    oolite-contracts-helpers 1.90
    oolite-contracts-parcels 1.90
    oolite-contracts-passengers 1.90
    oolite-libPriorityAI 1.90
    oolite-nova 1.90
    oolite-populator 1.90
    oolite-primable-equipment-register 1.90
    oolite-registership 1.90
    oolite-thargoid-plans 1.90
    oolite-trumbles 1.90
    oolite-tutorial 1.90
              Nothing in log
         Flew from Lave to trade at Tionisla, and then to trade at Isinor.
              Nothing in log
12:43:29.027 [exit.context] -[OoliteApp terminate:] (OoliteApp.m:68): Exiting: Cocoa terminate event.

Closing log at 2022-06-21 11:43:29 +0000.
Comments wanted:
Missing OXPs? What do you think is missing?
Lore: The economics of ship building How many built for Aronar?
Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
Post Reply