How to build Oolite source on Ubuntu

For discussion of ports to POSIX based systems, especially using GNUStep.

Moderators: another_commander, winston, Getafix

Post Reply
User avatar
Getafix
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 979
Joined: Tue Apr 01, 2008 12:55 pm
Location: A small ice asteroid, orbiting Oresrati in Galaxy 8 (a.k.a. northwest Armorica).
Contact:

How to build Oolite source on Ubuntu

Post by Getafix »

(NOTE: The following has been tested on Ubuntu 8.04 and 10.04 for both 32bit and 64bit installations.
GNUstep base versions > 1.19.1 and < 1.21.1 are broken with a buggy XML parsing. You may install
a fixed gnustep as described here or build & install gnustep-1.20.1 stable from source.)


(1) Mandatory Development Libraries and Tools

(1.1) Get the libraries and tools
One way is to open a terminal and do:
(Accept all the extra packages (dependencies) needed to be installed!)

Code: Select all

sudo apt-get install gobjc gnustep-core-devel libsdl-mixer1.2-dev subversion libespeak-dev libnspr4-dev curl
Another way is to use the "Synaptic Package Manager" to get (this is what I did):
(Mark all the extra packages (dependencies) needed to be installed!)
  • gobjc (The GNU Objective-C compiler)
  • gnustep-core-devel (The GNUstep Development Environment -- core development)
  • libsdl-mixer1.2-dev (development files for SDL1.2 mixer library)
  • subversion (svn - Advanced version control system)
  • libespeak-dev
  • libnspr4-dev
  • curl
(1.2) Setup GNUstep environment variables
Edit the ".bashrc" file, located in your home directory, and append the related environment libraries.
Locate the "GNUstep.sh" file (e.g. /usr/share/GNUstep/Makefiles/GNUstep.sh) and append it at your ".bashrc". In that way you will get all the GNUstep environment variables into your profile.

Code: Select all

#GNUSTEP Environment vars
. /usr/share/GNUstep/Makefiles/GNUstep.sh
NOTE:
The path is preceded by a dot and a space character!
Exit the terminal and re-open it. This will force the ".bashrc" to execute with the GNUstep environment variables.



(1.3) Setup Oolite AddOns directory
Create the add-ons folder in your home directory by executing:

Code: Select all

mkdir -p ~/.Oolite/AddOns
This will create '.Oolite' and '.Oolite/AddOns' directories.
NOTE: All the add-ons, to be used by the Oolite you are about to build, should be placed here!
The 'Logs' directory will be automatically generated upon first run in .Oolite directory.




(2) Get and build the source

(2.1) Get the Oolite source code
Open a terminal window and make a folder (e.g. Oolite-dev) at your home directory. CD into that directory.

For full checkout of Oolite v1.75.3 (beta release):

Code: Select all

svn co http://svn.berlios.de/svnroot/repos/oolite-linux/tags/1.75.3/
This will create a "1.75.3" directory, where the v1.75.3 source files will reside.

For 1.75.3 bug-fix execute:

Code: Select all

svn co http://svn.berlios.de/svnroot/repos/oolite-linux/trunk/
This will create a "trunk" directory, where the latest 1.75.3 bug-fix source files will reside.


(2.2) Build Oolite
CD into the root of Oolite source (e.g. ~/Oolite-dev/trunk or ~/Oolite-dev/1.75.3)
and execute

Code: Select all

make -f Makefile release
(2.3) Run Oolite

Code: Select all

oolite.app/oolite
Last edited by Getafix on Tue Jan 16, 2018 3:55 pm, edited 37 times in total.
Reason: De-stickified as outdated
"Any sufficiently advanced information is indistinguishable from noise." [Newman, Lachmann, Moore]
User avatar
Cmdr. Maegil
Sword-toting nut-job
Sword-toting nut-job
Posts: 1294
Joined: Tue Feb 27, 2007 10:28 pm
Location: On the mend in Western Africa

Post by Cmdr. Maegil »

...why do you insist in making each post a QED for your sig?... :lol:
You know those who, having been mugged and stabbed, fired, dog run over, house burned down, wife eloped with best friend, daughters becoming prostitutes and their countries invaded - still say that "all is well"?
I'm obviously not one of them.
User avatar
Getafix
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 979
Joined: Tue Apr 01, 2008 12:55 pm
Location: A small ice asteroid, orbiting Oresrati in Galaxy 8 (a.k.a. northwest Armorica).
Contact:

Post by Getafix »

Imagine what a conversation with me would be like! :lol:
"Any sufficiently advanced information is indistinguishable from noise." [Newman, Lachmann, Moore]
User avatar
JensAyton
Grand Admiral Emeritus
Grand Admiral Emeritus
Posts: 6657
Joined: Sat Apr 02, 2005 2:43 pm
Location: Sweden
Contact:

Re: How to setup a build/dev environment on Ubuntu 8.04 32/6

Post by JensAyton »

