Eulora August update
There's a few juicy items on today's update. Let's get to it :
People have been asking, and in any case it's not nice to go for any length of time with binaries only, so here it is : Eulora client source.
Note that this isn't a fork or anything, merely a repackaging for the needs of this project, to be able to compile a client. If you are able to compile for your platform, whatever that platform may be, a note below letting us know is much appreciated. If you'd be interested in becoming a maintaineri of binaries for a certain platform this is also helpful, let us know.
Also anyone interested in working for S.MG as a coder is well advised to read through it, which of course brings us right up to
The Problem: Currently voice files are supplied by the server to go with NPC speech. For network loading and other issues the sound files should come from the client after the server sends a message identifying the right file.
The Task: Modify the client software (modehandler.cpp is likely involved) to accept a filename from the server and pass it to the soundsystem to be streamed.
Note: This may require some work with the soundsystem to ensure that large files are adequately handled. The soundsystem is based on using the crystalspace utilities to deal directly with drivers.
You are expected to deliver these as diffs, ideally as a comment here. As is the case with artists and anyone else working for S.MG, Stock Warrants and other compensation is always on the table. As is the tradition with S.MG since the first day, such discussion may only proceed after you've contributed something as requested and in no case before.
Things be moving right along. See if you manage to find the teleport spot - first person to demonstrate itii gets a 0.1337 BTC bounty and the title of Eulora's First Easter Egg Hunter (EFEEH for short).
———Dev Hang on a minute.
Me kDev Got it.
Me Aha! What was it ?Dev Somethings are case sensitive, some aren't :P Well crap something with the fonts broke my terrain.
Me ;/Dev I heard those spx files passed thru the game - chipmunks.
Me Huh ?Dev What you were saying about how bad the sound was, it is - something is wrong with how they handle those files.
Me Oh! Heh. I like how this codebase always baloons problems. Such as, change letter t to r. Well... ok, it's changed but now the terrain is broken. Put a voice file in. There's voice files etc. Well ok, but it plays it 5x speed. It's like a troll package.Dev Haha well I fixed the terrain and I have some clue on why it broke. Don't know about the spx but prolly something they did wrong with drivers. The font thing seems to be some of it is hardcoded and it got annoyed when I deleted the base font it used.
Me Ha! Terrain font ?Dev ROFL. Anyway its all back like it was, will need to step thru changes carefully to sort it out. I was a bit jaw dropped when I saw a font hardcoded, need to study why they did that.
Me You know this snippet is totally getting published.Dev LMAO. One suggestion on the boundry thing seems to be just port people back if they go too far out.
Me Not a bad idea.
- This would require your creating of a GPG key and registering it with gribble ; periodic compiling of source for your platform and releasing of GPG signed binaries through a platform of your choice (either a ftp server, http website, torrent or whatever else works). [↩]
- To "demonstrate it" means to post a screenshot from a very specific position. You'll know it when you find it. [↩]
Friday, 16 August 2013
looks like some include paths are hardcoded to /home/chetty/eulora/
Friday, 16 August 2013
hmm shouldn't be. the arrangement of the crystalspace/cal3d/eulora at the same level is pretty much required tho.
Saturday, 17 August 2013
Note : if you're havcing trouble connecting on the old client, get the v0.0.2.
Saturday, 17 August 2013
Try the following diffs. The new MSGTYPE_PLAYVOICE is similar to MSGTYPE_PLAYSOUND, although its client handler has more in common with MSGTYPE_CACHEFILE.
Saturday, 17 August 2013
It seems that all of the indentation got lost in the previous comment.
Saturday, 17 August 2013
Meh Wordpress makes assumptions. Let me see if I can fix this one second.
Saturday, 17 August 2013
There, it's fixed. Use <pre> tags to maintain indentation.
Saturday, 17 August 2013
Thanks Ted I'll try those out today/tomorrow and let you know :)
Much appreciated !
Monday, 19 August 2013
Do you plan on keeping the github repo up to date, and accept PRs?
Did you fix the paths issue ?
(I assume compiling is simply jam clean && jam)
Tuesday, 20 August 2013
actually you run autogen first, that sets up the paths for your system in the jam and config files. then config (--with path to cal3d). Yes github will be included in the release process.
Tuesday, 20 August 2013
@David FRANCOIS The github is just for packaging convenience, not a fork and not maintained in that sense. PRs should be directed at the respective teams maintaining the various bits involved.
Tuesday, 20 August 2013
Downloaded from github, installed jam, tried compiling (Fedora 19, x64 platform): http://pastebin.com/fTFNNrYS . No idea what I'm looking at.
At a first glance, there are indeed some hardcoded paths in your files, for instance in Jamconfig, lines 59 60 61 etc (about 9 instances).
Wednesday, 21 August 2013
The jam and config files get updated when you run autogen. They setup to run on your system.
Wednesday, 21 August 2013
Assuming you have already acquired and installed both Cal3d and Crystalspace (libraries from these are needed until such time as we start to produce a static client). Set environment variable to point at crystalspace directories.
compile and install the source files with:
,.autogen.sh
./configure --with (path to your cal3d install)
[I recommend you set the cal3d/crystalspace/eulora at the same dir level but its not required)
jam -aq client
This should end with a working copy of the current client, you will need to get a copy of the art file from the server.
We are currently working on a updater so that once you have a client we can scan and pass only the files you need.