Difference between revisions of "User talk:Titmouse"
Mr. Reaper (talk | contribs) |
|||
Line 55: | Line 55: | ||
Do you use Google Talk? I'll see if I can chat with you on that; it might be easier. (by the way, I'll keep an eye on this page for replies -- you don't have to post on my userpage to let me know you've replied here again). --[[User:Mr. Reaper|Mr. Reaper]] 20:47, 29 July 2012 (CEST) | Do you use Google Talk? I'll see if I can chat with you on that; it might be easier. (by the way, I'll keep an eye on this page for replies -- you don't have to post on my userpage to let me know you've replied here again). --[[User:Mr. Reaper|Mr. Reaper]] 20:47, 29 July 2012 (CEST) | ||
+ | |||
+ | |||
+ | : Best to send me an email at, titmouse001@gmail.com (ahhh that was you on chat, sorry I was playing a game on my android tablet) | ||
+ | My bad, forgot to say - Make sure you get a fresh copy of the code before compiling, i.e. //#include "Impact_9_png.h" should be commented out (NOTE: I uploaded some fresh GRRMOD code today before my other post to make sure it worked ok, but I forgot to tell you, so download that grrmod code again and it should be fine now) | ||
+ | To udr Grrmod you just need -lgrrmod -laesnd in the makefile for now, see if you can get that to play a tune first. --[[User:Titmouse|Titmouse]] 22:11, 29 July 2012 (CEST) |
Revision as of 22:11, 29 July 2012
Hi. I saw a post you made last year on the forum ( http://forum.wiibrew.org/read.php?11,65351,65408#msg-65408 ) where you said you were able to get gcmodplay to work with asndlib instead of aesndlib.
Well, I've hit a similar annoying problem as the one you experienced.... I can't use MOD files and MP3 or OGG files in the same game, because gcmodplay was changed to use aesnd but everything else uses asnd (why in the world did they do that?). At least I was able to use chris's example code to get sound effects working with aesnd, but it sucks that any music file not in MOD format has to be converted to RAW to be used with aesndlib!
How hard is it to get gcmodplay to use asndlib again? I really don't know about rebuilding anything.... I don't suppose it's as easy as replacing certain files with the rebuilt ones? --Mr. Reaper 05:44, 24 July 2012 (CEST)
Hi Reaper,
Just spotted your post
However I stopped using that mod player some time back as I found a new one called GRRMOD (its playback is far better) here's my code that uses it https://code.google.com/p/wii-bolt-thrower/ , it includes the GRRMOD lib I’ve tweaked. This new Lib is under “Extra_libs_needed.Source”
I posted this about it… http://forum.wiibrew.org/read.php?11,69350,69350#msg-69350 Note: My project's a Mercurial repository; source tab says what to do to get code (TortoiseHg works well for me)
If you still need to use gcmodplay drop me another line and I’ll post up a working example or something.
- GRRMOD looks good... I could use the ability to play MOD, MP3, and XM files, but I really am lost as far as knowing how to implement it.... I got Devkitpro and GRRlib installed of course -- I can use them, but I don't really understand how it all works, heh. Is it difficult to install your modified GRRMOD (and modified aesnd) on top of that (if it's not too much trouble)?
Would it be easier to get gcmodplay to co-exist with the ability to play MP3 files? --Mr. Reaper 21:48, 28 July 2012 (CEST)
- Probably easier to use GRRMOD - I’ve compile the grrmod lib without MP3 support as the MP3 stuff was said not to be completed by the chaps developing it.
For mp3 type technology I use Ogg vorbis, take a look at tremor for playing oggs. I tend to stay away from mp3 as things like oggs are far better quality while taking up less disk space. Have a look at tremor for the wii (example oggplayer.cpp/h in my Bolt Thrower code) *** But leave this to last, get grrmod working first **
GRRMOD comes with a working demo, I’ve changed a bit, now just plays music with a blank screen as it had dependences on graphics stuff I did not want to use, see: \Extra_libs_needed.Source\Source\GRRMOD\Source\main.c, in my bolt thrower google code To install GRRMOD just copy the files, grrmod.h & libgrrmod.a (from GRRMOD dir, make sure to use my updated grrmod lib from Google code, not the official one!!!) to C:\devkitPro\libogc\include\grrmod.h C:\devkitPro\libogc\lib\wii\libgrrmod.a (example is default path)
Use the main.c demo as starting point (I’ve just upload a fix to this demo as this did not compile, download a fresh version if need be)
your makefile should look something like this ...
LIBS := -lfat -lvorbisidec -lpng -lz -lgrrmod -lwiiuse -lbte -laesnd -logc -lm
Let me know how you get on :) --Titmouse 17:04, 29 July 2012 (CEST)
- Thanks for the instructions. I downloaded the two files and put them in place, and got the main.c, then set up the makefile as above, but it won't compile. I get:
c:/projects/grrmod/source/main.c:19:23: fatal error: music_mp3.h: No such file or directory
Then I tried commenting out line 19, since it says something about mp3, and you said you removed mp3 support, but then when I try to complie the error becomes:
c:/projects/grrmod/source/main.c:20:23: fatal error: music_mod.h: No such file or directory
I must still be missing something.
Also, did you update something in aesnd? Do I need to update that too?
I found I didn't have the lvorbisidec you said should be in the makefile, so I went ahead and got that from Extra_libs_needed.libs/libogc/lib/wii/libvorbisidec.a and copied to my lib/wii folder, but that didn't affect the compile error either way.
Do you use Google Talk? I'll see if I can chat with you on that; it might be easier. (by the way, I'll keep an eye on this page for replies -- you don't have to post on my userpage to let me know you've replied here again). --Mr. Reaper 20:47, 29 July 2012 (CEST)
- Best to send me an email at, titmouse001@gmail.com (ahhh that was you on chat, sorry I was playing a game on my android tablet)
My bad, forgot to say - Make sure you get a fresh copy of the code before compiling, i.e. //#include "Impact_9_png.h" should be commented out (NOTE: I uploaded some fresh GRRMOD code today before my other post to make sure it worked ok, but I forgot to tell you, so download that grrmod code again and it should be fine now) To udr Grrmod you just need -lgrrmod -laesnd in the makefile for now, see if you can get that to play a tune first. --Titmouse 22:11, 29 July 2012 (CEST)