HydrogenAudio

Hosted Forums => foobar2000 => 3rd Party Plugins - (fb2k) => Topic started by: oshah on 2005-09-02 21:16:48

Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2005-09-02 21:16:48
The latest version of the Game Audio Decoder is 1.10.

Game audio decoder (foo_game) is an input plugin for Foobar2000, capable of playing AUD, SFX, ISS, WAD, RWD, MUS, IDX, DCT, BIG and SC68 files. The plugin has only been tested against Foobar2000 v0.9.6.

Plugin (http://shexec32.serveftp.net/Files/foo_game110.zip), Homepage (http://shexec32.serveftp.net/products.aspx?id=foo_game),
Alternate link (http://209.200.127.55/products.aspx?id=foo_game) (if DNS goes down),
Visual C++ 2008 redistributable (http://www.microsoft.com/downloads/details.aspx?familyid=A5C84275-3B97-4AB7-A40D-3802B2AF5FC2&displaylang=en) (needed if you get "application configuration incorrect" or "missing DLL" errors).
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2005-10-07 17:46:28
Game Audio Decoder updated to 1.02:If you are updating from the previous version, you will need to remove your current foo_game songs and re-import them.

plugin homepage (http://hometown.aol.co.uk/_ht_a/shexec32/shexec32/products/foo_game.html), foo_game plugin (http://hometown.aol.co.uk/_ht_a/shexec32/shexec32/Files/foo_game102.zip), source (GPL) (http://hometown.aol.co.uk/_ht_a/shexec32/shexec32/Files/foo_game102src.zip), manual (http://hometown.aol.co.uk/_ht_a/shexec32/shexec32/Files/foo_game.txt), screenshot (http://hometown.aol.co.uk/_ht_a/shexec32/shexec32/images/sc68.png).
Title: Game Audio Decoder 1.07 released.
Post by: Borisz on 2005-10-07 19:26:35
Nice, you can seek in AUD files with this. That was something I missed in foo_input_aud.

A question tho, IMA ADPCM files are already handled by foo_input_std as the format is pretty much built into Windows. Will this cause any conflict or such?
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2005-10-08 11:54:52
I shouldn't think that there will be a conflict.

Standard IMA ADPCM files (particularly those that contain the WAVEFmt headers, which happens to be all of them) will not be recognised by the Game Audio Decoder, thus it should ignore them. The AUD/ISS plugins work by searching for AUD/ISS-specific signature bytes, and if they're not found, the file will be rejected, and those are the only two plugins that use IMA ADPCM.

That said, if you do find such a conflict, or any other conflict, that Will be a bug, and I'd want to hear about it. You should find it easier to find such conflicts if you enable the option "Ignore file extension" in preferences (I turned off that option by default because some of those plugins will have to read the entire file from beginning to end before it determines that it is not theirs, not nice when you're importing a 10000 song playlist).
Title: Game Audio Decoder 1.07 released.
Post by: kode54 on 2005-10-09 08:47:42
You should keep the links in your initial post up to date by editing it, rather than posting new links every time. I have taken the liberty of editing them up to the latest versions as of this post.

Hmm, does that sc68 library even support clean multi-instance? If it is a .dll, you can use this class I wrote (http://static.morbo.orb/kode54/dll_manager.zip) for the purpose of loading a unique instance of a given DLL for each request, by copying the DLL to a temporary file. It's a bit dodgy, but will ensure unique memory space per each instance. Only use it if you're sure the sc68 library doesn't support some instance mechanism, like handles or something. ( Bah, emulator authors are notorious for stupid things like this. Oh, and not understanding how to write an accurate emulator without making it horribly inefficient. Cycle accuracy should not need to be 'run this part for one cycle, then run this part for one cycle, repeat'. But that's a story for another topic, unless you're interested. )

Also, I wonder why it is you were using MSLU when utf8api.dll provides wrappers for most of the functions you should need. I am guessing you already discovered this, and are using IsUnicode() appropriately. Or something.

Off-topic, your DirectMusic MIDI input is a hack, but then, I guess that is why you haven't posted about it here. I should note that my MIDI plug-in supports all of those formats, and then some. The only requirement is that you somehow acquire Yamaha's S-YXG50 VSTi, or Edirol's HyperCanvas VSTi. ( I have compiled DXi support out of my latest beta version, since the DXi2 SDK's own host application sample is too buggy, and depends on MFC. )
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2005-10-16 12:35:36
1.03 released. Changes mostly centre around Sc68.
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-04-01 00:34:52
The big change for 1.04 was the introduction of the EA ADPCM decoder. Only preliminary support has been added so far. Little error checking is done for that input, hence some EA music tracks can crash the decoder, especially if it's a newer audio track (2002+). By default, that input is disabled.

With the release of 1.05, foo_game was rewritten to use the 0.9 SDK, and therefore now requires Foobar2000 0.9 to run.
Title: Game Audio Decoder 1.07 released.
Post by: vilse on 2006-04-01 14:25:21
Thanks for the update.

However, I can't get sc68 support to work. Actually I can't even enable it in the config, it just gives me an 'Sc68 is not properly installed or was not found' error. I do actually have the sc68 package installed with correct registry entries and everything.

Here's the console output with debug logging enabled:
Code: [Select]
(foo_game DBGMSG) Checking for existence of Sc68 install.
(foo_game DBGMSG) A required DLL was not found. The file will not be parsed.
(foo_game DBGMSG) Sc68 not found!
(foo_game DBGMSG) free(0)


Do I need anything more than sc68 and what's included with foo_game?

Edit: Come to think of it, the plugin is supposed to work with the official sc68 package isn't it? I'm asking because the error message tells me to get the package from your site... and I can't find one there.
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-04-01 20:13:47
Due to an oversight in foo_game, sc68 support refuses to work in most machines. This bug will be addressed in the next version of foo_game. Starting with 1.03, most of the sc68 code is now packaged within sc68.dll itself, to the point where foo_game can play back sc68 independent of the official package.

In the meantime, I have updated the product page with a new sc68 dll (with source code) which should work in most cases.
Title: Game Audio Decoder 1.07 released.
Post by: vilse on 2006-04-01 22:42:07
Thanks, that worked nicely.
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-04-07 21:53:19
1.06 is mostly a quick fix release (fixing the sc68 DLL bug). However, it does add support for the IDX/DAT format used by Rome Total War.
Title: Game Audio Decoder 1.07 released.
Post by: vilse on 2006-04-07 23:39:11
Any plans to add support for SNDH files? I think the sc68 libraries are supposed to play those as of version 2.1.0.
Title: Game Audio Decoder 1.07 released.
Post by: neothe0ne on 2006-04-08 00:56:16
Doesn't Rome Total War use MP3's in a container file(s) though?  I remember extracting MP3's by using Nova Extractor's scan function...
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-04-10 12:45:28
Game audio decoder 1.05 and 1.06 have a serious bug which could crash Foobar2000 if you add a corrupted track to the playlist. If you downloaded these versions, please, download the updated 1.07.

Doesn't Rome Total War use MP3's in a container file(s) though?  I remember extracting MP3's by using Nova Extractor's scan function...


foo_game allows you to play those game formats in Foobar2000 without having to perform an extraction (or conversion) step.

Any plans to add support for SNDH files? I think the sc68 libraries are supposed to play those as of version 2.1.0.


Do you have any sample SNDH files so I can see what they look like?
Title: Game Audio Decoder 1.07 released.
Post by: vilse on 2006-04-10 19:35:05
http://sndh.atari.org (http://sndh.atari.org)
That place has tons of SNDH files as well as fileformat specs.
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-04-10 21:00:32
http://sndh.atari.org (http://sndh.atari.org)
That place has tons of SNDH files as well as fileformat specs.


What happens when you rename the extensions to sc68?
Title: Game Audio Decoder 1.07 released.
Post by: vilse on 2006-04-10 21:46:34
Heh, that's funny. It works even without changing extension.
Must have been something you did quite recently as I'm pretty sure I already tried that not too long ago.

Thanks, and sorry for wasting your time...
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-04-10 22:03:43
Heh, that's funny. It works even without changing extension.
Must have been something you did quite recently as I'm pretty sure I already tried that not too long ago.

Thanks, and sorry for wasting your time...


Could be this (from the 1.07 changelogs):

-The patched SC68 from XSC has been merged into the foo_game source tree.

You'll see some extra debug messages, like "Checking for alternate ICE! header", which weren't there before. If you get this message, it's a strong indication that it was the patched SC68 lib that did it.
Title: Game Audio Decoder 1.07 released.
Post by: vilse on 2006-04-11 15:46:49
Yup, I do indeed get that message.
Title: Game Audio Decoder 1.07 released.
Post by: rutra80 on 2006-04-15 03:22:03
oshah, would you be interested in implementing into your plugin a support for playing (Octa)MED modules? They were used in quite a lot of Amiga games, I'd say that it's a 2nd popular amiga-tracker format after ProTracker's MODs. I was begging other devs to write a plugin for it, but no interest. There's SDK (http://www.medsoundstudio.com/) available, so no need for any reverse-engineering.
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-04-15 11:37:21
Since I can't find a game with OctaMED files, and due to possible licencing issues, I doubt I will add support into Game audio decoder.

However, I will look into creating a completely new input plugin, dedicated for this purpose. That is, if no one else is doing the same thing.
Title: Game Audio Decoder 1.07 released.
Post by: rutra80 on 2006-04-18 19:57:13
The ones that come to my mind at the moment, are Amiga versions of Hired Guns, and Lemmings 2 Tribes, let me know if you need more examples and I'll find them. I have a bunch of OctaMED files, so if you need some just let me know. I'm quite sure that no one else is developing plugin for it. I would really appreciate it!
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-05-11 20:58:19
There are no notable changes for foo_game 1.08. The new functionality planned for 1.08 split off from foo_game to become its own new plugin, foo_m1 (http://shexec32.serveftp.net/products.aspx?id=foo_m1).
Title: Game Audio Decoder 1.07 released.
Post by: rutra80 on 2006-05-11 22:30:47
oshah, so do you have any plans regarding OctaMED support?
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-05-12 12:59:08
oshah, so do you have any plans regarding OctaMED support?


Rutra80, I forgot to tell you, I gave up on this plugin a couple of weeks ago. Sorry, but it doesn't look like I'm qualified to take this on. 
The first shot I had at creating an octamed plugin led to a plugin that couldn't even start. It looks like loads of work is needed to make OctaMED work in a foobar2000/VC++2005 environment.
The Octamed SDK is completely useless--it uses its own playback engine to playback MED files (how awfully nice of them </sarcasm>), which is great for programmers that don't know the difference between a WAV and PCM, but absolutely useless for Foobar2000, which needs to access the output audio.
If anyone wants to pick up where I left off, I will be more than glad to send my present sources to them.
Title: Game Audio Decoder 1.07 released.
Post by: Borisz on 2006-05-12 18:59:01
There are no notable changes for foo_game 1.08. The new functionality planned for 1.08 split off from foo_game to become its own new plugin, foo_m1 (http://shexec32.serveftp.net/products.aspx?id=foo_m1).

That plugin would be one my favorite things ever, but:
Code: [Select]
Unable to open item for playback (Unsupported file format):
"D:\Mame\FoxM1\foobar\zupapa.fm1"


I did pretty much everything according to the guide. Even extracted a blank new m1.dll setup from emuhype into the default used directory, and it still didnt work.
Title: Game Audio Decoder 1.07 released.
Post by: rutra80 on 2006-05-12 22:30:25
Rutra80, I forgot to tell you, I gave up on this plugin a couple of weeks ago. Sorry, but it doesn't look like I'm qualified to take this on. 
The first shot I had at creating an octamed plugin led to a plugin that couldn't even start. It looks like loads of work is needed to make OctaMED work in a foobar2000/VC++2005 environment.
The Octamed SDK is completely useless--it uses its own playback engine to playback MED files (how awfully nice of them </sarcasm>), which is great for programmers that don't know the difference between a WAV and PCM, but absolutely useless for Foobar2000, which needs to access the output audio.
If anyone wants to pick up where I left off, I will be more than glad to send my present sources to them.

Bah, that's bad news. Thank you for trying though.
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-05-13 13:27:30
That plugin would be one my favorite things ever, but:

Unable to open item for playback (Unsupported file format):
"D:\Mame\FoxM1\foobar\zupapa.fm1"

I did pretty much everything according to the guide. Even extracted a blank new m1.dll setup from emuhype into the default used directory, and it still didnt work.


Do you have a list file for that game? If not you'll have to write an lst yourself or add song tags to the fm1 file.

Code: [Select]
<?xml version="1.0"?>
<foo_m1 version="1.0"
  xmlns="http://shexec32.serveftp.net/Files/foo_m1_v1.0.xsd">
  <RomPath>C:\Mame\Roms</RomPath>
  <GameName>zupapa</GameName>
  <song ID="0" num="34"><title>Zupapa track 34</title></song>
  <song ID="1" num="35"><title>Zupapa track 35</title></song>
  <song ID="2" num="36"><title>Zupapa track 36</title></song>
  <!-- etc. -->
</foo_m1>
Title: Game Audio Decoder 1.07 released.
Post by: Borisz on 2006-05-14 23:29:09
Oh, with games that have existing listings, it works.

It seems that I need to move the volume slider under Normalization to get any sound though. Also, ticking normalizing on or off seems to have no effect, and whatever I set the volume sliders to, their effect will only kick in after I restart foobar.
Title: Game Audio Decoder 1.07 released.
Post by: oshah on 2006-05-15 17:06:20
Oh, with games that have existing listings, it works.

Unfortunately, unless you have an existing listing, or can provide track information through song tags, foo_m1 will reject the file.
In a future version, I will add support for the numsongs attribute, which will save you from having to type out all those <song> nodes. But foo_m1 cannot work without having some kind of track information present.

It seems that I need to move the volume slider under Normalization to get any sound though. Also, ticking normalizing on or off seems to have no effect

Which version of m1.dll do you have (ie. what is its size and timestamp)? It doesn't sound like you have the same version as me.
In the 0.77 M1 release, the volume sliders are known not to work (only the normalize checkbox works), but I never encountered a situation where the normalize checkbox didn't work.

Whatever I set the volume sliders to, their effect will only kick in after I restart foobar.

Like in foo_game, all options are designed to take effect after you restart playback (Apart from the fadeout option, which takes effect immediately, but that's a bug).
Title: Game Audio Decoder 1.07 released.
Post by: Borisz on 2006-05-16 13:44:26
I have the latest m1.dll.

(What I mean is that turning the normalize tickbox on/off has no effect.) <-- edit: nevermind this, it works. The music I was listening to just didn't need any normalization and thus I found no differences.


And I need to move the volume slider under Normalization away from 0 to get any sound. In fact, that slider controls the overall volume level of the plugin.
Title: Game Audio Decoder 1.07 released.
Post by: wangyi6854 on 2008-10-20 14:40:36
Hi, oshah,

Please recompile the plugin for it's not compatible with foobar2000 0.96.

Thanks very much!
Title: Game Audio Decoder 1.07 released.
Post by: deus-ex on 2008-10-20 20:35:47
Please recompile the plugin for it's not compatible with foobar2000 0.96.

Latest version 1.08 works fine here. Please verify.
Title: Game Audio Decoder 1.07 released.
Post by: kode54 on 2008-10-20 22:07:35

Please recompile the plugin for it's not compatible with foobar2000 0.96.

Latest version 1.08 works fine here. Please verify.

Maybe not under Vista?
Title: Game Audio Decoder 1.07 released.
Post by: wangyi6854 on 2008-10-25 13:17:42


Please recompile the plugin for it's not compatible with foobar2000 0.96.

Latest version 1.08 works fine here. Please verify.

Maybe not under Vista?


Maybe. My system is server 2008 64bit. Foobar2000 is 0.9.6 beta1. When foobar2k starts, it says
Code: [Select]
Failed to load DLL: foo_game.dll, reason: This component is not compatible with this version of Windows and needs to be recompiled with a newer version of the foobar2000 SDK; please contact the author of this component to obtain an updated version of this component.
Title: Game Audio Decoder 1.07 released.
Post by: zyrill on 2008-11-19 02:09:02
could anybody upload the plugin somewhere please? all the download links are dead!
Title: Game Audio Decoder 1.07 released.
Post by: wangyi6854 on 2008-11-19 02:14:10
could anybody upload the plugin somewhere please? all the download links are dead!

Use a proxy. I can't access the site directly too.
Title: Game Audio Decoder 1.07 released.
Post by: jahpal on 2008-11-19 03:42:24
oshah i can get this plugin , somethings wrong with the page , i can`t download. THANK YOU...
Title: Game Audio Decoder 1.07 released.
Post by: deus-ex on 2008-11-19 18:59:44
oshah i can get this plugin , somethings wrong with the page , i can`t download. THANK YOU...
It's available at MODLAND ever since of course.

Code: [Select]
ftp://ftp.modland.com/pub/players/Windows/Foobar2000%20v0.9/input%20plugins/Foo_Game%20v1.08.rar
Title: Game Audio Decoder 1.07 released.
Post by: jahpal on 2008-11-20 05:01:01
i did not find it . unless i can read or dont know what im looking 4...
Title: Game Audio Decoder 1.07 released.
Post by: zyrill on 2008-11-20 09:00:11
It's available at MODLAND ever since of course.
Code: [Select]
ftp://ftp.modland.com/pub/players/Windows/Foobar2000%20v0.9/input%20plugins/Foo_Game%20v1.08.rar

Thanks a bunch for making it available - but what is modland and how would we have known that it was available there of course?
Title: Game Audio Decoder 1.07 released.
Post by: deus-ex on 2008-11-20 20:01:56
i did not find it . unless i can read or dont know what im looking 4...
Here's the very same link I posted previously. Just click on the word download, your Browser should handle it from there for you.

Foo_Game v1.08: download (http://ftp://ftp.modland.com/pub/players/Windows/Foobar2000%20v0.9/input%20plugins/Foo_Game%20v1.08.rar)

Thanks a bunch for making it available - but what is modland and how would we have known that it was available there of course?

If you'd browse the path of the download link I posted upward a bit you'd eventually find this:

Code: [Select]
      __  ___               __ __                      __
    //  \/   \             |  |  |  .: welcome to :.  |  |
   |          |  _____   __|  |  |  _____   _____   __|  |
..:|          |// ,   |// ,   |  |// ,   |//     |// ,   |:..
   |___,__,__/|______/|______/|__|____,__|____,__|______/

Welcome to Modland - probably the largest module archive in the world.
Currently there are 375095 modules online in 294 different formats,
old and new! If you're a module freak like myself, feel free to download!
If you have no idea what a module is, then you're in the wrong place!

Contribute! Upload your modules into /upload (please sort them into
subfolders). If you find any duplicates or other errors, or if you are
looking for a specific module, please send a mail!

Admin: Daniel Johansson, coma@modland.com
Co-admin: deus-ex@modland.com

Feel free to browse the folders, there's lots of valuable content to discover. Enjoy your stay.
Also notice my signature containing a link to MODLAND's main folder, btw.
Title: Game Audio Decoder 1.07 released.
Post by: jahpal on 2008-11-21 03:29:31
THANK YOU Bro. i could get to the page but i did not see any of that mess on the page .; got it with the LINK thanks once again...
Title: Game Audio Decoder 1.07 released.
Post by: Borisz on 2008-12-10 19:25:24
Maybe. My system is server 2008 64bit. Foobar2000 is 0.9.6 beta1. When foobar2k starts, it says
Code: [Select]
Failed to load DLL: foo_game.dll, reason: This component is not compatible with this version of Windows and needs to be recompiled with a newer version of the foobar2000 SDK; please contact the author of this component to obtain an updated version of this component.

Confirming the issue on foobar 096 final, on Vista Ultimate SP1.

Can anybody contact the author for an update? I'm mainly looking for a Westwood AUD player, the only other one I know of is for Foobar 0.8.
Title: Game Audio Decoder 1.07 released.
Post by: wangyi6854 on 2008-12-11 00:49:17

Maybe. My system is server 2008 64bit. Foobar2000 is 0.9.6 beta1. When foobar2k starts, it says
Code: [Select]
Failed to load DLL: foo_game.dll, reason: This component is not compatible with this version of Windows and needs to be recompiled with a newer version of the foobar2000 SDK; please contact the author of this component to obtain an updated version of this component.

Confirming the issue on foobar 096 final, on Vista Ultimate SP1.

Can anybody contact the author for an update? I'm mainly looking for a Westwood AUD player, the only other one I know of is for Foobar 0.8.

Game audio player can also play .aud file.
Title: Game Audio Decoder 1.07 released.
Post by: Borisz on 2009-01-03 15:10:46
Game audio player can also play .aud file.

I could not find an up to date version of that (is that also foo_game?), but this plugin has been updated and plays all my AUD files fine on the latest version of foobar.
Title: Game Audio Decoder 1.07 released.
Post by: wangyi6854 on 2009-01-04 00:58:29

Game audio player can also play .aud file.

I could not find an up to date version of that (is that also foo_game?), but this plugin has been updated and plays all my AUD files fine on the latest version of foobar.

Yes, the latest version works fine.
Title: Game Audio Decoder 1.07 released.
Post by: Sim's on 2009-02-05 08:59:49
Foo_m1 doesn't work, it's very strange because the plugin worked fine 3 weeks before. Now i can't create .fm1 file. Even if I have a file, Foobar is not to able to play it.
Title: Game Audio Decoder 1.07 released.
Post by: Cutter on 2009-02-21 13:06:47
The plugin crashes foobar here.

foobar2000 v0.9.6.3 beta 1
M1 0.7.7
Windows XP SP3
VC++ 2008 Redistribuable

Code: [Select]
Opening track for playback: "D:\fm1lists\mslug3.fm1"
(foo_m1 DBGMSG 0) Writing data to temp file
(foo_m1 DBGMSG 0) Start parsing XML
(foo_m1 DBGMSG 0) numTracks (0) and numsongs (100) differ
(foo_m1 DBGMSG 0) End of XML parsing
(foo_m1 DBGMSG 0) Temp file removed
(foo_m1 DBGMSG 0) Opening D:\roms, mslug3
(foo_m1 DBGMSG 0) Loading M1 DLL
(foo_m1 DBGMSG 2) Starting M1
(foo_m1 DBGMSG 0) Initializing M1
(foo_m1 DBGMSG 3) Setting M1 options
(foo_m1 DBGMSG 0) Loading game
(foo_m1 DBGMSG 0) Loading M1 DLL
(foo_m1 DBGMSG 0) DLL is currently in use. Creating a copy in the same directory.
(foo_m1 DBGMSG 0) Starting M1
(foo_m1 DBGMSG 0) Initializing M1
(foo_m1 DBGMSG 3) Setting M1 options
(foo_m1 DBGMSG 0) Loading game
(foo_m1 DBGMSG 0) Acquiring an instance of M1
(foo_m1 DBGMSG 0) The global instance of M1 is available
(foo_m1 DBGMSG 0) Switching to game Metal Slug 3
(foo_m1 DBGMSG 0) Game Selected: Metal Slug 3 (SNK, 2000)
(foo_m1 DBGMSG 0) Location result: 1
(foo_m1 DBGMSG 0) Setting location to D:\roms\mslug3.zip
(foo_m1 DBGMSG 2) Error occurred in M1 callback. Caution, memory has been leaked
Title: Game Audio Decoder 1.07 released.
Post by: Pulstar on 2010-02-02 16:02:24
The internet is such a wonderful place. Noone bothered to mirror the foo_m1 plugin and the author's page is down indefinitely. Does anyone here have a backup copy? I'm tired of having to manually rip the music from the MAME set, and MAME's sound format is a non-starter. Even if it uses an older core if it means less time wasted ripping music I'm all for it. I hope someone here helps.
Title: Game Audio Decoder 1.07 released.
Post by: HTD10 on 2010-03-09 20:43:30
Is it dead? No working DL or any other link. I'm sick and tired of geniuses who don't know how to host a file or website. Grow up, kids. Use SourceForge, it's easy. Currently there is no way to play SNDH file on PC. Sad. I can play all 8-bit/16-bit chiptunes, except SNDH, like Atari ST is worse than the rest. Maybe it is?
Title: Game Audio Decoder 1.07 released.
Post by: kode54 on 2010-03-09 21:46:12
You can't use SourceForge if you're not open source.

There is a component repository with file uploading now, but you need to request an account from Peter first, and this component disappeared long before the repository opened.
Title: Game Audio Decoder 1.07 released.
Post by: thals1992 on 2012-04-03 04:46:57
Ok, so I was digging through my foobar plugins, trying to find/update any of them while finding different ones, and found that the Game Audio Decoder has vanished from the internet. If someone can find a better place for the file instead of my dropbox that would be great. I remember it being difficult in the first place to find it.  I ended up downloading I don't know how long ago on some site that had the Game Audio Player on it that would decode Simcity3000 audio files as well as WADs. It acts as a legacy plugin, but it works in 1.1.11

foo_game 1.10
http://dl.dropbox.com/u/70658234/foo_game.zip (http://dl.dropbox.com/u/70658234/foo_game.zip)



Thats a lot of ones!
Title: Game Audio Decoder 1.07 released.
Post by: deus-ex on 2012-04-07 10:20:44
[...] If someone can find a better place for the file instead of my dropbox that would be great. [...]

ftp://modland.ziphoid.com/pub/software/pl...der%20v1.10.rar (http://ftp://modland.ziphoid.com/pub/software/players/Windows/Foobar2000%20v1.0/input%20plugins/Foo_Game%20Audio%20decoder%20v1.10.rar)

(http://www.freeimagehosting.net/newuploads/ck7sk.png)
Title: Game Audio Decoder 1.07 released.
Post by: w00w000 on 2014-06-27 23:44:03
w/ sc68.dll
ftp://modland.ziphoid.com/pub/software/pl...oder%20v1.10.7z (http://ftp://modland.ziphoid.com/pub/software/players/Windows/Foobar2000%20v1.0/input%20plugins/Foo_Game%20Audio%20decoder%20v1.10.7z)