Getafix wrote:
Another way is to just append one environment library at your ".bashrc". (this is what Ahruman did)

Code: Select all

export GNUSTEP_MAKEFILES=/usr/share/GNUstep/Makefiles
…but only because I could’t find GNUstep.sh. I recommend doing it properly.
User avatar
JensAyton
Grand Admiral Emeritus
Grand Admiral Emeritus
Posts: 6657
Joined: Sat Apr 02, 2005 2:43 pm
Location: Sweden
Contact:

Post by JensAyton »

Incidentally, an alternative way to get the 1.71.2 code is:

Code: Select all

svn co -r1626 http://svn.berlios.de/svnroot/repos/oolite-linux/branches/1.71-maintenance
The advantage of that is that you can then update to a hypothetical 1.71.3 without downloading all the unchanged stuff again.

For 1.72, the equivalent is:

Code: Select all

svn co -r1826 http://svn.berlios.de/svnroot/repos/oolite-linux/branches/1.72-maintenance/
Last edited by JensAyton on Mon Nov 03, 2008 10:27 pm, edited 1 time in total.
User avatar
Getafix
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 979
Joined: Tue Apr 01, 2008 12:55 pm
Location: A small ice asteroid, orbiting Oresrati in Galaxy 8 (a.k.a. northwest Armorica).
Contact:

Post by Getafix »

Thank you, Ahruman.
The first post is now updated to include your feedback.
"Any sufficiently advanced information is indistinguishable from noise." [Newman, Lachmann, Moore]
krombart
Competent
Competent
Posts: 52
Joined: Tue May 20, 2008 9:25 am

Post by krombart »

I followed this manual step by step.

The output from trying to start oolite.app/oolite is

.:3: validity error : Validation failed: no DTD found !
<plist version="1.0">
^
2008-05-25 13:57:56.674 oolite[13993] [log.header]: Opening log for Oolite version 1.65 (x86-32 test release) under Linux at 2008-05-25 13:57:56 +0200.
1 processors detected.
Note that the contents of the log file can be adjusted by editing logcontrol.plist.

