Hi,
I added PCM audio file support on the Engine. You can now play PCM file from CD.
To convert any audio file to PCM under Linux or Windows => http://ffmpeg.org
Just some restriction due to the Sega Saturn hardware:
Compatible Samplerate : 8000 to 44100 Hz (-ar option)
Compatible PCM format : s8 (-f option)
Compatible mode: 8/16 bit mono/stereo
Some command line:
ffmpeg -i A.WAV -f s8 -ar 44100 A.PCM
ffmpeg -i A.MP3 -f s8 -ac 1 -ar 8000 A.PCM
Now in Jo Engine:
jo_sound my_snd;
jo_audio_load_pcm("A.PCM", JoSoundMono16Bit, &my_snd);
...
jo_audio_play_sound(&my_snd, 0);
---
I also made a huge update of Jo Map Editor:
You can now explode (split) image in tile and export any image in raw 15 bits format:
Attachment 11059
More details here: http://www.jo-engine.org/mapeditor/