Hi,
I really like simutrans and I would like to run it on my Zaurus machine (which runs ubuntu). I tried the simutrans package from the ubuntu repositories (version 101) as well as a package from the debian repositories (version 102) both ended with segmentation fault when I started simutrans.
here's what I got in the terminal:
Can anyone help me setting up simutrans properly (is it possible?)
Thanks,
YoG
You should probably try to compile it yourself. You could also try to disable midi (-nomidi) as SDL_mixer support on ARM might be broken (it has also only 50% chance on x86 ... )
Other than that I was not even aware that there is an ARM-port ... waht kind of byte order are you using? Maybe that is set wrong in the compiling files.
(And starting with "simutrans -debug 3" will give more detailed error messages.)
Thanks for the quick reply, I tried -nomidi and -nosound to no avail, simutrans -debug 3 did not give me any new information (the simu.log file was empty). I don't know the byte order used (how can I check it?).
I installed binaries from the official repositories, currently I'm using the one from the debian squeeze version (http://packages.debian.org/squeeze/simutrans (http://packages.debian.org/squeeze/simutrans)) if it is of any help...
YoG
Well, if compiled with the wrong byteorder, simutrans will still run but will choke on the first pak files. Thus I suspect the byteorder is wrong. Unfourtunately ARM can have both byte orders. To compile yourself I suggest checking out the repository directly, and then compile once with a default.config derived nearly completely from the template and one with the line FLAGS += -DBIG_ENDIAN
Prissi - there's a working .deb of simutrans 100.0 in maemo extras-dev repository - maemo (linux OS for Nokia tablets) runs on arm hardware, too.
(It's barely usable due to the small font size, though)
Well, but ARM can have both byteorders. It depends on the actual achitecture, whether it is switchable or not. Compiled with wrong byteorder, it will still run perfectly, but then crashes upon ready anything none-ASCII from the datafiles. Since this is the position where it crashes, this is my best guess.
prissi: Compiling it is a bit too technical form me, maybe I'll try to contact the maintainers...
helifino: Thanks for the pointer, but the maemo 100.0 (i found it in the diablo repository) also segfaults on my machine (zaurus)
YoG
Do you have a kontackt to the maintainers?
I could try to make a version for you, but I need time ... and it could be that we try different versions ...
I haven't contacted the maintainers yet...
It would be great I if you could compile one for me, I'm willing to test as much versions as it takes...
How do you do the cross-compilation? I'd like to set such a system too (If it's not too complicated...)
Thanks,
YoG
OT:
Dou you use Gentoo? Then you can look at "crossdev"
(But it donĀ“t create a apple cross-environment)
I could make .. but not this week .....
I'm more of ubuntu guy, but I'm keen on learning new stuff... I'll try setting up a gentoo enviroment and check out this "crossdev" thingy...
I've tried to compile simutrans natively, I added "FLAGS += -DBIG_ENDIAN" to my config.default, as prissi suggested, I also used sdl and mixer_sdl backends, I unchecked the SDL_CONFIG line and I used OSTYPE = linux.
After a long time the compilation failed with:
How can I solved this?
Thanks,
YoG
There is some flag to disable ****embly code (which is for x86 only). I think you'll need -DUSE_C
Please use this Flag too:
-DUSE_C
P.S. VS write it too...
Okay, it works :award:...
but it is very very slow... is there some magic stuff I can make it go faster?
YoG
You can set the frame rate to ten, best in simuconf.tab. But given that the zaurus is 1 400MHz CPU, there is not much to accelerate it, apart from using small pak sets like pak HAJO or pakAbo.
can you give me your config.default??? please ;o)
Sorry for the newbie question but... where do I find the pak HAJO or pakAbo...
If I'd compile simutrans using COLOUR_DEPTH = 8 instead of 16 will it work better?
Frank's compilation of pakHajo should be on Sourceforge.
wernieman:
I also had to add #include <stdlib.h> to bauer/../dataobj/koord.h for it to compile
this is my config.default:
use use 2 Frontends ...
BACKEND = sdl
BACKEND = mixer_sdl
If you need no sound, then please use sdl, if you need then mixer_sdl.
You have problem with speed, so test with no sound!
And I think it would good to enable this:
#OPTIMISE = 1 # Add umpteen optimisation flags
I'll try that... Do I have to do "make clean" before recompiling, or can I just do make?
YoG.
Better is "make clean; make"
only if it need much time, then only use make .....
Depending on your device, 8 bit may speed up drawing, if you screen can be switched to 8 Bit. Otherwise very little gain is obtained. Optimizing will give of course a noteable boost for GCC compilation. You can also try to leave debug-information out, which will remove some ****erts and debug printing operations, that could gain a little extra speed (and reduces program size by 100 kB or so).
I would forget about mixer_SDL; noises you should also on SDL, mixer is only needed for MIDI-support, which is usually in software on Linux and thus extremely slow on weak devices.
I removed the sdl_mixed setting, added the optimization and also tried with debug=0 and 1 (How do I disable debug?). The binary is now huge ~18MB is that normal? (the previous ones were ~2MB). Also, I didn't see any improvement in the performance.
On the bright side, I found that using pak32 the game is playable.
Oh, and another problem, I have to run simutrans from within /usr/share/games/simutrans, otherwise simutrans doesn't find the data folders and I get "No pak set found", if I point it using -objects switch I get "Unable to load any language files"... only if I put the binary inside /usr/share/games/simutrans and start it from there the games starts... Any suggestions?
Thanks,
YoG
make a script
inside the following lines
cd /usr/share/games/simutrans
/pathtoyourexe/sim -use_workdir -log 1 -debug 0 -nomidi -fps 10
This should work too. The 18MB size are the symbol tables. use "strip sim" to remove them. They are only need for profiling and debugging.
Since your need any speed you can get, I suggest DEBUG=0, PROFILING=0 and OPTIMZE=1
OT:
Sorry for writing in this Thread, but somebody how want to compile could read it ...
What is the normal used Flags? So you cold read the Bug-Threads??
DEBUG=1, PROFILING=0 and OPTIMZE=1
Ore????