2008-05-25 13:57:56.676 oolite[13993] [unclassified.MyOpenGLView]: initialising SDL
there is no soundcard
2008-05-25 13:57:56.744 oolite[13993] [unclassified.JoystickHandler]: init: numSticks=0
2008-05-25 13:57:56.744 oolite[13993] [unclassified.MyOpenGLView]: CREATING MODE LIST
2008-05-25 13:57:56.745 oolite[13993] [unclassified.MyOpenGLView]: Added res 1152 x 864
2008-05-25 13:57:56.745 oolite[13993] [unclassified.MyOpenGLView]: Added res 1024 x 768
2008-05-25 13:57:56.745 oolite[13993] [unclassified.MyOpenGLView]: Added res 960 x 600
2008-05-25 13:57:56.745 oolite[13993] [unclassified.MyOpenGLView]: Added res 840 x 525
2008-05-25 13:57:56.745 oolite[13993] [unclassified.MyOpenGLView]: Added res 832 x 624
2008-05-25 13:57:56.746 oolite[13993] [unclassified.MyOpenGLView]: Added res 800 x 600
2008-05-25 13:57:56.746 oolite[13993] [unclassified.MyOpenGLView]: Added res 720 x 450
2008-05-25 13:57:56.746 oolite[13993] [unclassified.MyOpenGLView]: Added res 640 x 512
2008-05-25 13:57:56.746 oolite[13993] [unclassified.MyOpenGLView]: Added res 576 x 432
2008-05-25 13:57:56.746 oolite[13993] [unclassified.MyOpenGLView]: Added res 512 x 384
2008-05-25 13:57:56.747 oolite[13993] [unclassified.MyOpenGLView]: Added res 416 x 312
2008-05-25 13:57:56.747 oolite[13993] [unclassified.MyOpenGLView]: Added res 400 x 300
2008-05-25 13:57:56.747 oolite[13993] [unclassified.MyOpenGLView]: Added res 360 x 200
2008-05-25 13:57:56.747 oolite[13993] [unclassified.MyOpenGLView]: Added res 320 x 240
2008-05-25 13:57:56.748 oolite[13993] [unclassified.MyOpenGLView]: Found mode {Height = 1024; RefreshRate = 0; Width = 1280; }
2008-05-25 13:57:56.801 oolite[13993] [unclassified.MyOpenGLView]: drawRect calling initialiseGLWithSize
2008-05-25 13:57:56.801 oolite[13993] [unclassified.MyOpenGLView]: Creating a new surface of 1280 x 1024
2008-05-25 13:57:56.804 oolite[13993] [unclassified.MyOpenGLView]: no universe, clearning surface
2008-05-25 13:57:56.805 oolite[13993] [rendering.opengl.version]: OpenGL renderer version: 2.1.2 ("2.1.2 NVIDIA 173.08")
Vendor: NVIDIA Corporation
Renderer: GeForce 7300 GT/PCI/SSE2/3DNOW!
2008-05-25 13:57:56.805 oolite[13993] [rendering.opengl.extensions]: OpenGL extensions (123):
GL_ARB_color_buffer_float GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_half_float_pixel GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_shadow GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_non_power_of_two GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_object GL_EXT_gpu_program_parameters GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_sRGB GL_EXT_timer_query GL_EXT_vertex_array GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KTX_buffer_region GL_NV_blend_square GL_NV_copy_depth_to_color GL_NV_depth_clamp GL_NV_fence GL_NV_float_buffer GL_NV_fog_distance GL_NV_fragment_program GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_framebuffer_multisample_coverage GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_texgen_reflection GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_expand_normal GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_NVX_conditional_render GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum
2008-05-25 13:57:56.994 oolite[13993] [dataCache.found]: Found data cache.
2008-05-25 13:57:56.994 oolite[13993] [dataCache.rebuild]: Data cache version (1.72) does not match Oolite version (1.65), rebuilding cache.
2008-05-25 13:57:56.995 oolite[13993] Failed to recurse into directory 'AddOns' - No such file or directory
2008-05-25 13:57:56.000 oolite[13993] [oxp.versionMismatch]: OXP /home/ebw/.Oolite/AddOns/System_Redux.oxp is incompatible with version 1.65 of Oolite.
2008-05-25 13:57:57.003 oolite[13993] [oxp.versionMismatch]: OXP /home/ebw/.Oolite/AddOns/buoyRepair1.00.oxp is incompatible with version 1.65 of Oolite.
2008-05-25 13:57:57.007 oolite[13993] [searchPaths.dumpAll]: ---> OXP search paths:
("/usr/lib/GNUstep/System/Applications/oolite.app/Resources", AddOns, "/home/ebw/.Oolite/AddOns", "/home/ebw/.Oolite/AddOns/Ore_processor.oxp", "/home/ebw/.Oolite/AddOns/lovecats 1.1.oxp", "/home/ebw/.Oolite/AddOns/FTZ v0.13.oxp", "/home/ebw/.Oolite/AddOns/Dictators v1.2.oxp", "/home/ebw/.Oolite/AddOns/hOopyCasino.oxp", "/home/ebw/.Oolite/AddOns/taranis.oxp", "/home/ebw/.Oolite/AddOns/AsteroidStorm.oxp", "/home/ebw/.Oolite/AddOns/ettBeaconLauncher.oxp", "/home/ebw/.Oolite/AddOns/tori.oxp", "/home/ebw/.Oolite/AddOns/Hotrods.oxp", "/home/ebw/.Oolite/AddOns/transhab.oxp", "/home/ebw/.Oolite/AddOns/YOUR_AD_HERE_set_C.oxp", "/home/ebw/.Oolite/AddOns/YOUR_AD_HERE_set_B.oxp", "/home/ebw/.Oolite/AddOns/longway.oxp", "/home/ebw/.Oolite/AddOns/GrittyCoriolis.oxp", "/home/ebw/.Oolite/AddOns/YOUR_AD_HERE.oxp", "/home/ebw/.Oolite/AddOns/YOUR_AD_HERE_set_E.oxp", "/home/ebw/.Oolite/AddOns/monument.oxp", "/home/ebw/.Oolite/AddOns/YOUR_AD_HERE_set_A.oxp", "/home/ebw/.Oolite/AddOns/Commies.oxp", "/home/ebw/.Oolite/AddOns/globestations.oxp", "/home/ebw/.Oolite/AddOns/Rock_Hermit_Locator1.2.1.oxp", "/home/ebw/.Oolite/AddOns/BlackMonks.oxp", "/home/ebw/.Oolite/AddOns/black_baron.oxp", "/home/ebw/.Oolite/AddOns/tianve.oxp", "/home/ebw/.Oolite/AddOns/Zzzz Realistic Shipyards V3.01.oxp", "/home/ebw/.Oolite/AddOns/genship.oxp", "/home/ebw/.Oolite/AddOns/spyhunter.oxp", "/home/ebw/.Oolite/AddOns/Cargo_wrecks_teaser.oxp", "/home/ebw/.Oolite/AddOns/Zz-Oo-Haul.oxp", "/home/ebw/.Oolite/AddOns/YOUR_AD_HERE_set_D.oxp", "/home/ebw/.Oolite/AddOns/gwxstations.oxp", "/home/ebw/.Oolite/AddOns/custsounds.oxp")
2008-05-25 13:57:57.008 oolite[13993] [dataCache.retrieve.failed]: Failed to retreive"search path modification dates" cache object search paths -- no such cache.
2008-05-25 13:57:57.009 oolite[13993] [dataCache.set.success]: Updated entry search paths in cache "search path modification dates".
2008-05-25 13:57:57.009 oolite[13993] [dataCache.set.success]: Updated entry modification dates in cache "search path modification dates".
2008-05-25 13:57:57.010 oolite[13993] [dataCache.retrieve.failed]: Failed to retreive"dictionaries" cache object Config/descriptions.plist merge:basic -- no such cache.
2008-05-25 13:57:57.030 oolite[13993] [dataCache.set.success]: Updated entry Config/descriptions.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:57.030 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/shipdata.plist merge:basic -- no such entry.
2008-05-25 13:57:57.622 oolite[13993] [dataCache.set.success]: Updated entry Config/shipdata.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:57.622 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/shipyard.plist merge:basic -- no such entry.
2008-05-25 13:57:57.713 oolite[13993] [dataCache.set.success]: Updated entry Config/shipyard.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:57.714 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/commodities.plist merge:basic -- no such entry.
2008-05-25 13:57:57.731 oolite[13993] [dataCache.set.success]: Updated entry Config/commodities.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:57.731 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/illegal_goods.plist merge:basic -- no such entry.
2008-05-25 13:57:57.733 oolite[13993] [dataCache.set.success]: Updated entry Config/illegal_goods.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:57.733 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/characters.plist merge:basic -- no such entry.
2008-05-25 13:57:57.735 oolite[13993] [dataCache.set.success]: Updated entry Config/characters.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:57.735 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/customsounds.plist merge:basic -- no such entry.
2008-05-25 13:57:57.738 oolite[13993] [dataCache.set.success]: Updated entry Config/customsounds.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:57.738 oolite[13993] [dataCache.retrieve.failed]: Failed to retreive"resolved paths" cache object Sounds/witch_fail_fuel.ogg -- no such cache.
2008-05-25 13:57:57.738 oolite[13993] [resourceManager.foundFile]: Found Sounds/witch_fail_fuel.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/witch_fail_fuel.ogg
2008-05-25 13:57:57.738 oolite[13993] [dataCache.set.success]: Updated entry Sounds/witch_fail_fuel.ogg in cache "resolved paths".
2008-05-25 13:57:57.750 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/mis_launch.ogg -- no such entry.
2008-05-25 13:57:57.750 oolite[13993] [resourceManager.foundFile]: Found Sounds/mis_launch.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/mis_launch.ogg
2008-05-25 13:57:57.751 oolite[13993] [dataCache.set.success]: Updated entry Sounds/mis_launch.ogg in cache "resolved paths".
2008-05-25 13:57:58.715 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/auto_fail.ogg -- no such entry.
2008-05-25 13:57:58.716 oolite[13993] [resourceManager.foundFile]: Found Sounds/auto_fail.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/auto_fail.ogg
2008-05-25 13:57:58.716 oolite[13993] [dataCache.set.success]: Updated entry Sounds/auto_fail.ogg in cache "resolved paths".
2008-05-25 13:57:58.729 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/mine-armed.ogg -- no such entry.
2008-05-25 13:57:58.730 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/mis_armed.ogg -- no such entry.
2008-05-25 13:57:58.731 oolite[13993] [resourceManager.foundFile]: Found Sounds/mis_armed.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/mis_armed.ogg
2008-05-25 13:57:58.731 oolite[13993] [dataCache.set.success]: Updated entry Sounds/mis_armed.ogg in cache "resolved paths".
2008-05-25 13:57:58.741 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/id_on.ogg -- no such entry.
2008-05-25 13:57:58.741 oolite[13993] [resourceManager.foundFile]: Found Sounds/id_on.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/id_on.ogg
2008-05-25 13:57:58.741 oolite[13993] [dataCache.set.success]: Updated entry Sounds/id_on.ogg in cache "resolved paths".
2008-05-25 13:57:58.749 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/mis_lock.ogg -- no such entry.
2008-05-25 13:57:58.749 oolite[13993] [resourceManager.foundFile]: Found Sounds/mis_lock.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/mis_lock.ogg
2008-05-25 13:57:58.749 oolite[13993] [dataCache.set.success]: Updated entry Sounds/mis_lock.ogg in cache "resolved paths".
2008-05-25 13:57:58.756 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/cloak_on.ogg -- no such entry.
2008-05-25 13:57:58.756 oolite[13993] [resourceManager.foundFile]: Found Sounds/cloak_on.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/cloak_on.ogg
2008-05-25 13:57:58.756 oolite[13993] [dataCache.set.success]: Updated entry Sounds/cloak_on.ogg in cache "resolved paths".
2008-05-25 13:57:58.764 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/id_lock.ogg -- no such entry.
2008-05-25 13:57:58.764 oolite[13993] [resourceManager.foundFile]: Found Sounds/id_lock.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/id_lock.ogg
2008-05-25 13:57:58.764 oolite[13993] [dataCache.set.success]: Updated entry Sounds/id_lock.ogg in cache "resolved paths".
2008-05-25 13:57:58.771 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/ws_malf.ogg -- no such entry.
2008-05-25 13:57:58.771 oolite[13993] [resourceManager.foundFile]: Found Sounds/ws_malf.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/ws_malf.ogg
2008-05-25 13:57:58.771 oolite[13993] [dataCache.set.success]: Updated entry Sounds/ws_malf.ogg in cache "resolved paths".
2008-05-25 13:57:58.789 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/auto_deny.ogg -- no such entry.
2008-05-25 13:57:58.790 oolite[13993] [resourceManager.foundFile]: Found Sounds/auto_deny.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/auto_deny.ogg
2008-05-25 13:57:58.790 oolite[13993] [dataCache.set.success]: Updated entry Sounds/auto_deny.ogg in cache "resolved paths".
2008-05-25 13:57:58.798 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/cloak_off.ogg -- no such entry.
2008-05-25 13:57:58.799 oolite[13993] [resourceManager.foundFile]: Found Sounds/cloak_off.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/cloak_off.ogg
2008-05-25 13:57:58.799 oolite[13993] [dataCache.set.success]: Updated entry Sounds/cloak_off.ogg in cache "resolved paths".
2008-05-25 13:57:58.807 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/fuel-leak.ogg -- no such entry.
2008-05-25 13:57:58.808 oolite[13993] [resourceManager.foundFile]: Found Sounds/fuel-leak.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/fuel-leak.ogg
2008-05-25 13:57:58.808 oolite[13993] [dataCache.set.success]: Updated entry Sounds/fuel-leak.ogg in cache "resolved paths".
2008-05-25 13:57:58.824 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/auto_off.ogg -- no such entry.
2008-05-25 13:57:58.824 oolite[13993] [resourceManager.foundFile]: Found Sounds/auto_off.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/auto_off.ogg
2008-05-25 13:57:58.824 oolite[13993] [dataCache.set.success]: Updated entry Sounds/auto_off.ogg in cache "resolved paths".
2008-05-25 13:57:58.844 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/mis_safe.ogg -- no such entry.
2008-05-25 13:57:58.845 oolite[13993] [resourceManager.foundFile]: Found Sounds/mis_safe.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/mis_safe.ogg
2008-05-25 13:57:58.845 oolite[13993] [dataCache.set.success]: Updated entry Sounds/mis_safe.ogg in cache "resolved paths".
2008-05-25 13:57:58.851 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/mass_lock.ogg -- no such entry.
2008-05-25 13:57:58.852 oolite[13993] [resourceManager.foundFile]: Found Sounds/mass_lock.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/mass_lock.ogg
2008-05-25 13:57:58.852 oolite[13993] [dataCache.set.success]: Updated entry Sounds/mass_lock.ogg in cache "resolved paths".
2008-05-25 13:57:58.858 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/In-missile.ogg -- no such entry.
2008-05-25 13:57:58.858 oolite[13993] [resourceManager.foundFile]: Found Sounds/In-missile.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/In-missile.ogg
2008-05-25 13:57:58.858 oolite[13993] [dataCache.set.success]: Updated entry Sounds/In-missile.ogg in cache "resolved paths".
2008-05-25 13:57:58.868 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/game_over.ogg -- no such entry.
2008-05-25 13:57:58.869 oolite[13993] [resourceManager.foundFile]: Found Sounds/game_over.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/game_over.ogg
2008-05-25 13:57:58.869 oolite[13993] [dataCache.set.success]: Updated entry Sounds/game_over.ogg in cache "resolved paths".
2008-05-25 13:57:58.891 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/hs_cdown.ogg -- no such entry.
2008-05-25 13:57:58.892 oolite[13993] [resourceManager.foundFile]: Found Sounds/hs_cdown.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/hs_cdown.ogg
2008-05-25 13:57:58.892 oolite[13993] [dataCache.set.success]: Updated entry Sounds/hs_cdown.ogg in cache "resolved paths".
2008-05-25 13:57:58.924 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/mine_L.ogg -- no such entry.
2008-05-25 13:57:58.924 oolite[13993] [resourceManager.foundFile]: Found Sounds/mine_L.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/mine_L.ogg
2008-05-25 13:57:58.924 oolite[13993] [dataCache.set.success]: Updated entry Sounds/mine_L.ogg in cache "resolved paths".
2008-05-25 13:57:58.946 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/ECM.ogg -- no such entry.
2008-05-25 13:57:58.946 oolite[13993] [resourceManager.foundFile]: Found Sounds/ECM.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/ECM.ogg
2008-05-25 13:57:58.946 oolite[13993] [dataCache.set.success]: Updated entry Sounds/ECM.ogg in cache "resolved paths".
2008-05-25 13:57:58.947 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/witch_fail.ogg -- no such entry.
2008-05-25 13:57:58.947 oolite[13993] [resourceManager.foundFile]: Found Sounds/witch_fail.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/witch_fail.ogg
2008-05-25 13:57:58.947 oolite[13993] [dataCache.set.success]: Updated entry Sounds/witch_fail.ogg in cache "resolved paths".
2008-05-25 13:57:58.956 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/hyp_abort.ogg -- no such entry.
2008-05-25 13:57:58.956 oolite[13993] [resourceManager.foundFile]: Found Sounds/hyp_abort.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/hyp_abort.ogg
2008-05-25 13:57:58.956 oolite[13993] [dataCache.set.success]: Updated entry Sounds/hyp_abort.ogg in cache "resolved paths".
2008-05-25 13:57:58.963 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/cargo_jet.ogg -- no such entry.
2008-05-25 13:57:58.963 oolite[13993] [resourceManager.foundFile]: Found Sounds/cargo_jet.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/cargo_jet.ogg
2008-05-25 13:57:58.964 oolite[13993] [dataCache.set.success]: Updated entry Sounds/cargo_jet.ogg in cache "resolved paths".
2008-05-25 13:57:58.973 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/aegis_station.ogg -- no such entry.
2008-05-25 13:57:58.973 oolite[13993] [resourceManager.foundFile]: Found Sounds/aegis_station.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/aegis_station.ogg
2008-05-25 13:57:58.973 oolite[13993] [dataCache.set.success]: Updated entry Sounds/aegis_station.ogg in cache "resolved paths".
2008-05-25 13:57:58.982 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/no_memtar.ogg -- no such entry.
2008-05-25 13:57:58.982 oolite[13993] [resourceManager.foundFile]: Found Sounds/no_memtar.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/no_memtar.ogg
2008-05-25 13:57:58.983 oolite[13993] [dataCache.set.success]: Updated entry Sounds/no_memtar.ogg in cache "resolved paths".
2008-05-25 13:57:58.989 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/hold_full.ogg -- no such entry.
2008-05-25 13:57:58.990 oolite[13993] [resourceManager.foundFile]: Found Sounds/hold_full.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/hold_full.ogg
2008-05-25 13:57:58.990 oolite[13993] [dataCache.set.success]: Updated entry Sounds/hold_full.ogg in cache "resolved paths".
2008-05-25 13:57:58.999 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/gh_cdown.ogg -- no such entry.
2008-05-25 13:57:58.999 oolite[13993] [resourceManager.foundFile]: Found Sounds/gh_cdown.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/gh_cdown.ogg
2008-05-25 13:57:58.999 oolite[13993] [dataCache.set.success]: Updated entry Sounds/gh_cdown.ogg in cache "resolved paths".
2008-05-25 13:57:59.060 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/energylow.ogg -- no such entry.
2008-05-25 13:57:59.061 oolite[13993] [resourceManager.foundFile]: Found Sounds/energylow.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/energylow.ogg
2008-05-25 13:57:59.061 oolite[13993] [dataCache.set.success]: Updated entry Sounds/energylow.ogg in cache "resolved paths".
2008-05-25 13:57:59.090 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/aegis_planet.ogg -- no such entry.
2008-05-25 13:57:59.091 oolite[13993] [resourceManager.foundFile]: Found Sounds/aegis_planet.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/aegis_planet.ogg
2008-05-25 13:57:59.091 oolite[13993] [dataCache.set.success]: Updated entry Sounds/aegis_planet.ogg in cache "resolved paths".
2008-05-25 13:57:59.100 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/nosystem.ogg -- no such entry.
2008-05-25 13:57:59.101 oolite[13993] [resourceManager.foundFile]: Found Sounds/nosystem.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/nosystem.ogg
2008-05-25 13:57:59.101 oolite[13993] [dataCache.set.success]: Updated entry Sounds/nosystem.ogg in cache "resolved paths".
2008-05-25 13:57:59.118 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/id_off.ogg -- no such entry.
2008-05-25 13:57:59.118 oolite[13993] [resourceManager.foundFile]: Found Sounds/id_off.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/id_off.ogg
2008-05-25 13:57:59.118 oolite[13993] [dataCache.set.success]: Updated entry Sounds/id_off.ogg in cache "resolved paths".
2008-05-25 13:57:59.126 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/auto_on.ogg -- no such entry.
2008-05-25 13:57:59.126 oolite[13993] [resourceManager.foundFile]: Found Sounds/auto_on.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/auto_on.ogg
2008-05-25 13:57:59.127 oolite[13993] [dataCache.set.success]: Updated entry Sounds/auto_on.ogg in cache "resolved paths".
2008-05-25 13:57:59.381 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/pod_scoop.ogg -- no such entry.
2008-05-25 13:57:59.381 oolite[13993] [resourceManager.foundFile]: Found Sounds/pod_scoop.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/pod_scoop.ogg
2008-05-25 13:57:59.381 oolite[13993] [dataCache.set.success]: Updated entry Sounds/pod_scoop.ogg in cache "resolved paths".
2008-05-25 13:57:59.404 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/w_hole.ogg -- no such entry.
2008-05-25 13:57:59.404 oolite[13993] [resourceManager.foundFile]: Found Sounds/w_hole.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/w_hole.ogg
2008-05-25 13:57:59.404 oolite[13993] [dataCache.set.success]: Updated entry Sounds/w_hole.ogg in cache "resolved paths".
2008-05-25 13:57:59.417 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/weap_heat.ogg -- no such entry.
2008-05-25 13:57:59.417 oolite[13993] [resourceManager.foundFile]: Found Sounds/weap_heat.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/weap_heat.ogg
2008-05-25 13:57:59.417 oolite[13993] [dataCache.set.success]: Updated entry Sounds/weap_heat.ogg in cache "resolved paths".
2008-05-25 13:57:59.429 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/auto_norange.ogg -- no such entry.
2008-05-25 13:57:59.430 oolite[13993] [resourceManager.foundFile]: Found Sounds/auto_norange.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/auto_norange.ogg
2008-05-25 13:57:59.430 oolite[13993] [dataCache.set.success]: Updated entry Sounds/auto_norange.ogg in cache "resolved paths".
2008-05-25 13:57:59.445 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/tar_lost.ogg -- no such entry.
2008-05-25 13:57:59.445 oolite[13993] [resourceManager.foundFile]: Found Sounds/tar_lost.ogg at /home/ebw/.Oolite/AddOns/custsounds.oxp/Sounds/tar_lost.ogg
2008-05-25 13:57:59.446 oolite[13993] [dataCache.set.success]: Updated entry Sounds/tar_lost.ogg in cache "resolved paths".
2008-05-25 13:57:59.459 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/planetinfo.plist merge:smart -- no such entry.
2008-05-25 13:57:59.468 oolite[13993] [dataCache.set.success]: Updated entry Config/planetinfo.plist merge:smart in cache "dictionaries".
2008-05-25 13:57:59.468 oolite[13993] [dataCache.retrieve.failed]: Failed to retreive"arrays" cache object Config/pirate-victim-roles.plist merge:yes -- no such cache.
2008-05-25 13:57:59.469 oolite[13993] [dataCache.retrieve.failed]: Failed to retreive"arrays" cache object Config/equipment.plist merge:yes -- no such cache.
2008-05-25 13:57:59.474 oolite[13993] [dataCache.set.success]: Updated entry Config/equipment.plist merge:yes in cache "arrays".
2008-05-25 13:57:59.475 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/missiontext.plist merge:basic -- no such entry.
2008-05-25 13:57:59.486 oolite[13993] [dataCache.set.success]: Updated entry Config/missiontext.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:59.486 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "arrays" cache object Config/demoships.plist merge:yes -- no such entry.
2008-05-25 13:57:59.496 oolite[13993] [dataCache.set.success]: Updated entry Config/demoships.plist merge:yes in cache "arrays".
2008-05-25 13:57:59.497 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/hud.plist merge:basic -- no such entry.
2008-05-25 13:57:59.501 oolite[13993] [dataCache.set.success]: Updated entry Config/hud.plist merge:basic in cache "dictionaries".
2008-05-25 13:57:59.502 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object Config/oolite-font.plist merge:none -- no such entry.
2008-05-25 13:57:59.503 oolite[13993] [dataCache.retrieve.success]: Retrieved "dictionaries" cache object Config/commodities.plist merge:basic.
2008-05-25 13:57:59.503 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.504 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.504 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.505 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.506 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.507 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.507 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.508 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.509 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.510 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.511 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.511 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.512 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.513 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.514 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.514 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.516 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.517 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.517 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.518 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.519 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.520 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.520 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.521 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.522 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.523 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.523 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.524 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.525 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.526 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.526 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.527 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.528 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.529 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.529 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.530 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.531 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.532 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.532 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.533 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.534 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.535 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.535 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.536 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.537 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.538 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.538 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.539 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.540 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.541 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.541 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.542 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.543 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.544 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.545 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.545 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.546 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.547 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.548 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.548 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.549 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.550 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.551 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.552 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.553 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.553 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.554 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.555 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.556 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.556 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.557 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.558 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.559 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.560 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.560 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.561 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.562 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.563 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.563 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.564 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.565 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.566 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.566 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.567 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.568 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.569 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.569 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.570 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.571 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.572 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.572 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.573 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.574 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Textures/trumblekit.png -- no such entry.
2008-05-25 13:57:59.575 oolite[13993] [files.notFound]: ----- WARNING: Could not find texture file "trumblekit.png". Used default no textures material instead.
2008-05-25 13:57:59.575 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumble.ogg -- no such entry.
2008-05-25 13:57:59.576 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "resolved paths" cache object Sounds/trumblesqueal.ogg -- no such entry.
2008-05-25 13:57:59.577 oolite[13993] [dataCache.retrieve.failed]: Failed to retrieve "dictionaries" cache object AIs/dockingAI.plist merge:none -- no such entry.
2008-05-25 13:57:59.578 oolite[13993] [script.debug.replaceVariablesInString]: EXPANSION: "system-description-string" becomes "system-description-string"
Floating point exception

