I'm been looking at making my own player for tracked music formats (.mod .xm .s3m, and so on). I managed to find quite a lot of different open source libraries for playing tracked music implemented in C++, and also some closed sourced DLLs that I can use. But I would like to have the tracker player code in native C# so it's easily ported to Mono and maybe even WP7.

I've started a little on making it myself by trying to port one of the open source C++ tracker players to C#. It's coming along slowly. I'm able to open a .mod file and read all the data about the tracks. But actually playing the samples correctly is a little bit harder. And to port it completely and get it to work correctly is going to take quite a long time.

So if anyone knows where there is C# source code for playing tracked music available for download, or if anyone is sitting on a C# code that is able to play tracked music correctly, I would be forever grateful if this person would like to share it with me.


EDIT (Found an answer on my own question):
Since this thread been locked I'll just place the resources I found here in the qustion.

There is a good open-source, C# library for playing tracked music called SharpMod. It supports .mod, .xm and .s3m. There is three implementations of this library; XNA, Silverlight and NAudio. This means that it you should be able to play tracked music with this library on both XBox360, Windows Phone 7, ordinary Windows (with the NAudio implementation) and even through the Web (with Silverlight (And with some luck it may even work with Mono Moonlight))

The Windows version uses NAudio, which also is an open-source library.

Both SharpMod and NAudio is released with Microsoft Public License (Ms-PL). Which basically means that you are free to use these libraries in you own code.

Links to these libraries:
http://sharpmod.codeplex.com/
http://naudio.codeplex.com/

link|improve this question
This is not the proper area for this type of question. just do a google search using the key word(s) Open Source Music Tracker C# – DJ KRAZE Dec 9 '11 at 20:11
@DJKRAZE - just Google it is not an appropriate answer for SO. – Asher Dec 9 '11 at 20:16
It's a proper answer in regards to this forum this is not the place to ask questions of that nature – DJ KRAZE Dec 9 '11 at 20:26
I have searched for this quite thoroughly. I've also been asking the same question in more appropriate forums, such as pouet.net and scene.org with no result.The problem is that I don't think there actually is any C# implementation for this available. So now I try to reach out to a bigger community hoping that someone maybe sitting on a nearly finished implementation of this. – zmurf Dec 9 '11 at 20:28
Ok... I'm quite embarrassed. I've been searching for this a lot. And now when I asks the question at a place where I've been avoiding asking it since (as DJ KRAZE points out) it isn't really the correct forum to ask it I'm able to actually find what I'm looking for here: sharpmod.codeplex.com . Some times life is playing tricks at you. Thanks anyway. :) – zmurf Dec 9 '11 at 20:45
show 2 more comments
feedback

closed as off topic by Michael Myers Dec 9 '11 at 21:01

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

Browse other questions tagged or ask your own question.