Compiling 2.8.0-svn in Linux

Help regarding development/scripting, troubleshooting or just general gameplay -- anything that hasn't already been answered in the Wiki or pinned FAQs.

Moderator: Developers

Nevon
Acid Blob (New member)
Acid Blob (New member)
Posts: 8
Joined: Sun Nov 14, 2010 6:06 pm
Location: SE
Contact:

Compiling 2.8.0-svn in Linux

Post by Nevon »

Because the 2.7.7 version in the Ubuntu repos has a bug that makes the game completely unplayable (incredibly bad performance), I tried the Linux download of 2.8.0, but there seems to be a known bug with writing permission to some files. Even after making ~/.egoboo-2.8.x/ writable and having moved the config files there, I still wasn't able to load any modules or even quit the game.

Since those issues were reported a long time ago, and you're getting closer to a 2.8.1 release, I figured the problem would be solved. That's why I'm attemping an svn build.

tl;dr - start reading here!
After doing a checkout of the 2.8.x branch, I get this error when running make:

Code: Select all

nevon@nevon-desktop:~/workspace/egoboo/2.8.x$ make
make -C ./game all PREFIX=/usr PROJ_NAME=egoboo-2.x
make[1]: Entering directory `/home/nevon/workspace/egoboo/2.8.x/game'
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o bbox.o bbox.c
bbox.c:33: warning: ‘cv_list_count’ defined but not used
bbox.c:34: warning: ‘cv_list’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o bsp.o bsp.c
In file included from bsp.c:24:
bsp.inl:31: error: static declaration of ‘BSP_aabb_overlap’ follows non-static declaration
bsp.h:55: note: previous declaration of ‘BSP_aabb_overlap’ was here
bsp.inl:32: error: static declaration of ‘BSP_aabb_lhs_contains_rhs’ follows non-static declaration
bsp.h:54: note: previous declaration of ‘BSP_aabb_lhs_contains_rhs’ was here
make[1]: *** [bsp.o] Error 1
make[1]: Leaving directory `/home/nevon/workspace/egoboo/2.8.x/game'
make: *** [egoboo] Error 2
I previously compiled the version that's available for direct download, so I already have all the necessary dependencies.

Any ideas what's gone wrong, and how I can fix it?
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

I'm not sure if the 2.8.x branch currently compiles under gcc. It will compile under gcc when it's ready for release. The makefile is also outdated since we've added a few new source files to the project since it was last updated.
Nevon
Acid Blob (New member)
Acid Blob (New member)
Posts: 8
Joined: Sun Nov 14, 2010 6:06 pm
Location: SE
Contact:

Post by Nevon »

Zefz wrote:I'm not sure if the 2.8.x branch currently compiles under gcc. It will compile under gcc when it's ready for release. The makefile is also outdated since we've added a few new source files to the project since it was last updated.
But I thought the 2.8.x branch was stable, since I assume that's where the 2.8.0 release came from?
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

The 2.8.x branch is being worked on right now to create the 2.8.1 release

We have already fixed the linux file system problems along with a hundred other things.
Nevon
Acid Blob (New member)
Acid Blob (New member)
Posts: 8
Joined: Sun Nov 14, 2010 6:06 pm
Location: SE
Contact:

Post by Nevon »

Zefz wrote:The 2.8.x branch is being worked on right now to create the 2.8.1 release

We have already fixed the linux file system problems along with a hundred other things.
I see. Any estimation on when you'll think 2.8.1 will be released, or at least when it'll be possible to build for Linux?
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