Sorry for the Noise. I only want to play oolite 1.71.2 and not ever crashing oolite 1.72 but I'm cursed! The autopackage installed the version 1.72 debian only has 1.65 .... and this manual doesn't work either ...
User avatar
JensAyton
Grand Admiral Emeritus
Grand Admiral Emeritus
Posts: 6657
Joined: Sat Apr 02, 2005 2:43 pm
Location: Sweden
Contact:

Post by JensAyton »

You’re somehow using a recent version of the oolite executable with 1.65’s resources directory. I’m not quite sure how you managed that, but it definitely won’t work. (Most of the messages aren’t actually a problem, they would be suppressed by logcontrol.plist if you had the right resources. The “Floating point exception” is a crash, which is a bug, but it probably wouldn’t occur if you had the right resources.)
krombart
Competent
Competent
Posts: 52
Joined: Tue May 20, 2008 9:25 am

Post by krombart »

LOL.

I don't know how all that happend. What I did to get it working now:

I deinstalled all packaged (.deb and autopackage) versions of oolite and
followed your manual with the tar.bz2 which can be downloaded from berlios. No svn here. Now everything seems to work. The game just crashed a bit often before I remove RandomHits OXP.
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8501
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Post by DaddyHoggy »

Help! Have fallen at the first hurdle:
john@new-ubuntu:~$ sudo apt-get install gobjc gnustep-core-devel libsdl-mixer1.2-dev subversion
[sudo] password for john:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package gobjc
john@new-ubuntu:~$
Cut and pasted from your post. Tried Package Manager too. If I search for "gobjc" it doesn't find anything. I'm on U 7.10 is this the issue?

