Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: foo_dumb (Read 311117 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

foo_dumb

Reply #75
Allright, all v0.9.2.13 probs sorted.

Regarding the "subsongtime adds mainsongtime", for reference i use XMP.
Ian's approach on subsongs seems to be to count just the Orders/Patterns which are outside the main song orderbody. I reported them to make sure there are no unwanted issues left.

Hopefully you get around to implement .mtm support (and maybe other formats you were allready sitting on). Is there room for speed optimizations? If not, i still definetly go for quality than for speed, i.e. i keep foo_dumb over foo_mod for sure.

If you're interested in any original format like:
  • "Death Rally" Musics.bpa file (one big crypted archive of several .s3m's - Open Cubic Player reads it)
  • "Crusader - No Remorse/Regret"  Asylum-Mod-Format .amf files, Mod2Amf Converter
  • Imago Orpheus .img files, the original Tracker, a Formatdescription, the Playersource
please let me know.

Best regards, deus-ex.

foo_dumb

Reply #76
Quote
Allright, all v0.9.2.13 probs sorted.
[a href="index.php?act=findpost&pid=245924"][{POST_SNAPBACK}][/a]

Excellent.

Quote
Regarding the "subsongtime adds mainsongtime", for reference i use XMP.
Ian's approach on subsongs seems to be to count just the Orders/Patterns which are outside the main song orderbody. I reported them to make sure there are no unwanted issues left.[a href="index.php?act=findpost&pid=245924"][{POST_SNAPBACK}][/a]

Aha. My subsong approach does the same when looking for starting points, but it doesn't bar a particular subsong from actually executing a pattern jump to a region played by another subsong. A few cases did involve patterns/orders which were designed to be played alone, and either worked OK with my first fix because they were surrounded by end markers, or worked OK now because of the restart hacking. The only case I saw that really needed this was the end pattern habit avec rudolf.mod, which appeared to be constructed to play alone, then stop. Forcing restart position to match requested start makes sure this doesn't play the whole song.

Thanks for reporting, though. Many of these issues were really stupid bugs and would be sure to annoy users. At least unwanted subsongs can be adjusted and/or deleted from the playlist. The scanning only occurs if you add the files directly, so you can save your favorite order references in a FPL and not worry about info reload or losing ReplayGain information in the event of database explodey or migrating playlist to another installation. (Meh, paths may change, but if only the drive changes, you can hexedit search/replace the x:\ in the paths, it shouldn't cause much trouble, but always remember to keep backups. )

Quote
Hopefully you get around to implement .mtm support (and maybe other formats you were allready sitting on). Is there room for speed optimizations? If not, i still definetly go for quality than for speed, i.e. i keep foo_dumb over foo_mod for sure.[a href="index.php?act=findpost&pid=245924"][{POST_SNAPBACK}][/a]

There may be some minor room, if the way it handles the mixing list for effective channel limiting is any real slowdown. Basically, it collects all playing voices and their effective calculated channel/note volume into a big array of voice state ptr / volume. Then it qsorts this array so the loudest voices are first. Then it mixes, decreasing a copy of the limit count until it reaches zero. This is a bit buggy as it still performs resonant filtering even when it passes the configured limit.

I've also found that spx-Bubbles.it definitely hits this limit, and the current NNA logic ends up cutting current notes instead of dropping old voices when there's no more room.

I'll be taking a recess as I catch some much needed sleep for the next 12 hours or so, then I may also be taking a short break from the project "tomorrow." Basically, I'll probably pick it up some time after I wake up, or at least within a day or two, unless you find more bugs for me to squash.

Planned work includes MTM support, old PSM support, and maybe some more exotic formats that may be easy to support, such as DSMI AMF. Thanks for offering that tracker, I will contact you if I cannot acquire it from the author's site. I would also be interested in any songs actually released in the Orpheus IMG format.

As for Asylum AMF format, I've heard from a friend that the music files are not widely available in the AMF format, but I may try to support it.

Planned experiments include changing the max NNA voices macro to allow for 448 instead of 192, for a total of 512 voices, just to see how far spx-Bubbles.it stretches DUMB. There may be a problem with leaking voices on NNA duplicate checks, I'm not sure. At any rate, making random pieces of code deal with up to 448 NNA voices or 512 total voices is bound to make things slower. If not the mixing when things creep that high, then the various loops that have to scan over the entire array of voice state pointers, as all non-zero pointers are running voices and all others are free slots. Probably not optimal, but certainly "functional." Maybe it is aptly named DUMB.

Quote
"Death Rally" Musics.bpa file (one big crypted archive of several .s3m's - Open Cubic Player reads it)[a href="index.php?act=findpost&pid=245924"][{POST_SNAPBACK}][/a]

If OCP can read it, it shouldn't be too hard to implement an archive reader for it. Naturally, since this BPA contains multiple S3M files, the BPA handler will be implemented as an archive handler, similar to ZIP/RAR/7z support.

Quote
"Crusader - No Remorse/Regret"  Asylum-Mod-Format .amf files, Mod2Amf Converter[a href="index.php?act=findpost&pid=245924"][{POST_SNAPBACK}][/a]

This may prove interesting for later.

Quote
Imago Orpheus .img files, the original Tracker, a Formatdescription, the Playersource[a href="index.php?act=findpost&pid=245924"][{POST_SNAPBACK}][/a]

Hopefully, the author's site, which I visited recently, proves to have live downloads. If not, I will ask. Again, some actual released IMG files may prove interesting.

foo_dumb

Reply #77
Quote
I've also found that spx-Bubbles.it definitely hits this limit, and the current NNA logic ends up cutting current notes instead of dropping old voices when there's no more room.

Yeah, spx-Bubbles.it is a real bitch taking looong time to load/initialize. Thats why i wondered if foo_dumb code can be further optimized towards speed when it reaches a mature state. One idea which came to my mind is to subsongscan a file only when its being played (mainsong), maybe as an optiontoggle.


Quote
Planned work includes MTM support, old PSM support, and maybe some more exotic formats that may be easy to support, such as DSMI AMF. Thanks for offering that tracker, I will contact you if I cannot acquire it from the author's site. I would also be interested in any songs actually released in the Orpheus IMG format.

Typo on my side, its Orpheus .imf. You'll find only one example song in the distribution. I have a few more which were accessable through Karsten Koch's site once, now there are removed.

Quote
As for Asylum AMF format, I've heard from a friend that the music files are not widely available in the AMF format, but I may try to support it.

Asylum AMF-format beeing not widely available is true. I was able to convert them to .mod using the ol' Modplug Player, result is rather good. So i guessed since Modplug went opensource plus your skills plus the stuff from my side it's worth a try. I understand you are aware that DSMI AMF and Cru's Asylum AMF is NOT the same.

Quote
If OCP can read it, it shouldn't be too hard to implement an archive reader for it. Naturally, since this BPA contains multiple S3M files, the BPA handler will be implemented as an archive handler, similar to ZIP/RAR/7z support.

The extracted .s3m files are accessable through a site dedicated to archiving mod-files.
Look for "Purple Motion" there. Speaking of archive handler, if you manage to get it running please add an "save to .s3m" option, too.

Quote
Hopefully, the author's site, which I visited recently, proves to have live downloads. If not, I will ask. Again, some actual released IMG files may prove interesting.

Yes, they are accessable. I'll send you the .imf files. Please also check Astaris (kk).xm. It's a converted .imf file that was made with an unreleased version of Orpheus (v1.5) that sports .xm-format saving, v1.0 only allows to save to .imf, .mod and .s3m. Original .imf 16-bit version is included in the mail.

Greetings, deus-ex.

EDIT: Crap, your e-adress is busted. Should've known. Mine is not, give me clue.

foo_dumb

Reply #78
could you indicate a place where I could download the last version of your nice component ? the last one I have is the one you've attached in the upload section of this board - can't get it thru your website since it's down

thanks

foo_dumb

Reply #79
Quote
could you indicate a place where I could download the last version of your nice component ?
[{POST_SNAPBACK}][/a]


[a href="http://www.saunalahti.fi/cse/kode54/]http://www.saunalahti.fi/cse/kode54/[/url]

foo_dumb

Reply #80
Uploaded v0.9.3.
  • Old PSM format support.
  • MTM support.
  • MOD/XM S8x set panning effect, assuming at least MOD should support this. Let me know if this is incorrect, and I'll restrict it to MTM.
  • Fixed IT file info for UMX archives. This has been broken since I moved the generic module loading code to a global function so I wouldn't be duplicating so much code in the subsong scanner.
  • In 0.9.2.12, I removed length probing from most of the module readers, since the component front-end does its own probing anyway, and only when the player core caches the file info. I accidentally missed the IT reader. IT loading is fast "like woah" now.
Yahoo, quick changes. Uploaded v0.9.3.1.
  • There may have been a bug with finetune effect being doubled, this may be fixed now. Maybe I'll use ProTracker to make a test module and see how it sounds vs. DUMB...
  • Implemented glissando. I hope this is correct.
  • Implemented PTM note slides. This completes PTM support, and fixes abno*.ptm and perfect*.ptm. (Names may vary slightly. Yes, two whole files that I know of. Most obvious, ~1:09 into abnormality, or at order 6, pattern 4, rows 24-25, 28-29, and 56-57.)

foo_dumb

Reply #81
Woah, you're updating faster than i can follow with my test. Following belongs to v0.9.2.14 and is still valid for latest v0.9.3.1 which i quicktested before posting this:

Something in the Impulseformat reader got broken with the recent changes released in v0.9.2.14 which let resonant filter modules sound awful. Please pick Jeffrey Lim's "Jeff93.it" for testing first, the issue is easy to spot there. Hopefully easy to fix.

Chris50b.it
Chris47.it
Chris17b.it
Jeff93.it
Jeff78d.it

Found the issue by pure chance as i redownloaded the Impulsetracker distribution from Jeffreys recently updated site to make sure i have the latest release. Surprisingly It.exe of the distribution is of an older date than the one i downloaded from the official site some years ago, current package has a copyright from 1995-1998 in the titlestring, mine is 1995-1999. Hmmm...

----------------------------

Please enhance the options menu so that every single dynamic info can be toggled separately and having the "display dynamic info" switch on top as a global toggle for the userdefinable level of dynamic info. Though i like to see Order/Channel info, the row info eats a lot of cpu cycles. When toying around with bleh's foo_vis_bacon i got serious performance drops which are solved when switching off foo_dumbs dynamic info.

deus-ex

foo_dumb

Reply #82
Uploaded v0.9.3.2.
  • Removed part of my last NNA changes. The real problem was with temporary NNA change effects not being removed from their respective channels properly, so some notes were hanging. The incorrect fix was the assumption that channel volume should affect NNA voices. This caused several sounds to be too loud in the above modules, and probably others.
Oh, and would you mind sending me your copy of Impulse Tracker? :B

 

foo_dumb

Reply #83
What the f...? You killed Lucky Luke.
Pushed some Orpheus files into your mbox, make some room for IT please.

EDIT:
.it issues solved. Loading speed increase is impressive.
Listening now to first .mtm through foo_dumb. Playbackquality knocked me off my feet. MARVELOUS!!! 

EDIT 2:
Ok, first .mtm issues rolling in. Take cover.
Time Bomb!.mtm crashes regardless off dumb settings.
Geometric Shadows.mtm crashes with "trim silent pattern" on

deus-ex

foo_dumb

Reply #84
Uploaded v0.9.3.3.
  • Fixed glissando control, it was turning the effect on no matter what the effect value was.
  • Rewrote MTM comment reader. The previous iteration had some glaring faults and led to heap corruption. Fixes Time Bomb!.mtm, Geometric Shadows.mtm, and possibly others where corruption did not manifest as crashes.

foo_dumb

Reply #85
Ok, .mtm crashes sorted. All the .mtm's of my collection (only a few) load and play fine.

Btw., remember the ADLIB .s3m stuff? In_Adlib v1.6 is now available. The Winamp Input Wrapper was updated too.
The Author of the "Winamp Input Wrapper" also offers a native Foo_Adplug component which was (guess what) also updated to v1.03.

Adplug now detects ADLIB .s3m's and grabs them for playback and doesn't interfer with normal .s3m's. The rename trick i used to do isn't neccessary anymore.

deus-ex

foo_dumb

Reply #86
Quote
Adplug now detects ADLIB .s3m's and grabs them for playback and doesn't interfer with normal .s3m's. The rename trick i used to do isn't neccessary anymore.
[a href="index.php?act=findpost&pid=246265"][{POST_SNAPBACK}][/a]

Very convenient. This works hand in hand with foo_dumb rejecting the Adlib S3M files.

I may yet add support for this, although it would require some changes to how the renderer system works, basically channels sending register data to emulated adlib every tick where applicable, then sample render functions advancing and mixing FM samples into the output. Of course, there is the problem of mixing it into the system without interfering with the existing system, without adding extra overhead to non-FM songs, and dealing with relative FM volume.

Eh, that can wait.

foo_dumb

Reply #87
I recommend to use In_Adlib.dll along with the Winamp_Input_Wrapper. The native Foobar plugin only offers setting up mixing rate and a .s3m-file detection toggle. It is missing In_Adlib's soundcard and opl-emulation setup, you can't choose between the two opl-emulators and it doesn't offer the configurable extension handling.

One drawback of that is that Foo_Adplug grabs and plays .d00/.d01 (Edlib) files regardless off the installed In_D00 plugin which is specialized in that format and sounds so much better. Second Foo_Adplug fails to play .laa-files (Lucas Arts Audio) while In_adlib/Winamp_Input_Wrapper works flawless. Third it always sets subsong index to 1 for every file when there is no subsong. Fourth it doesn't provide access to existing subsongs. Meh...

And now to something completely different...

A few more issues spotted, mainly .it-format:
Chris37.it : Order 04, Channel 07/08, Panning to the left, should be to the right
Chris47.it : Order 00, Channel 04, Bass sample played to long (though i think it does sound good in this particular example)
Cjembrac.it : Order 00, Channel 17/18, Panning to much on the left, should be more to the right
Cj-Purg1.it : Order 02, Channel 01, Snare sample sounds to hard. (caused by the sampling accuracy of the dumb library? Or because of missing volumeramping?)
Cj-Purg2.it : Order 00, Channel 05, Piano sample played to long (best heard when Piano plays for the second time after ~8 sec.)
4sw.it : Order 00, Channel 01(/02/03), Piano sample should be panning from right to left and back continously
(with IT the initial panningslider startposition for Channel 01 seems to be different at every songrestart, restart the song a few times and watch the slider on the right)
As_Dtd.it : Order 03, Channel 04, Drum sample to much on the middle (or stereo?), should be on the left (best heard when Drum Kick plays fot the third time at ~30 sec.)
Jv-Mcml.it : Order 06, Channel 01-04, should continously Pan between left and right
F0x-Test.xm : Order 00, Channel 01, Row D0/DD/EA/F7 (FT2 rownumbering), effect played wrong

deus-ex

foo_dumb

Reply #88
HI

I just tested your new mod plug-in and it seems very good!
Here some modules not playing with foo_dumb :

SONG3.MOD (maybe just a broken mod but it plays in winamp)

KINGDOM.MOD (this mod is in soundtracker 31 format and plays in winamp and xmplay)

16th intro.mod (if you play this file in deliplayer there is one hidden channel at the beginning (and the mod sounds much better) but it is not present in any other player)

SACRILEG.669 (don't play here but works in winamp)

Intro-Music.mod    (it doesn't play well in foo_dumb (for example at 0min 41s))

and I have uploaded here all the mod2amf versions I have (this tool is the original to make conversion of .mod into .amf). Every version make a different .amf format (from version 0.8 to 1.4 If i remember correctly)

thoose files are in the upload section


And if you want I have more files in different formats that may interest you:
669 (18 files)
MTM (18 files)
PTM (48 files)

and some files in currently unsupported format (but x-fixer added them easily in in_mod)

farandole .far (7 files)
screamtracker2 .stm (71 files)
oktalyzer .okt (the real amiga format completely different from .mod) (71 files)
ultra tracker .ult (2 files)
DSMI AMF (15 files)

If you want all the files in unsupported format I have tell me where I can upload them all in one big .7z file!


Ah and if youwant  you can see this forum this is where I posted two years ago : http://forums.winamp.com/showthread.php?threadid=96818)
maybe you can find something interesting there. 

foo_dumb

Reply #89
Uploaded v0.9.3.4.
  • Fixed pitch pan separation for negative values. (Chris37.it)
  • Reimplemented instrument envelope control. Previously, envelopes could not be turned on if the instrument envelope was not already enabled. (Chris47.it, Cj-Purg1.it, Cj-Purg2.it)
  • Panbrello position and depth persist for the life of a voice, and only depth is reset when panning is changed. (Cjembrac.it)
  • Implemented instrument random volume and panning variation. (4sw.it, Jv-Mcml.it)
  • Implemented FT2 logarithmic vibrato. I hope this is correct. (F0x-Test.xm)
  • Implemented FT2 square and ramp waveforms. (F0x-Test.xm)
  • MOD/XM pattern breaks to rows greater than 63 break to row 0 instead. This is how FT2 behaves, but I haven't checked ProTracker. (F0x-Test.xm)
  • Sample offset is now excluded from effects which are continued during pattern delays. (F0x-Test.xm)
I'm not sure about As_Dtd.it. At the exact moment you indicate, channel 4 is panned to the center, but a different kick drum sound is being played on channels 5 and 6, which are almost hard panned left and right. On channel 6, this is combined with a sample offset effect. It sounds correct here. None of the above changes would affect this, as far as I can tell. Oh well.


Quote from: bigboo,Oct 5 2004, 02:30 PM
Ah and if youwant  you can see this forum this is where I posted two years ago : http://forums.winamp.com/showthread.php?threadid=96818)
maybe you can find something interesting there. 
[{POST_SNAPBACK}][/a]


Hello, I remember you.



Quote
SONG3.MOD (maybe just a broken mod but it plays in winamp)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

Why, yes, it is a broken file. Without the proper sample data, it doesn't even produce recognizable music. I would surmise that the patterns are broken as well, or my changes to DUMB's MOD loader would let it pass.

Quote
KINGDOM.MOD (this mod is in soundtracker 31 format and plays in winamp and xmplay)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

Another signature that means generic 4 channel 31 sample module, how quaint.

Quote
16th intro.mod (if you play this file in deliplayer there is one hidden channel at the beginning (and the mod sounds much better) but it is not present in any other player)

Two years later, this file is still broken. It would appear that DeliPlayer behaves differently with the loop positions, but not much else.

In place of the original sample data, I can see the text from the intro it was ripped from. "Shadow of the 3rd Moon" "improved Version 1.1" From the sample names, I see it was ripped using ProWizard. Botched another one, I guess.

I managed to find a page with some of their intros/cracktros [a href="http://www.geocities.com/amigaintros1/l/lightforce/lightforce.html]here[/url], but it does not have the "improved Version 1.1" intro. What a surprise, this Prowizard for PC manages to trip up when ripping the music from the Shadow of the 3rd Moon intro on that site. The version built into WinUAE doesn't work at all.

A friend may be able to help if you can find the original intro. He is always looking for ways to rip the original modules out of various intros without using that piece of crap Prowizard. Of course, this mostly involves using other ripping tools, but they're usually not so flaky.

Quote
SACRILEG.669 (don't play here but works in winamp)[{POST_SNAPBACK}][/a]

Maybe I can fix the problem if you upload it.

Quote
Intro-Music.mod    (it doesn't play well in foo_dumb (for example at 0min 41s))

I have fixed sample changes so they only change the sample and don't perform a full retrigger. This file still suffers a bit from the lack of volume ramping, but there's not much I can do about that right now.

Quote
and I have uploaded here all the mod2amf versions I have (this tool is the original to make conversion of .mod into .amf). Every version make a different .amf format (from version 0.8 to 1.4 If i remember correctly)

thoose files are in the upload section[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

Interesting.


Quote
And if you want I have more files in different formats that may interest you:
669 (18 files)
MTM (18 files)
PTM (48 files)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

I may be interested in the 669 or MTM files, just for the sake of boosting my collection. I also seem to be two PTMs shy of your collection, so I guess you could forward that my way as well. I'll mail you, and you can mailbomb me the files, unless you have a link to an archive where I can get them all.

Although, since PTM support is as close to documentation as possible, and MTM support should be perfect since the resulting patterns behaved mostly like MOD, the only thing I may really need is the 669 files. Let me know of anything that is broken compared to the respective trackers. Please, no third party players for reference.

You may be able to dig up a copy of MultiTracker for MTM, I'm not sure about 669. There is PolyPlayer for PTM, which you may find on some FTP archives. You should be able to get them working in [a href="http://dosbox.sourceforge.net/]DOSBox[/url].

Quote
and some files in currently unsupported format (but x-fixer added them easily in in_mod)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

Yes, I'm sure he did, but now he's gone.

Quote
farandole .far (7 files)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

I may look into it.

Quote
screamtracker2 .stm (71 files)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

Easily converted to smaller S3M files without any loss.

Quote
oktalyzer .okt (the real amiga format completely different from .mod) (71 files)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

This could prove to be troublesome.

Quote
ultra tracker .ult (2 files)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

I have MikMod, Modplug, and Open Cubic Player source code for reference.

Quote
DSMI AMF (15 files)[a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

Modplug for reference, those converters for any other problems.

Quote
If you want all the files in unsupported format I have tell me where I can upload them all in one big .7z file![a href="index.php?act=findpost&pid=246553"][{POST_SNAPBACK}][/a]

That, or you can mailbomb me.

Uploaded v0.9.3.5.
  • Changed MOD sample change behavior again in a way that doesn't break tone portamento.

foo_dumb

Reply #90
Thanks for all those detailled infos and the quick fix.
And sorry for SACRILEG.669 I forgot to put it in the archive.
I already know dosbox I tried it some time ago but it's a little complicated to make it work correctly with some trackers, i'll try again later.

I have made a 7z archive (a little big : 15,5 Mo) with all the files you want and sacrileg.669.

I sent you a pm for more info about it.

foo_dumb

Reply #91
My friend just checked 16th intro.mod, the first "sample" is silent in Protracker. Maybe Deliplayer is wrong on this one, but the real problem is the fact that it was ripped improperly. If you do manage to track down the original cracktro, feel free to point it out.

foo_dumb

Reply #92
Quote
My friend just checked 16th intro.mod, the first "sample" is silent in Protracker. Maybe Deliplayer is wrong on this one, but the real problem is the fact that it was ripped improperly. If you do manage to track down the original cracktro, feel free to point it out.
[a href="index.php?act=findpost&pid=246701"][{POST_SNAPBACK}][/a]


Sorry this file comes from a complete package full of mod intro in different formats I downloaded two years ago, I can't even remember what was the website, so I can't help you finding the original. (It was in a "lightforce" folder but you already know that.)

foo_dumb

Reply #93
Quote
Quote
DSMI AMF (15 files)[{POST_SNAPBACK}][/a]

Modplug for reference, those converters for any other problems.

Modplugs DSMI-Amf support is fubar. I have "Dual Module Player32 v4.0" (SB driver support only) by Otto Chrons for playback reference if that's of interest to you.


Oh well, i can imagine to get playback of those formats right is a real tough job.
Some issues were fixed, some new invented and some seem to just got tweaked (i.e. the issue persists, but sounds different now):
[a href="ftp://ftp.modland.com/pub/modules/Impulsetracker/Chris%20Jarvis/purgatory%20-%20opening.it]Cj-Purg1.it[/url]  Snare fixed but: Order 00, Channel 03/04/05, Piano sounds wrong now, notes seem to play to fast
Cj-Purg2.it Piano fixed but: Order 03, Channel 14/15, sounds wrong now
F0x-Test.xm : effect issue not fixed yet, some other effects now sound wrong too (probably same as kookoo.xm)
Kookoo.xm : due to recent changes some effects sound wrong now, sorry but i can't name the effect/channel exactly (comparison to v0.9.3.3 reveals the difference immediately)


I just listened to some Jazz Jackrabbit psm's with foo_dumb. Since i played the game many years ago i just realized how much of the original sound was missing in Chronos converted s3m's. Especially my favorite "Song17.psm/Medivo" made me jaw drop.

deus-ex

Edit: Fixed broken link for Kookoo.xm.

foo_dumb

Reply #94
Uploaded v0.9.3.6.
  • Fixed volume swing, which is relative to the volume level. (Cj-Purg1.it, Cj-Purg2.it)
  • Fixed logarithmic auto vibrato to only apply to XM files set to use Amiga frequency table. (Kookoo.xm)
I don't really get what's wrong with F0x-Test.xm. It sounds closer to FT2 than XMPlay does, I know that much. The auto vibrato does sound maybe slightly off, but it's probably a flaw of using relative delta frequencies internally for almost everything instead of Hz or some period format like Mikmod or Modplug.

Mikmod uses periods internally for everything, whereas Modplug uses periods only for pitch modification calculations, using frequency otherwise.

There may still be something wrong with the tremor effect, at least the fact that channel volume seems to override it, if only temporarily. I'll investigate further later.

foo_dumb

Reply #95
No need to investigate further, with v0.9.3.6 all mentioned files sound as the should. Previous release made it difficult to test F0x-Test.xm as it sounded much different than its predecessor. I just tried FT2's (v2.09) wav-writer on F0x-test.xm. It only saves 18 sec. of the module, i.e. when recording it doesn't process the module commands correctly for full reproduction.

Regarding Volumeramping and Clicking you should find some interesting stuff in Open Cubic Players sources (excerpt of whatsnew.txt):
  • completely new mixer device (stores all samples in 32bit format), making massive use
        of the CPU's Floating Point Unit and bringing you the following advantages:
  • + 16777216x linear or 256x cubic spline oversampling
  • + a theoretical 3000dB of Signal/Noise ratio
  • + sample-exact volume ramping
  • + special anti-click mechanism which does NOT soften up the samples
EDIT:
Almost forgot, i also have a compiled "Open Cubic Player" Winamp plugin (beta) which has support for .mod, .xm, .it, .mxm, .s3m, .669, .ams, .dmf, .mdl, .mtm, .okt, .ptm and .ult.
OCP source should include sources to build the plugin. Just mentioning it as it may be of some value to you.

Greetings, deus-ex

foo_dumb

Reply #96
Quote
The native Foobar plugin only offers setting up mixing rate and a .s3m-file detection toggle. It is missing In_Adlib's soundcard and opl-emulation setup, you can't choose between the two opl-emulators and it doesn't offer the configurable extension handling.

One drawback of that is that Foo_Adplug grabs and plays .d00/.d01 (Edlib) files regardless off the installed In_D00 plugin which is specialized in that format and sounds so much better. Second Foo_Adplug fails to play .laa-files (Lucas Arts Audio) while In_adlib/Winamp_Input_Wrapper works flawless. Third it always sets subsong index to 1 for every file when there is no subsong. Fourth it doesn't provide access to existing subsongs. Meh...[{POST_SNAPBACK}][/a]

Recent update of [a href="http://www.vesta.dti.ne.jp/~tsato/arc/foo_adplug-104.zip]Foo_Adlib v1.04[/url] overcomes former drawbacks. It allows to choose between the two emulation cores and offers extension handling like the Winamp plugin version. Faulty setting of subsong index was fixed, true subsongs are now added to the playlist just like Foo_Dumb does. Still won't play .laa (LucasArts Adlib Audio) but thats negligible. I have a feeling the author of Foo_Adlib got aware of my previous post somehow?

Anyway, usage of Foo_Adplug instead In_Adlib/Winamp_Input_Wrapper is now savely recommended.

deus-ex

foo_dumb

Reply #97
Hello (fading echo: hello... hello... hello...), anybody here?
It's rather quiet around foo_dumb these days so i thought i come up with another replay issue:
Nearly.mod : Order 00, Channel 4, Kickdrum starting at Row 08 is not played.

Feature request:
  • enhanced sampleinfo to display length and samplerate
    (handy for comparing two files of the same song (Orders and Patterns) with different filesize)
  • toggable dynamicinfo items in addition to global on/off switch
  • adjustable updatetime for dynamicinfo (.e.g. every n-th sec.)
Regards, deus-ex.

foo_dumb

Reply #98
Uploaded v0.9.4.
  • Implemented mostly dodgy volume ramping. Logarithmic and auto modes should be safe for use with most things, although it's not perfect and doesn't eliminate all clicking. Maybe I need to gut the mixer and rewrite it. Some other time, perhaps. :B
  • Fixed XM channel volume/envelopes/panning resetting when instrument change was processed on the same row as note-off.
  • Added the amazing Chip-o-matic automatic per-sample aliasing system, for those that like interpolation on all but chip tunes.
  • Set sample offset effect has value memory even in MOD files, verified with Protracker. (Nearly.mod)
  • Sorry, this is a VC7.1 compile until I get ICL up and running again. The speed difference is great, but with volume ramping crapola turned off, it's about as fast as it was before I started using ICL. I'll have an ICL build up soon.
Nearly.mod uses leet tricks to get around the 31 sample limit, squeezing two whole samples into one, and using sample offset to play the kick drum sample. In most cases, it uses 900 instead of 90E, and plays correctly in Protracker, proving that offset has value memory even in MOD.

foo_dumb

Reply #99
First listening test with volume ramping enabled sounds good. I found the linear setting to work best so far.

While you mentioned the tricks used in Nearly.mod to overcome the 31 sample limit i was especialy interested to have a look at foo_dumbs sample info for this file again. It only displays 2 out of 31 samples?  I checked several .mod files and never got to see a complete list of included samples. Looks like samples without a name/text info in the sample table aren't displayed anyway for every module format. Sampleslots containing text only i.e. without an existing sample are listed, though. Btw., Foo_Mod/Bass.dll behaves the same here.