We are almost finished with it, we only need to fix a bug that causes mounts not to work. There seems to be a issue with textures when you restart a module as well, maybe that one also needs to be looked at first.
bgbirdsey
{]-[0{0|307 (Developer)
{]-[0{0|307 (Developer)
Posts: 1864
Joined: Wed Jul 23, 2008 4:22 am
Location: Minnesota, USA

Post by bgbirdsey »

I just fixed all the errors in gcc.

You will still have a problem with the Makefile, since it does not have all of the files in it that are necessary for the build. You can manually enter them, or wait until I can get around to it.

Cheers.
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

I have updated the makefile, but I haven't been able to test if it compiles. Tell us how it goes.
Nevon
Acid Blob (New member)
Acid Blob (New member)
Posts: 8
Joined: Sun Nov 14, 2010 6:06 pm
Location: SE
Contact:

Post by Nevon »

Did a checkout of the latest 2.8.X, it seems to have compiled just fine, however, it won't start and there doesn't seem to be a rule in the makefile for installing.

Output of gcc during compilation:

Code: Select all

nevon@nevon-desktop:~/workspace/egoboo/2.8.x$ make all
make -C ./game all PREFIX=/usr PROJ_NAME=egoboo-2.x
make[1]: Entering directory `/home/nevon/workspace/egoboo/2.8.x/game'
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o bbox.o bbox.c
bbox.c:33: warning: ‘cv_list_count’ defined but not used
bbox.c:34: warning: ‘cv_list’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o bsp.o bsp.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o camera.o camera.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o char.o char.c
char.c:555: warning: ‘chr_log_script_time’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o client.o client.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o clock.o clock.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o collision.o collision.c
collision.c: In function ‘CoNode_generate_hash’:
collision.c:226: warning: large integer implicitly truncated to unsigned type
collision.c:236: warning: large integer implicitly truncated to unsigned type
collision.c: At top level:
collision.c:507: warning: ‘add_chr_chr_interaction’ defined but not used
collision.c:572: warning: ‘add_chr_prt_interaction’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_console.o egoboo_console.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_endian.o egoboo_endian.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_fileutil.o egoboo_fileutil.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_math.o egoboo_math.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_setup.o egoboo_setup.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_strutil.o egoboo_strutil.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_typedef.o egoboo_typedef.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_vfs.o egoboo_vfs.c
egoboo_vfs.c: In function ‘_vfs_vfscanf’:
egoboo_vfs.c:2181: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result
egoboo_vfs.c: At top level:
egoboo_vfs.c:1829: warning: ‘_vfs_copyFile’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o enchant.o enchant.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_common.o file_common.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o font_bmp.o font_bmp.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o font_ttf.o font_ttf.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o game.o game.c
game.c: In function ‘do_game_proc_run’:
game.c:1332: warning: enumeration value ‘proc_invalid’ not handled in switch
game.c: At top level:
game.c:4344: warning: ‘collide_ray_with_characters’ defined but not used
game.c:3008: warning: ‘load_all_global_objects’ defined but not used
game.c:3684: warning: ‘game_end_menu’ defined but not used
game.c:4197: warning: ‘do_game_hud’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o graphic.o graphic.c
graphic.c:4880: warning: ‘gfx_disable_texturing’ defined but not used
graphic.c: In function ‘do_grid_lighting’:
graphic.c:5509: warning: ‘pdyna’ may be used uninitialized in this function
graphic.c:5404: warning: ‘light_bound.ymax’ may be used uninitialized in this function
graphic.c:5404: warning: ‘light_bound.ymin’ may be used uninitialized in this function
graphic.c:5404: warning: ‘light_bound.xmax’ may be used uninitialized in this function
graphic.c:5404: warning: ‘light_bound.xmin’ may be used uninitialized in this function
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o graphic_fan.o graphic_fan.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o graphic_mad.o graphic_mad.c
graphic_mad.c:713: warning: ‘chr_draw_grips’ defined but not used
graphic_mad.c:534: warning: ‘render_chr_bbox’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o graphic_prt.o graphic_prt.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o hash.o hash.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o input.o input.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o lighting.o lighting.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o IDSZ_map.o IDSZ_map.c
IDSZ_map.c: In function ‘idsz_map_iterate’:
IDSZ_map.c:172: warning: assignment discards qualifiers from pointer target type
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o link.o link.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o log.o log.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o mad.o mad.c
mad.c:962: warning: ‘mad_ctor’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o md2.o md2.c
md2.c: In function ‘md2_load’:
md2.c:309: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
md2.c:366: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
md2.c:379: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
md2.c:393: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
md2.c:402: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
md2.c:423: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
md2.c:485: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
md2.c:511: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o menu.o menu.c
menu.c:4834: warning: ‘TxTitleImage_release_all’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o mesh.o mesh.c
mesh.c: In function ‘mesh_test_wall’:
mesh.c:1389: warning: assignment discards qualifiers from pointer target type
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o network.o network.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o particle.o particle.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o passage.o passage.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o profile.o profile.c
profile.c: In function ‘load_profile_skins_vfs’:
profile.c:548: warning: array subscript is above array bounds
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o quest.o quest.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o script.o script.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o script_compile.o script_compile.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o script_functions.o script_functions.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o server.o server.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o sound.o sound.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o texture.o texture.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o ui.o ui.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo.o egoboo.c
egoboo.c: In function ‘do_ego_proc_run’:
egoboo.c:363: warning: enumeration value ‘proc_invalid’ not handled in switch
egoboo.c: At top level:
egoboo.c:349: warning: ‘do_ego_proc_run’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o physics.o physics.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_process.o egoboo_process.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o ChrList.o ChrList.c
ChrList.c:376: warning: ‘ChrList_remove_free’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o EncList.o EncList.c
EncList.c:377: warning: ‘EncList_remove_free’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o PrtList.o PrtList.c
PrtList.c:528: warning: ‘PrtList_remove_free’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o egoboo_object.o egoboo_object.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/cap_file.o file_formats/cap_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/configfile.o file_formats/configfile.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/controls_file.o file_formats/controls_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/eve_file.o file_formats/eve_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/id_md2.o file_formats/id_md2.c
file_formats/id_md2.c: In function ‘id_md2_load’:
file_formats/id_md2.c:65: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:85: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:88: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:91: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:94: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:104: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:105: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:106: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/id_md2.c:107: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/module_file.o file_formats/module_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/mpd_file.o file_formats/mpd_file.c
file_formats/mpd_file.c: In function ‘mpd_load’:
file_formats/mpd_file.c:217: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:226: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:229: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:238: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:261: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:270: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:277: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:284: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:291: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
file_formats/mpd_file.c:298: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/passage_file.o file_formats/passage_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/pip_file.o file_formats/pip_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/scancode_file.o file_formats/scancode_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/SDL_md2.o file_formats/SDL_md2.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/spawn_file.o file_formats/spawn_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/template.o file_formats/template.c
file_formats/template.c:65: warning: ‘template_seek_marker’ defined but not used
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/treasure_table_file.o file_formats/treasure_table_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o file_formats/wawalite_file.o file_formats/wawalite_file.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o extensions/ogl_debug.o extensions/ogl_debug.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o extensions/ogl_extensions.o extensions/ogl_extensions.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o extensions/ogl_include.o extensions/ogl_include.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o extensions/ogl_texture.o extensions/ogl_texture.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o extensions/SDL_extensions.o extensions/SDL_extensions.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o extensions/SDL_GL_extensions.o extensions/SDL_GL_extensions.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o platform/file_linux.o platform/file_linux.c
gcc -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform   -c -o platform/sys_linux.o platform/sys_linux.c
gcc -o egoboo-2.x bbox.o bsp.o camera.o char.o client.o clock.o collision.o egoboo_console.o egoboo_endian.o egoboo_fileutil.o egoboo_math.o egoboo_setup.o egoboo_strutil.o egoboo_typedef.o egoboo_vfs.o enchant.o file_common.o font_bmp.o font_ttf.o game.o graphic.o graphic_fan.o graphic_mad.o graphic_prt.o hash.o input.o lighting.o IDSZ_map.o link.o log.o mad.o md2.o menu.o mesh.o network.o particle.o passage.o profile.o quest.o script.o script_compile.o script_functions.o server.o sound.o texture.o ui.o egoboo.o physics.o egoboo_process.o ChrList.o EncList.o PrtList.o egoboo_object.o file_formats/cap_file.o file_formats/configfile.o file_formats/controls_file.o file_formats/eve_file.o file_formats/id_md2.o file_formats/module_file.o file_formats/mpd_file.o file_formats/passage_file.o file_formats/pip_file.o file_formats/scancode_file.o file_formats/SDL_md2.o file_formats/spawn_file.o file_formats/template.o file_formats/treasure_table_file.o file_formats/wawalite_file.o extensions/ogl_debug.o extensions/ogl_extensions.o extensions/ogl_include.o extensions/ogl_texture.o extensions/SDL_extensions.o extensions/SDL_GL_extensions.o platform/file_linux.o platform/sys_linux.o -L/usr/lib -lSDL -L../enet/lib -lSDL_ttf -lSDL_mixer -lGL -lGLU -lSDL_image -lphysfs -lenet -Os -Wall -DPREFIX=\"/usr\" -D_NIX_PREFIX -I. -I.. -I../enet/include -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I./extensions -I./file_formats -I./platform
make[1]: Leaving directory `/home/nevon/workspace/egoboo/2.8.x/game'
When I try to run it, the window opens and then closes. The log seems to indicate that it can't read some resources:

Code: Select all

Starting Egoboo 2.8.1 ...
INFO: PhysFS file system version 2.0.1 has been initialized...
INFO: Initializing Linux file system...
INFO: Initializing clock services...
INFO: Loaded setup file - "/home/nevon/.egoboo-2.x/setup.txt".
INFO: Initializing SDL version 1.2.14... Success!
INFO: Intializing SDL Timing Services... Success!
INFO: Intializing SDL Event Threading... Success!
INFO: Intializing SDL Joystick... Success!
INFO: Intializing SDL Video... Success!
INFO: Opening SDL Video Mode...

==============================================================
SDL set video mode to the current parameters

SDL window parameters
	width == 800, height == 600, depth == 32

SDL flags
    windowed
    SDL software surface
    SDL single buffer
	OpenGL support
	OpenGL-compatible blitting

SDL_GL_Attribtes
	SDL_GL_DOUBLEBUFFER       == 1
	SDL_GL_STENCIL_SIZE       == 0
	SDL_GL_ACCUM_RED_SIZE     == 16
	SDL_GL_ACCUM_GREEN_SIZE   == 16
	SDL_GL_ACCUM_BLUE_SIZE    == 16
	SDL_GL_ACCUM_ALPHA_SIZE   == 16
	SDL_GL_STEREO             == 0

SDL using video driver - x11
	Available full-screen video modes...
    	Video Mode - 1920 x 1080
    	Video Mode - 1680 x 1050
    	Video Mode - 1600 x 1024
    	Video Mode - 1600 x 900
    	Video Mode - 1440 x 900
    	Video Mode - 1400 x 1050
    	Video Mode - 1360 x 768
    	Video Mode - 1280 x 1024
    	Video Mode - 1280 x 960
    	Video Mode - 1280 x 720
    	Video Mode - 1152 x 864
    	Video Mode - 1152 x 720
    	Video Mode - 1024 x 768
    	Video Mode - 960 x 720
    	Video Mode - 960 x 600
    	Video Mode - 960 x 540
    	Video Mode - 928 x 696
    	Video Mode - 896 x 672
    	Video Mode - 840 x 525
    	Video Mode - 832 x 624
    	Video Mode - 800 x 600
    	Video Mode - 800 x 512
    	Video Mode - 720 x 450
    	Video Mode - 720 x 400
    	Video Mode - 700 x 525
    	Video Mode - 680 x 384
    	Video Mode - 640 x 512
    	Video Mode - 640 x 480
    	Video Mode - 640 x 400
    	Video Mode - 640 x 350
    	Video Mode - 576 x 432
    	Video Mode - 512 x 384
    	Video Mode - 416 x 312
    	Video Mode - 400 x 300
    	Video Mode - 360 x 200
    	Video Mode - 320 x 240
    	Video Mode - 320 x 200
    	Video Mode - 320 x 175
==============================================================

OpenGL state parameters
	gl_version    == 4.1.0 NVIDIA 260.19.06
	gl_vendor     == NVIDIA Corporation
	gl_renderer   == GeForce GTX 460/PCI/SSE2
	gl_extensions == GL_ARB_blend_func_extended GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_copy_buffer GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_indirect GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_ES2_compatibility GL_ARB_explicit_attrib_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_geometry_shader4 GL_ARB_get_program_binary GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_imaging GL_ARB_instanced_arrays GL_ARB_map_buffer_range GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_provoking_vertex GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_separate_shader_objects GL_ARB_shader_bit_encoding GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_subroutine GL_ARB_shading_language_100 GL_ARB_shadow GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_compression GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_cube_map_array GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_swizzle GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array 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_bindable_uniform 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_direct_state_access GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXTX_framebuffer_mixed_formats GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_shader_objects GL_EXT_separate_specular_color GL_EXT_shader_image_load_store GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_buffer_object GL_EXT_texture_compression_latc GL_EXT_texture_compression_rgtc 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_integer GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_shared_exponent GL_EXT_texture_sRGB GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback2 GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KTX_buffer_region GL_NV_blend_square GL_NV_conditional_render GL_NV_copy_depth_to_color GL_NV_copy_image GL_NV_depth_buffer_float GL_NV_depth_clamp GL_NV_explicit_multisample 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_geometry_shader4 GL_NV_gpu_program4 GL_NV_gpu_program4_1 GL_NV_gpu_program5 GL_NV_gpu_program_fp64 GL_NV_gpu_shader5 GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_coverage GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_parameter_buffer_object GL_NV_parameter_buffer_object2 GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_shader_buffer_load GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_expand_normal GL_NV_texture_multisample GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_transform_feedback GL_NV_transform_feedback2 GL_NV_vdpau_interop GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_attrib_integer_64bit GL_NV_vertex_buffer_unified_memory 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_NVX_gpu_memory_info GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum 
	glu_version    == (null)
	glu_extensions == (null)

	GL_MAX_MODELVIEW_STACK_DEPTH     == 32
	GL_MAX_PROJECTION_STACK_DEPTH    == 4
	GL_MAX_TEXTURE_STACK_DEPTH       == 10
	GL_MAX_NAME_STACK_DEPTH          == 128
	GL_MAX_ATTRIB_STACK_DEPTH        == 16
	GL_MAX_CLIENT_ATTRIB_STACK_DEPTH == 16

	GL_SUBPIXEL_BITS          == 8
	GL_POINT_SIZE_RANGE       == 1.000000 - 63.375000
	GL_POINT_SIZE_GRANULARITY == 0.125000
	GL_LINE_WIDTH_RANGE       == 0.500000 - 10.000000
	GL_LINE_WIDTH_GRANULARITY == 0.125000

	GL_MAX_VIEWPORT_DIMS == 16384, 16384
	GL_AUX_BUFFERS       == 1
	GL_RGBA_MODE         == TRUE
	GL_INDEX_MODE        == FALSE
	GL_DOUBLEBUFFER      == TRUE
	GL_STEREO            == FALSE
	GL_RED_BITS          == 8
	GL_GREEN_BITS        == 8
	GL_BLUE_BITS         == 8
	GL_ALPHA_BITS        == 0
	GL_INDEX_BITS        == 0
	GL_DEPTH_BITS        == 24
	GL_STENCIL_BITS      == 0
	GL_ACCUM_RED_BITS    == 16
	GL_ACCUM_GREEN_BITS  == 16
	GL_ACCUM_BLUE_BITS   == 16
	GL_ACCUM_ALPHA_BITS  == 16

	GL_MAX_LIGHTS        == 8
	GL_MAX_CLIP_PLANES   == 6
	GL_MAX_TEXTURE_SIZE  == 16384

	GL_MAX_PIXEL_MAP_TABLE == 65536
	GL_MAX_LIST_NESTING    == 64
	GL_MAX_EVAL_ORDER      == 8

	GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT == 16.000000
==============================================================
Success!
INFO: Initializing the SDL_ttf font handler version 2.0.9... Success!
INFO: net_initialize: Networking not enabled.
INFO: Initializing SDL_Image version 1.2.10... Success!
INFO: Intializing SDL Audio... Success!
INFO: Initializing SDL_mixer audio services version 1.2.8... Success!
WARN: Could not load random treasure tables! (mp_data/randomtreasure.txt)
FATAL ERROR: Could not load the menu font! ("mp_data/Bo_Chen.ttf")
INFO: memory_cleanUp() - Attempting to clean up loaded things in memory... INFO: Resetting module data
Success!
INFO: Exiting Egoboo 2.8.1 the good way...
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

this is why it stops:
FATAL ERROR: Could not load the menu font! ("mp_data/Bo_Chen.ttf")
It cannot find the Bo_chen.ttf font which means you don't have the latest data files for Egoboo (The latest data files for Egoboo is in the branch named install).

We had to change the font to something that was open source. If you want only to download the font from the SVN, then here it is:
http://egoboo.svn.sourceforge.net/viewv ... ision=1331
bgbirdsey
{]-[0{0|307 (Developer)
{]-[0{0|307 (Developer)
Posts: 1864
Joined: Wed Jul 23, 2008 4:22 am
Location: Minnesota, USA

Post by bgbirdsey »

This also causes a small problem for the "Make install" command. You can checkout the install branch, but you will have to copy the 2.8.x dir and the install dir into a single dir to get a proper source distro for linux. A bit of a pain, but we did it so that various branches do not have the same 100MB of data copied over and over again.
Nevon
Acid Blob (New member)
Acid Blob (New member)
Posts: 8
Joined: Sun Nov 14, 2010 6:06 pm
Location: SE
Contact:

Post by Nevon »

Right, I feel a tad bit dumb now, but I can't seem to get it to find the font, despite having copied the files from each branch and pasted them into a common directory - essentially "merging" the two. I still get the same error about the font.

You can see the directory structure below. Did I misunderstand how I was supposed to merge the two?

Code: Select all

nevon@nevon-desktop:~/workspace/egoboo/2.8.x-r1384$ tree -d
.
|-- basicdat
|   |-- globalobjects
|   |   |-- book.obj
|   |   |-- items
|   |   |   |-- ammobox.obj
|   |   |   |-- bomb.obj
|   |   |   |-- caltrop.obj
|   |   |   |-- crowbar.obj
|   |   |   |-- deathdevice.obj
|   |   |   |-- dungeonmap.obj
|   |   |   |-- fortunecookie.obj
|   |   |   |-- gem.obj
|   |   |   |-- keya.obj
|   |   |   |-- keyb.obj
|   |   |   |-- keyc.obj
|   |   |   |-- keye.obj
|   |   |   |-- keyr.obj
|   |   |   |-- lamp.obj
|   |   |   |-- mushroom.obj
|   |   |   |-- pick.obj
|   |   |   |-- plunger.obj
|   |   |   |-- quiver.obj
|   |   |   |-- shovel.obj
|   |   |   |-- torch.obj
|   |   |   |-- touristguide.obj
|   |   |   `-- toybox.obj
|   |   |-- magic
|   |   |   |-- acidrain.obj
|   |   |   |-- animatemimic.obj
|   |   |   |-- animate.obj
|   |   |   |-- arcanenova.obj
|   |   |   |-- battleward.obj
|   |   |   |-- berserk.obj
|   |   |   |-- bind.obj
|   |   |   |-- bodyguard.obj
|   |   |   |-- bridge.obj
|   |   |   |-- burning.obj
|   |   |   |-- clairvoyance.obj
|   |   |   |-- combatbless.obj
|   |   |   |-- confusion.obj
|   |   |   |-- cookiemancy.obj
|   |   |   |-- darkritual.obj
|   |   |   |-- deathcloud.obj
|   |   |   |-- disenchant.obj
|   |   |   |-- disintergrate.obj
|   |   |   |-- disjunction.obj
|   |   |   |-- divineshield.obj
|   |   |   |-- enchant.obj
|   |   |   |-- exorcism.obj
|   |   |   |-- fireball.obj
|   |   |   |-- firering.obj
|   |   |   |-- flamedart.obj
|   |   |   |-- frostblast.obj
|   |   |   |-- glacialspike.obj
|   |   |   |-- haste.obj
|   |   |   |-- holybolt.obj
|   |   |   |-- hrune.obj
|   |   |   |-- iceray.obj
|   |   |   |-- icicles.obj
|   |   |   |-- levitate.obj
|   |   |   |-- lifedrain.obj
|   |   |   |-- light.obj
|   |   |   |-- metamorph.obj
|   |   |   |-- meteor.obj
|   |   |   |-- meteorswarm.obj
|   |   |   |-- missile.obj
|   |   |   |-- moonbeam.obj
|   |   |   |-- morph.obj
|   |   |   |-- mount.obj
|   |   |   |-- orbstorm.obj
|   |   |   |-- protect.obj
|   |   |   |-- regeneration.obj
|   |   |   |-- resistelements.obj
|   |   |   |-- ressurection.obj
|   |   |   |-- restoration.obj
|   |   |   |-- rot.obj
|   |   |   |-- sanctify.obj
|   |   |   |-- shock.obj
|   |   |   |-- size.obj
|   |   |   |-- skulltrap.obj
|   |   |   |-- skullwall.obj
|   |   |   |-- sordwall.obj
|   |   |   |-- storms.obj
|   |   |   |-- summoncrab.obj
|   |   |   |-- summonspellII.obj
|   |   |   |-- syphonmana.obj
|   |   |   |-- teleport.obj
|   |   |   |-- truesight.obj
|   |   |   |-- unlock.obj
|   |   |   |-- unseen.obj
|   |   |   |-- voodoo.obj
|   |   |   |-- wandfireball.obj
|   |   |   |-- wandiceball.obj
|   |   |   |-- wandjester.obj
|   |   |   |-- wandlightning.obj
|   |   |   |-- wandmissile.obj
|   |   |   |-- wandorbstorm.obj
|   |   |   |-- whirlwind.obj
|   |   |   `-- wonder.obj
|   |   |-- magic_item
|   |   |   |-- bbrace.obj
|   |   |   |-- camulet.obj
|   |   |   |-- dexamulet.obj
|   |   |   |-- dsamulet.obj
|   |   |   |-- eamulet.obj
|   |   |   |-- fbrace.obj
|   |   |   |-- ibrace.obj
|   |   |   |-- jring.obj
|   |   |   |-- levitationshoes.obj
|   |   |   |-- lifering.obj
|   |   |   |-- lrbrace.obj
|   |   |   |-- luckring.obj
|   |   |   |-- pring.obj
|   |   |   |-- regamulet.obj
|   |   |   |-- runningshoes.obj
|   |   |   |-- sbrace.obj
|   |   |   |-- slowshoes.obj
|   |   |   |-- stramulet.obj
|   |   |   |-- stridershoes.obj
|   |   |   |-- tbrace.obj
|   |   |   `-- wbracelet.obj
|   |   |-- misc
|   |   |   |-- armorchest.obj
|   |   |   |-- barrel.obj
|   |   |   |-- bookshelf.obj
|   |   |   |-- bookstand.obj
|   |   |   |-- brazier.obj
|   |   |   |-- candle.obj
|   |   |   |-- carpet.obj
|   |   |   |-- chair.obj
|   |   |   |-- chest.obj
|   |   |   |-- crate.obj
|   |   |   |-- drywell.obj
|   |   |   |-- dtree.obj
|   |   |   |-- dustdevil.obj
|   |   |   |-- flagpost.obj
|   |   |   |-- fountain.obj
|   |   |   |-- gate.obj
|   |   |   |-- gatlin.obj
|   |   |   |-- ironball.obj
|   |   |   |-- knightsuit.obj
|   |   |   |-- meatspit.obj
|   |   |   |-- outhouse.obj
|   |   |   |-- pillar.obj
|   |   |   |-- pinetree.obj
|   |   |   |-- pot.obj
|   |   |   |-- powbox.obj
|   |   |   |-- prophet.obj
|   |   |   |-- rack.obj
|   |   |   |-- rockhead.obj
|   |   |   |-- rockopen.obj
|   |   |   |-- sacribowl.obj
|   |   |   |-- shaft.obj
|   |   |   |-- smithy.obj
|   |   |   |-- spit.obj
|   |   |   |-- stool.obj
|   |   |   |-- swampplant.obj
|   |   |   |-- table.obj
|   |   |   |-- tent.obj
|   |   |   |-- throne.obj
|   |   |   |-- townhealer.obj
|   |   |   |-- tree.obj
|   |   |   |-- treestump.obj
|   |   |   |-- wagon.obj
|   |   |   |-- well.obj
|   |   |   |-- wicker_basket.obj
|   |   |   `-- woodbed.obj
|   |   |-- monsters
|   |   |   |-- animatedmace.obj
|   |   |   |-- animatedsword.obj
|   |   |   |-- animatedxbow.obj
|   |   |   |-- assassin.obj
|   |   |   |-- bat.obj
|   |   |   |-- blindspot.obj
|   |   |   |-- blob.obj
|   |   |   |-- brainscrambler.obj
|   |   |   |-- carpetmimic.obj
|   |   |   |-- clencher.obj
|   |   |   |-- cobol.obj
|   |   |   |-- cockatrice.obj
|   |   |   |-- crab.obj
|   |   |   |-- darkspirit.obj
|   |   |   |-- demon.obj
|   |   |   |-- dirtcobol.obj
|   |   |   |-- dreadnaught.obj
|   |   |   |-- eyeball.obj
|   |   |   |-- fiendbug.obj
|   |   |   |-- firelizard.obj
|   |   |   |-- fright.obj
|   |   |   |-- frostlizard.obj
|   |   |   |-- frostmist.obj
|   |   |   |-- gelfeet.obj
|   |   |   |-- ghost.obj
|   |   |   |-- ghoul.obj
|   |   |   |-- ghuul.obj
|   |   |   |-- gigagelfeet.obj
|   |   |   |-- grubbug.obj
|   |   |   |-- junglewarrior.obj
|   |   |   |-- kcrab.obj
|   |   |   |-- knight.obj
|   |   |   |-- lumpkin.obj
|   |   |   |-- mephit.obj
|   |   |   |-- mephitwing.obj
|   |   |   |-- mimic.obj
|   |   |   |-- minotore.obj
|   |   |   |-- mosquito.obj
|   |   |   |-- nautilus.obj
|   |   |   |-- pitcobra.obj
|   |   |   |-- protector.obj
|   |   |   |-- rusteater.obj
|   |   |   |-- rustmaggot.obj
|   |   |   |-- saboteur.obj
|   |   |   |-- sandtroll.obj
|   |   |   |-- scatterbrain.obj
|   |   |   |-- shufflingheap.obj
|   |   |   |-- snowcobol.obj
|   |   |   |-- squidgie.obj
|   |   |   |-- stalker.obj
|   |   |   |-- tranch.obj
|   |   |   |-- trog.obj
|   |   |   |-- trorc.obj
|   |   |   |-- ulna.obj
|   |   |   |-- vampyre.obj
|   |   |   |-- varguile.obj
|   |   |   |-- varwing.obj
|   |   |   |-- wright.obj
|   |   |   `-- zombi.obj
|   |   |-- pets
|   |   |   |-- albinobat.obj
|   |   |   |-- blacksheep.obj
|   |   |   |-- btsquirrel.obj
|   |   |   |-- bullwolf.obj
|   |   |   |-- bumper.obj
|   |   |   |-- choco.obj
|   |   |   |-- clockwork.obj
|   |   |   |-- faeriepet.obj
|   |   |   |-- frog.obj
|   |   |   |-- grubpet.obj
|   |   |   |-- hellrover.obj
|   |   |   |-- hotdog.obj
|   |   |   |-- lizardpet.obj
|   |   |   |-- mouse.obj
|   |   |   |-- mysticmold.obj
|   |   |   |-- strider.obj
|   |   |   `-- tundra.obj
|   |   |-- players
|   |   |   |-- advent.obj
|   |   |   |-- archadventurer.obj
|   |   |   |-- archaelogist.obj
|   |   |   |-- archelf.obj
|   |   |   |-- archwizard.obj
|   |   |   |-- barbarian.obj
|   |   |   |-- caveman.obj
|   |   |   |-- centaur.obj
|   |   |   |-- druid.obj
|   |   |   |-- elf.obj
|   |   |   |-- gnome.obj
|   |   |   |-- healer.obj
|   |   |   |-- hobgoblin.obj
|   |   |   |-- inventor.obj
|   |   |   |-- jiiveelf.obj
|   |   |   |-- lumpy.obj
|   |   |   |-- monk.obj
|   |   |   |-- mystic.obj
|   |   |   |-- necroman.obj
|   |   |   |-- ninja.obj
|   |   |   |-- paladin.obj
|   |   |   |-- pirate.obj
|   |   |   |-- priest.obj
|   |   |   |-- ranger.obj
|   |   |   |-- rogue.obj
|   |   |   |-- samurai.obj
|   |   |   |-- soldier.obj
|   |   |   |-- tourist.obj
|   |   |   |-- ulna_bob.obj
|   |   |   |-- valkyrie.obj
|   |   |   |-- viking.obj
|   |   |   |-- vladula.obj
|   |   |   |-- wizard.obj
|   |   |   `-- zombor.obj
|   |   |-- potions
|   |   |   |-- espotion.obj
|   |   |   |-- grog.obj
|   |   |   |-- ipotion.obj
|   |   |   |-- levpotion.obj
|   |   |   |-- lifeelixir.obj
|   |   |   |-- lpotion.obj
|   |   |   |-- magpotion.obj
|   |   |   |-- manaelixir.obj
|   |   |   |-- medkit.obj
|   |   |   |-- mpotion.obj
|   |   |   |-- oilflask.obj
|   |   |   |-- opotion.obj
|   |   |   |-- powpotion.obj
|   |   |   |-- ppotion.obj
|   |   |   |-- rgpotion.obj
|   |   |   |-- sandflask.obj
|   |   |   |-- spotion.obj
|   |   |   `-- wpotion.obj
|   |   |-- scrolls
|   |   |   |-- enchantarmorscroll.obj
|   |   |   |-- enchantweaponscroll.obj
|   |   |   |-- identify.obj
|   |   |   |-- kurscroll.obj
|   |   |   |-- rebirth.obj
|   |   |   `-- truesightscroll.obj
|   |   |-- traps
|   |   |   |-- arrowtrap.obj
|   |   |   |-- beartrap.obj
|   |   |   |-- deadfall.obj
|   |   |   |-- kursetrap.obj
|   |   |   |-- landmine.obj
|   |   |   `-- spikedtrap.obj
|   |   |-- unique
|   |   |   |-- amuletofyore.obj
|   |   |   |-- blackstaff.obj
|   |   |   |-- bludmace.obj
|   |   |   |-- chaos.obj
|   |   |   |-- chiuaua.obj
|   |   |   |-- cleaver.obj
|   |   |   |-- crime.obj
|   |   |   |-- crusadershield.obj
|   |   |   |-- darkmace.obj
|   |   |   |-- dragontongue.obj
|   |   |   |-- everburn.obj
|   |   |   |-- fbow.obj
|   |   |   |-- flyingcarpet.obj
|   |   |   |-- frostsabre.obj
|   |   |   |-- gembow.obj
|   |   |   |-- gnugnr.obj
|   |   |   |-- incisor.obj
|   |   |   |-- linuxshield.obj
|   |   |   |-- mageblade.obj
|   |   |   |-- magiclance.obj
|   |   |   |-- magicpick.obj
|   |   |   |-- magxbow.obj
|   |   |   |-- manasword.obj
|   |   |   |-- myolnr.obj
|   |   |   |-- retribution.obj
|   |   |   |-- shockcinq.obj
|   |   |   |-- sloth.obj
|   |   |   |-- smite.obj
|   |   |   |-- sojurn.obj
|   |   |   |-- soulcarver.obj
|   |   |   |-- speedxbow.obj
|   |   |   |-- strike.obj
|   |   |   |-- thebait.obj
|   |   |   |-- thunderspear.obj
|   |   |   |-- tmaul.obj
|   |   |   |-- vengance.obj
|   |   |   |-- vorpalblade.obj
|   |   |   `-- wpnmasterblade.obj
|   |   |-- weapons
|   |   |   |-- atshield.obj
|   |   |   |-- battleaxe.obj
|   |   |   |-- bfshield.obj
|   |   |   |-- broadsword.obj
|   |   |   |-- bubble_blaster.obj
|   |   |   |-- butcheraxe.obj
|   |   |   |-- cinquedea.obj
|   |   |   |-- cknife.obj
|   |   |   |-- claw.obj
|   |   |   |-- dagger.obj
|   |   |   |-- dshield.obj
|   |   |   |-- dsword.obj
|   |   |   |-- flame_spewer.obj
|   |   |   |-- flamethrower.obj
|   |   |   |-- fshield.obj
|   |   |   |-- gdagger.obj
|   |   |   |-- gonne.obj
|   |   |   |-- gshield.obj
|   |   |   |-- hanxbow.obj
|   |   |   |-- hatchet.obj
|   |   |   |-- hshield.obj
|   |   |   |-- katana.obj
|   |   |   |-- kiteshield.obj
|   |   |   |-- knife.obj
|   |   |   |-- kurcinq.obj
|   |   |   |-- lance.obj
|   |   |   |-- lbow.obj
|   |   |   |-- mace.obj
|   |   |   |-- mallet.obj
|   |   |   |-- mstaff.obj
|   |   |   |-- musketoon.obj
|   |   |   |-- ninjastars.obj
|   |   |   |-- phanxbow.obj
|   |   |   |-- pike.obj
|   |   |   |-- pistol.obj
|   |   |   |-- pkatana.obj
|   |   |   |-- powderkeg.obj
|   |   |   |-- pstiletto.obj
|   |   |   |-- qstaff.obj
|   |   |   |-- rshield.obj
|   |   |   |-- rsword.obj
|   |   |   |-- rtowershield.obj
|   |   |   |-- scimitar.obj
|   |   |   |-- scythe.obj
|   |   |   |-- silvdagger.obj
|   |   |   |-- silvsmace.obj
|   |   |   |-- silxbow.obj
|   |   |   |-- skshield.obj
|   |   |   |-- spear.obj
|   |   |   |-- spikeshield.obj
|   |   |   |-- spkmace.obj
|   |   |   |-- sscimitar.obj
|   |   |   |-- stiletto.obj
|   |   |   |-- sword.obj
|   |   |   |-- tazer_tranch.obj
|   |   |   |-- towershield.obj
|   |   |   |-- trident.obj
|   |   |   |-- tshield.obj
|   |   |   |-- warham.obj
|   |   |   |-- whip.obj
|   |   |   |-- woodmace.obj
|   |   |   `-- xbow.obj
|   |   `-- work_in_progress
|   |       |-- advent_armor.obj
|   |       |-- archway.obj
|   |       |-- bear.obj
|   |       |-- bones.obj
|   |       |-- cow.obj
|   |       |-- cyclops.obj
|   |       |-- deer.obj
|   |       |-- firebug.obj
|   |       |-- frying_pen.obj
|   |       |-- gargoyle.obj
|   |       |-- gargwing.obj
|   |       |-- labrat.obj
|   |       |-- redcleaver.obj
|   |       |-- steamship.obj
|   |       |-- tinker_plane.obj
|   |       |-- werewoof.obj
|   |       `-- woof.obj
|   |-- globalparticles
|   |-- menu
|   |-- music
|   `-- templates
|-- doc
|   |-- doxygen
|   `-- version-1.0
|-- enet
|   `-- include
|       `-- enet
|-- game
|   |-- extensions
|   |-- file_formats
|   |-- Obsolete
|   `-- platform
|-- modules
|   |-- abyss1.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossdoor.obj
|   |       |-- daemonlord.obj
|   |       |-- daemonlordwing.obj
|   |       |-- dlance.obj
|   |       |-- ghost.obj
|   |       |-- goldenchest.obj
|   |       |-- kbutton.obj
|   |       |-- moduletool.obj
|   |       |-- portal.obj
|   |       |-- specialgate.obj
|   |       `-- waterwierd.obj
|   |-- abyss2.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- angel.obj
|   |       |-- bishop.obj
|   |       |-- bishopseal2.obj
|   |       |-- bishopseal.obj
|   |       |-- bossclaw.obj
|   |       |-- bossdark.obj
|   |       |-- bossdoor.obj
|   |       |-- bossscor.obj
|   |       |-- bosswatcher.obj
|   |       |-- bosswier.obj
|   |       |-- bossyeti.obj
|   |       |-- cage.obj
|   |       |-- crown.obj
|   |       |-- daemonlord.obj
|   |       |-- daemonlordwing.obj
|   |       |-- devildoor.obj
|   |       |-- dracolich.obj
|   |       |-- dracotoy.obj
|   |       |-- dragonstatue.obj
|   |       |-- elemental.obj
|   |       |-- gate.obj
|   |       |-- glyphplate.obj
|   |       |-- goldenchest.obj
|   |       |-- loknar.obj
|   |       |-- lostsoul2.obj
|   |       |-- lostsoul.obj
|   |       |-- moduletool.obj
|   |       |-- oblivionlich.obj
|   |       |-- pchest.obj
|   |       |-- platform.obj
|   |       |-- prisonseal.obj
|   |       |-- seal.obj
|   |       |-- thebetrayer.obj
|   |       `-- toast.obj
|   |-- advent.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossgrub.obj
|   |       |-- brom.obj
|   |       |-- cbutton.obj
|   |       |-- dbutton.obj
|   |       |-- gate.obj
|   |       |-- irondoor.obj
|   |       |-- kbutton.obj
|   |       |-- mim.obj
|   |       |-- moduletool.obj
|   |       |-- obutton.obj
|   |       |-- platform.obj
|   |       |-- ubutton.obj
|   |       `-- wbutton.obj
|   |-- archaeologist.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossidol.obj
|   |       |-- bouldertrap.obj
|   |       |-- button.obj
|   |       |-- gate.obj
|   |       |-- hiddenbridge.obj
|   |       |-- idol.obj
|   |       |-- marcus.obj
|   |       |-- pedestal.obj
|   |       |-- rock.obj
|   |       `-- smallsign.obj
|   |-- archmage.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- ancientscript.obj
|   |       |-- archghost.obj
|   |       |-- blackbishop.obj
|   |       |-- blackking.obj
|   |       |-- blackknight.obj
|   |       |-- blackmount.obj
|   |       |-- blackpawn.obj
|   |       |-- blackqueen.obj
|   |       |-- blacktower.obj
|   |       |-- body.obj
|   |       |-- brazier.obj
|   |       |-- chime.obj
|   |       |-- chimepuzzle.obj
|   |       |-- devildoor.obj
|   |       |-- mirrorbattle.obj
|   |       |-- moduletool.obj
|   |       |-- mystery.obj
|   |       |-- pedestal.obj
|   |       |-- specialchest.obj
|   |       |-- switch.obj
|   |       |-- toast.obj
|   |       |-- tome.obj
|   |       |-- trigdoor.obj
|   |       |-- whitebishop.obj
|   |       |-- whiteknight.obj
|   |       |-- whitemount.obj
|   |       |-- whitepawn.obj
|   |       |-- whitequeen.obj
|   |       `-- whitetower.obj
|   |-- bargel.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossbargel.obj
|   |       |-- brazier.obj
|   |       |-- moduletool.obj
|   |       `-- sarcophagus.obj
|   |-- benemocave.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bandit.obj
|   |       |-- bossbandit.obj
|   |       |-- brazier.obj
|   |       |-- gate.obj
|   |       |-- gonne7.obj
|   |       |-- heirloom.obj
|   |       |-- irondoor.obj
|   |       |-- lbow19.obj
|   |       |-- lockdoor.obj
|   |       |-- mercenary.obj
|   |       |-- moduletool.obj
|   |       |-- pchest.obj
|   |       `-- switch.obj
|   |-- bishopiacity.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- ancientscript.obj
|   |       |-- angus.obj
|   |       |-- archghost.obj
|   |       |-- beggar.obj
|   |       |-- brazier.obj
|   |       |-- captain.obj
|   |       |-- crate.obj
|   |       |-- crypt.obj
|   |       |-- fbow.obj
|   |       |-- gate.obj
|   |       |-- grave2.obj
|   |       |-- grave.obj
|   |       |-- graveyardman.obj
|   |       |-- guard.obj
|   |       |-- haypile.obj
|   |       |-- lamb.obj
|   |       |-- magicshop.obj
|   |       |-- marcus.obj
|   |       |-- meena.obj
|   |       |-- moduletool.obj
|   |       |-- moggy.obj
|   |       |-- monk.obj
|   |       |-- outhouse.obj
|   |       |-- peasant.obj
|   |       |-- pirate.obj
|   |       |-- pot.obj
|   |       |-- shopkeep2.obj
|   |       |-- shopkeep.obj
|   |       |-- sign.obj
|   |       |-- trapdoor.obj
|   |       `-- wheel.obj
|   |-- catacomb1.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- body.obj
|   |       |-- bossdoor.obj
|   |       |-- brazier.obj
|   |       |-- butcher.obj
|   |       |-- chest.obj
|   |       |-- gate.obj
|   |       |-- kbutton.obj
|   |       |-- lastspork.obj
|   |       |-- lockdoor.obj
|   |       |-- magicplatform.obj
|   |       |-- moduletool.obj
|   |       |-- puzzlemod.obj
|   |       |-- puzzle.obj
|   |       |-- puzzleswitch.obj
|   |       |-- sarcophagus.obj
|   |       |-- shutdoor.obj
|   |       |-- sporkbutton.obj
|   |       |-- sporkdoor.obj
|   |       |-- stairs.obj
|   |       |-- switch.obj
|   |       |-- trapdoor.obj
|   |       |-- vampirelord.obj
|   |       `-- vamplordwing.obj
|   |-- catacomb2.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- body.obj
|   |       |-- bossdoor.obj
|   |       |-- brazier.obj
|   |       |-- butcher.obj
|   |       |-- catacomb2gate.obj
|   |       |-- moduletool.obj
|   |       |-- pchest.obj
|   |       |-- portal.obj
|   |       |-- shutdoor.obj
|   |       |-- skulton.obj
|   |       |-- stairs.obj
|   |       |-- switch.obj
|   |       |-- trigtile.obj
|   |       `-- warlock.obj
|   |-- cobolemperor.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- brazier.obj
|   |       |-- empcobol.obj
|   |       |-- gate.obj
|   |       |-- hostage.obj
|   |       |-- jestercobol.obj
|   |       |-- jesterdoor.obj
|   |       |-- knightsuit.obj
|   |       |-- lockdoor.obj
|   |       |-- lockedchest.obj
|   |       |-- magecobol.obj
|   |       |-- moduletool.obj
|   |       |-- poofcam.obj
|   |       |-- royalguard.obj
|   |       |-- shutdoor.obj
|   |       |-- slayercobol.obj
|   |       `-- trigtile.obj
|   |-- crypt.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossidol.obj
|   |       |-- brazier.obj
|   |       |-- irondoor.obj
|   |       |-- lich.obj
|   |       |-- lockdoor.obj
|   |       `-- moduletool.obj
|   |-- elf.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- brazier.obj
|   |       |-- exitarea.obj
|   |       |-- faerie1.obj
|   |       |-- faerie2.obj
|   |       |-- grave.obj
|   |       |-- lamb.obj
|   |       |-- lumpkin.obj
|   |       |-- moduletool.obj
|   |       |-- rockhead.obj
|   |       `-- zombor.obj
|   |-- firedom.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- brazier.obj
|   |       |-- fallingmeteor.obj
|   |       |-- firehop.obj
|   |       |-- lavarise.obj
|   |       |-- locator.obj
|   |       |-- moduletool.obj
|   |       |-- rock.obj
|   |       `-- yeow.obj
|   |-- forgotten.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- droptrap.obj
|   |       |-- gate.obj
|   |       |-- grandmum.obj
|   |       |-- irondoor.obj
|   |       |-- keye.obj
|   |       |-- lockdoor.obj
|   |       |-- meena.obj
|   |       |-- meenaspeaker.obj
|   |       |-- moduletool.obj
|   |       |-- moggy.obj
|   |       |-- moggyspeaker.obj
|   |       |-- pocketspeakera.obj
|   |       |-- pocketspeakerb.obj
|   |       `-- treasuredoor.obj
|   |-- gnome.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bosslump.obj
|   |       |-- captain.obj
|   |       |-- crate.obj
|   |       |-- stack.obj
|   |       |-- stair.obj
|   |       `-- wheel.obj
|   |-- griffin.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bdiary.obj
|   |       |-- bossbargel.obj
|   |       |-- bosscobol.obj
|   |       |-- bosslumpking.obj
|   |       |-- crate.obj
|   |       |-- darkhealer.obj
|   |       |-- deadbody.obj
|   |       |-- guard.obj
|   |       |-- haypile.obj
|   |       |-- lockdoor.obj
|   |       |-- prisoner.obj
|   |       |-- stairs.obj
|   |       |-- switch.obj
|   |       |-- tiltedchair.obj
|   |       `-- tiltedtable.obj
|   |-- healer.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossnecr.obj
|   |       |-- brazier.obj
|   |       |-- faerie.obj
|   |       |-- gatelite.obj
|   |       |-- irondoor.obj
|   |       `-- moduletool.obj
|   |-- heist.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- crate.obj
|   |       |-- eyeballguard.obj
|   |       |-- gate.obj
|   |       |-- goldenchest.obj
|   |       |-- kbutton.obj
|   |       |-- lavabubble.obj
|   |       |-- moduletool.obj
|   |       |-- obutton.obj
|   |       |-- puzzlemod.obj
|   |       |-- puzzle.obj
|   |       |-- rogueknife.obj
|   |       |-- shutdoor.obj
|   |       |-- treasuredoor.obj
|   |       `-- treasuryguard.obj
|   |-- imprisoned1.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- altar.obj
|   |       |-- backpack.obj
|   |       |-- brazier.obj
|   |       |-- dast.obj
|   |       |-- door.obj
|   |       |-- dragonstatue.obj
|   |       |-- faerie.obj
|   |       |-- glasscontainer.obj
|   |       |-- goldenchest.obj
|   |       |-- lich.obj
|   |       |-- lichtomb.obj
|   |       |-- lostghost.obj
|   |       |-- minigonne.obj
|   |       |-- moduletool.obj
|   |       |-- monster.obj
|   |       |-- museumstatue.obj
|   |       |-- pedestal.obj
|   |       |-- portal.obj
|   |       |-- skull.obj
|   |       |-- stack.obj
|   |       `-- stairs.obj
|   |-- imprisoned2.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossdemon.obj
|   |       |-- bosstroll.obj
|   |       |-- demoncage.obj
|   |       |-- door.obj
|   |       |-- elementair.obj
|   |       |-- elementearth.obj
|   |       |-- elementfire.obj
|   |       |-- elementice.obj
|   |       |-- jelly.obj
|   |       |-- kbutton.obj
|   |       |-- moduletool.obj
|   |       |-- newportal.obj
|   |       |-- oldportal.obj
|   |       |-- pot.obj
|   |       `-- staffkey.obj
|   |-- imprisoned3.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bosschest.obj
|   |       |-- bouldertrap.obj
|   |       |-- cambion.obj
|   |       |-- crazynpc.obj
|   |       |-- dimlockcaster.obj
|   |       |-- dimlock.obj
|   |       |-- dragonstatue.obj
|   |       |-- grell.obj
|   |       |-- illusion.obj
|   |       |-- illusionwing.obj
|   |       |-- kbutton.obj
|   |       |-- layna.obj
|   |       |-- moduletool.obj
|   |       |-- museumstatue.obj
|   |       |-- npcnote.obj
|   |       |-- portal.obj
|   |       |-- tiara.obj
|   |       |-- warlock.obj
|   |       |-- xara.obj
|   |       `-- zorro.obj
|   |-- imprisoned4.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- assassin.obj
|   |       |-- chestreward.obj
|   |       |-- crab.obj
|   |       |-- firelizard.obj
|   |       |-- gigagelfeet.obj
|   |       |-- grubbug.obj
|   |       |-- irondoor.obj
|   |       |-- kcrab.obj
|   |       |-- minotore.obj
|   |       |-- moduletool.obj
|   |       |-- portal.obj
|   |       |-- tranch.obj
|   |       `-- zombi.obj
|   |-- imprisoned5.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- demogorgon.obj
|   |       |-- firerain.obj
|   |       |-- ironball.obj
|   |       |-- spike.obj
|   |       `-- switch.obj
|   |-- paladin.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- brazier.obj
|   |       |-- evilaltar.obj
|   |       |-- exitdoor.obj
|   |       |-- gate.obj
|   |       |-- gelfeet.obj
|   |       |-- irondoor.obj
|   |       |-- lockdoor.obj
|   |       |-- moduletool.obj
|   |       |-- pchest.obj
|   |       |-- sarcophagus.obj
|   |       `-- ubutton.obj
|   |-- palash.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossdoor.obj
|   |       |-- bossplat.obj
|   |       |-- bosspork.obj
|   |       |-- brazier.obj
|   |       |-- breaker.obj
|   |       |-- gate.obj
|   |       |-- halldoor.obj
|   |       |-- lockdoor.obj
|   |       |-- moduletool.obj
|   |       |-- shutdoor.obj
|   |       |-- spork.obj
|   |       |-- toast.obj
|   |       |-- warlock.obj
|   |       `-- watcher.obj
|   |-- palice.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossicicle.obj
|   |       |-- bosspork.obj
|   |       |-- frostorb.obj
|   |       |-- halldoor.obj
|   |       |-- inscriptionplate.obj
|   |       |-- lockdoor.obj
|   |       |-- moduletool.obj
|   |       |-- monsterdrop.obj
|   |       |-- spork.obj
|   |       `-- yeti.obj
|   |-- palsand.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossclaw.obj
|   |       |-- bossdrop.obj
|   |       |-- bossfall.obj
|   |       |-- bossplat.obj
|   |       |-- bosspork.obj
|   |       |-- bossscor.obj
|   |       |-- lockdoor.obj
|   |       |-- moduletool.obj
|   |       |-- puzzle.obj
|   |       |-- shutdoor.obj
|   |       |-- spork.obj
|   |       `-- trigtile.obj
|   |-- palshad.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossdark.obj
|   |       |-- bossplat.obj
|   |       |-- bosspork.obj
|   |       |-- gelfeet.obj
|   |       |-- lockdoor.obj
|   |       |-- moduletool.obj
|   |       |-- pchest.obj
|   |       |-- popper.obj
|   |       |-- sacripit.obj
|   |       |-- shutdoor.obj
|   |       |-- spork.obj
|   |       |-- trigtile.obj
|   |       `-- watcher.obj
|   |-- palwater.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bossgrub.obj
|   |       |-- bossplat.obj
|   |       |-- bosspork.obj
|   |       |-- bosswier.obj
|   |       |-- brazier.obj
|   |       |-- dbutton.obj
|   |       |-- fbutton.obj
|   |       |-- ffaerie.obj
|   |       |-- filldrop.obj
|   |       |-- grubdrop.obj
|   |       |-- lockdoor.obj
|   |       |-- mfaerie.obj
|   |       |-- moduletool.obj
|   |       |-- shutdoor.obj
|   |       |-- spork.obj
|   |       |-- trapdrop.obj
|   |       `-- trigdoor.obj
|   |-- rcars.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       `-- moduletool.obj
|   |-- rogue.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- exitarea.obj
|   |       |-- gate.obj
|   |       |-- lockdoor.obj
|   |       |-- moduletool.obj
|   |       |-- obutton.obj
|   |       |-- pchest.obj
|   |       |-- prisgnom.obj
|   |       |-- prisoner.obj
|   |       `-- shutdoor.obj
|   |-- rrace.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       `-- moduletool.obj
|   |-- sandweg.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- abdulla.obj
|   |       |-- carpetshop.obj
|   |       |-- divineshop.obj
|   |       |-- gate.obj
|   |       |-- guard.obj
|   |       |-- kabobman.obj
|   |       |-- kabobspit.obj
|   |       |-- lampshop.obj
|   |       |-- moduletool.obj
|   |       |-- peasant.obj
|   |       |-- sandshop.obj
|   |       |-- shopkeeper.obj
|   |       |-- smallsign.obj
|   |       `-- stonebridge.obj
|   |-- soldier.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- brazier.obj
|   |       |-- evilboss.obj
|   |       |-- evilforce.obj
|   |       |-- evilsword.obj
|   |       |-- gate.obj
|   |       |-- irondoor.obj
|   |       |-- keyp.obj
|   |       |-- lockdoor.obj
|   |       |-- lord.obj
|   |       |-- mercenary.obj
|   |       |-- moduletool.obj
|   |       `-- ubutton.obj
|   |-- test.mod
|   |   |-- gamedat
|   |   `-- objects
|   |-- tourist.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bouldertrap.obj
|   |       |-- brazier.obj
|   |       |-- button.obj
|   |       |-- camera.obj
|   |       |-- creditcard.obj
|   |       |-- fakecreditcard.obj
|   |       |-- gate.obj
|   |       |-- kbutton.obj
|   |       |-- moduletool.obj
|   |       |-- mummy.obj
|   |       |-- platform.obj
|   |       |-- sarcophagus.obj
|   |       |-- spikedtrap.obj
|   |       `-- switch.obj
|   |-- valkyrie.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- deadtrorc.obj
|   |       |-- deadviking.obj
|   |       |-- moduletool.obj
|   |       |-- snowygrave.obj
|   |       |-- soul.obj
|   |       `-- viking.obj
|   |-- wizard.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bosslich.obj
|   |       |-- brazier.obj
|   |       |-- crate.obj
|   |       |-- dragonblud.obj
|   |       |-- greenleaf.obj
|   |       |-- hellrover.obj
|   |       |-- moduletool.obj
|   |       |-- platform.obj
|   |       |-- redstone.obj
|   |       |-- ritual.obj
|   |       `-- trigdoor.obj
|   |-- worldmap.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- bishopia.obj
|   |       |-- encounter.obj
|   |       |-- faeriering.obj
|   |       |-- forgotten.obj
|   |       |-- greatwood.obj
|   |       |-- moduletool.obj
|   |       |-- outhouse.obj
|   |       |-- palash.obj
|   |       |-- palice.obj
|   |       |-- palsand.obj
|   |       |-- palshad.obj
|   |       |-- palwater.obj
|   |       |-- sandweg.obj
|   |       |-- squidgie.obj
|   |       |-- stairs.obj
|   |       |-- trapdoor.obj
|   |       |-- volcano.obj
|   |       `-- zippy.obj
|   |-- zippy.mod
|   |   |-- gamedat
|   |   `-- objects
|   |       |-- armorchest.obj
|   |       |-- dropper.obj
|   |       |-- guard.obj
|   |       |-- lamb.obj
|   |       |-- moduletool.obj
|   |       |-- mushroomtrader.obj
|   |       |-- pettrader.obj
|   |       |-- shep.obj
|   |       |-- shopkeep.obj
|   |       |-- shopmimi.obj
|   |       `-- warlock.obj
|   `-- zombor.mod
|       |-- gamedat
|       `-- objects
|           |-- bossdoor.obj
|           |-- cleric.obj
|           |-- crate.obj
|           |-- deadbody.obj
|           |-- gate.obj
|           |-- healer.obj
|           |-- knave.obj
|           |-- necromancer.obj
|           |-- shutdoor.obj
|           `-- zombi.obj
|-- osx
|   |-- Egoboo.xcodeproj
|   |-- English.lproj
|   `-- SDLMain.nib
|-- res
`-- src
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

Looks correct to me. I'm not sure however where the basicdata folder is supposed to be on Linux. Maybe penguinflyer5234 can tell us?
Nevon
Acid Blob (New member)
Acid Blob (New member)
Posts: 8
Joined: Sun Nov 14, 2010 6:06 pm
Location: SE
Contact:

Post by Nevon »

I can also report that make install fails because it can't find the file or directory 'players', which it is supposed to copy to ~/.egoboo-2.x/
bgbirdsey
{]-[0{0|307 (Developer)
{]-[0{0|307 (Developer)
Posts: 1864
Joined: Wed Jul 23, 2008 4:22 am
Location: Minnesota, USA

Post by bgbirdsey »

looks like you are missing all of the files that are actually in basicdat. Among those is the Bo_Chen.ttf font.

That aside, the linux version of egoboo actually needs to be installed to work properly. Without doing this, it is likely that you will not be able to run the game on linux, as it will look for some files in certain absolute locations, like /etc/egoboo-2.x and /share/games/egoboo-2.x/basicdat

Using the "Makefile install" command will do everything for you that needs to be done (though it will take a while to copy the files).

If you do not have root access, you will need to make and install using your own user supplied prefix, as detailed in the README files.
Post Reply