TIA

DaddyH
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8501
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Post by DaddyHoggy »

OK I've managed to move on quite a bit (needed to see some more repositories) but now I'm stuck again:
john@new-ubuntu:~/Oolite-dev/1.71-maintenance$ apt-cache showpkg gnustep-make
Package: gnustep-make
Versions:
1.13.0-1 (/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_gutsy_universe_binary-i386_Packages) (/var/lib/dpkg/status)
Description Language:
File: /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_gutsy_universe_binary-i386_Packages
MD5: 23492c2666e63f3bb2f7269db1ba2af3


Reverse Depends:
libgnustep-base-dev,gnustep-make 1.13.0
gnustep-ppd,gnustep-make 0.11.0
gnustep-make-doc,gnustep-make 1.11.0
gnustep-gui-doc,gnustep-make 1.7.3
gnustep-core,gnustep-make
gnustep-common,gnustep-make 1.12.0
gnustep-base-doc,gnustep-make 1.7.3
Dependencies:
1.13.0-1 - libc6 (2 2.4-1) gnustep-common (0 (null)) gnustep-make-doc (2 1.12.0) gnustep-base-common (0 (null)) gnustep-base1 (3 1.7.3) gnustep-base-examples (3 1.7.3) libgnustep-base1.10 (0 (null)) gnustep-ppd (3 1.0.0-5) gnustep-back (3 0.10.0)
Provides:
1.13.0-1 -
Reverse Provides:
john@new-ubuntu:~/Oolite-dev/1.71-maintenance$ make
GNUmakefile:1: /common.make: No such file or directory
GNUmakefile:31: /objc.make: No such file or directory
make: *** No rule to make target `/objc.make'. Stop.
So my version is 1.13.0 which is < 2.0.0 so post indicates I should just type "make" but typing just "make" results in the error you can see - it's now approaching 2am and I think I shall give up for the night/morning
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
another_commander
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 6552
Joined: Wed Feb 28, 2007 7:54 am

Post by another_commander »

Something seems to be wrong with the GNUstep installation. Below the Dependencies: line, there are the version numbers of the software needed in parenthesis, but for gnustep-common and gnustep-make-common these are null. In fact, judging from the error you get at the end, it looks like gnustep-make has not been installed at all.

I have already emailed winston about the situation and I hope that a new Linux installer will be up soon.
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8501
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Post by DaddyHoggy »

Thanks A_C

Anything I can do in the meantime? I was never this adventurous with Fiesty so, while I consider myself technically competent, this is new territory for me. Is there some way I can install GNUstep properly?

Cheers

DaddyH
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
another_commander
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 6552
Joined: Wed Feb 28, 2007 7:54 am

Post by another_commander »

As I am not a Linux user, I cannot really be of much help. The only thing I could recommend to do is to use the Synaptic Package Manager to install GNUstep instead of the command line (not sure which method you used). I have seen Synaptic in action and it does install GNUstep correctly. Just make sure that you get gnustep-base with all its dependencies.
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8501
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Post by DaddyHoggy »

Couldn't think of a better way to do it - I grabbed an Image off the package manager - the files which are "null" in the quote seem to be installed as far SPM are concerned - unless I'm being dense...

Image
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
Post Reply