Normally, when loading content using XNA's Content Pipeline, the compiled .xnb files are accessed using an assigned "Asset Name" that can be defined in the Visual Studio GUI. By default, this name is the same as the content's filename sans extension. As a result, you cannot normally load two files that have names differing only by extension as the generated .xnb files would have conflicting names. If you manually change the asset name of one of these files, the generated .xnb files no longer conflict.

For a level loading system I am writing, I was hoping to have the setup of loading the texture data and collision data from two separate files with the same name (level1.png and level1.col) where the collision data is simply a text file. I have written a custom content processor to load the collision data using the Content Pipeline.

It seems it is not possible to modify the asset name directly in normal game code, but I have been unable to determine if it can be done from within a custom content processor. Is this possible? Or must I modify all the asset names by hand in order to do this?

I would ask this on the App Hub forums, but I am having a rather difficult time trying to log into that site without registering (and giving credit card information) for the developer package. I'm currently using XNA for a Windows platform game, and have no interest in developing for the X360 at this time.

link|improve this question

I suspect you can't, but I'm not sure. However: it would seem more pragmatic to simply give them different file and asset names (perhaps specify the texture name in the .col file?) rather than have to write tricky content pipeline code. – Andrew Russell Jun 19 '11 at 2:33
It would be rather simple to just output different file names. I was more hoping to get this working just to make having multiple files look cleaner on the filesystem. It was also a chance to learn more about what you can do with the pipeline. Oh well. – Shaun Hamman Jun 19 '11 at 11:28
feedback

1 Answer

up vote 2 down vote accepted

Ran across this a while back. I believe it should help.

http://forums.create.msdn.com/forums/p/1565/7862.aspx#7862

link|improve this answer
Boo, that's what I was afraid of. Having to mess around with MSBuild makes this a little too much work for not enough profit. Thanks for the link though, it's not one that I managed to come across in my search. – Shaun Hamman Jun 19 '11 at 11:30
Could you just output the different file-types to different folders with each folder containing all levels content of a specific type? – ClassicThunder Jun 20 '11 at 0:40
Yeah. Like I said in the comments on the question, my hopes for doing this was mostly to have a certain filesystem layout, not for any kind of technical reason. The idea would be that a "Level" would consist of a number of files, all with the same name but different extensions in the same folder. I can still do that if I modify the asset names manually, but I was looking for an automated solution. Oh well. – Shaun Hamman Jun 20 '11 at 14:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.