[00:07:42] --- Marzo is now known as Marzo_away
[02:05:26] <Pupnik_z1z> wjp: the zaurus/sparc ifdef in ibuf8
[02:06:58] * Pupnik_z1z is testing
[03:40:19] --- Marzo_away is now known as Marzo
[06:02:54] --- Sev_1 is now known as Sevalecan
[08:38:32] --- Lord_Nightmare is now known as LordNAway
[12:04:27] --- Gast63686 is now known as WorkMonk
[12:43:59] --- Pupnik_zZz is now known as Pupnik
[13:46:33] * Pupnik ponders using libvorbisidec
[13:47:34] * Baastuul appears as a motivational cartoon character saying, "You can do it! The world is your playground!"
[13:59:31] <Pupnik> yeh maybe with some coffee and food
[13:59:38] <Pupnik> <- hung over
[14:00:02] <Baastuul> <:O
[14:00:19] <Pupnik> looking at the timidity cpu usage here and it varies widely
[14:00:53] <Pupnik> with old ultima5 tunes i'm down to about 6 percent
[14:03:51] <Pupnik> starting up Bane's Theme.mid takes about 25 seconds
[14:04:20] <Pupnik> 87% cpu
[14:05:04] <Baastuul> :-O
[14:05:35] <Baastuul> I am actually of no use in regards to software issues. :(
[14:05:40] <Baastuul> I just sit around the channel and be a bum.
[14:05:56] <Pupnik> heh
[14:06:36] <Pupnik> but you know ultima7 pretty well>?
[14:06:44] <Baastuul> Pretty well!
[14:08:34] <Pupnik> i'll be playtesting a lot soon
[14:14:33] <Pupnik> lowest quality midi gets me down to 15-18% cpu on bane's theme
[14:22:19] <Pupnik> mplayer using libvorbis taking 8-10% cpu
[17:23:58] <Pupnik> does exult ever need to play back two oggs simultaneously? (environmental sounds + music?)
[19:06:49] <Pupnik> ok got the music transcoded... 30 MB
[21:15:49] <Pupnik> argh, streams not working ye
[21:16:28] <Pupnik> wonder if any of the porters (gp2x etc) have implemented on-screen keyboard for entering names/savefile names
[21:35:48] <SB-X> if they havn't, it must be on their agenda
[21:45:04] <SB-X> the last update to the gp2x version was over a year ago
[21:45:26] <SB-X> i dont remember artaxerxes adding anything like that to the zaurus version
[22:09:20] <Pupnik> well for now i'll just have it insert date+time into savegamenames
[22:10:18] <Pupnik> mp3 playback taking up 0% cpu is real sweet.. just looking into how to incorporate it with the least amount of code
[22:26:31] <Pupnik> heh i could be doing this so much simpler but nooo
[22:38:25] * Pupnik hacks bool MyMidiPlayer::ogg_play_track(std::string filename, int num, bool repeat)
[22:39:24] <Pupnik> Mix_Music *newmusic = Mix_LoadMUS(ogg_name.c_str())
[22:39:39] <Pupnik> that's the call i have to replace
[22:56:00] <Pupnik> ok easiest way will be to do an execlp() to launch external mp3 dsp playback
[23:26:07] <Pupnik> ahh need to cast ogg_name to a 'const char'
[23:26:11] <Pupnik> can i just do const char *oname;
[23:26:14] <Pupnik> and oname = ogg_name ?
[23:26:17] <Pupnik> if ogg_name is type "string"?
[23:31:32] <Pupnik> heh i need to find a method of C++ string that returns a pointer to a character array
[23:36:12] <Pupnik> ogg_name.c_str ?