Doing XNA in Delphi Prism - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T02:07:55Z http://stackoverflow.com/feeds/question/324466 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/324466/doing-xna-in-delphi-prism 2 Doing XNA in Delphi Prism pglowack 2008-11-27T18:45:32Z 2009-06-08T16:38:26Z <p>I have installed Delphi Prism and XNA Game Studio 3.0. I have managed to translate to Delphi Prism XNA Tutorial 1 "Displaying a 3D Model on the Screen" (<a href="http://msdn.microsoft.com/en-us/library/bb197293.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb197293.aspx</a>). Project compiles fine, but I cannot load a model. It looks like there is a new "contentproj" type in XNA that is not in Delphi Prism... Any idea how to get it to work?</p> http://stackoverflow.com/questions/324466/doing-xna-in-delphi-prism/324687#324687 0 Answer by Tim Jarvis for Doing XNA in Delphi Prism Tim Jarvis 2008-11-27T21:40:21Z 2008-11-27T21:46:57Z <p>Hi Pawel,</p> <p>I haven't done any XNA stuff yet, but here is my best guess :-)</p> <p>So, the Content Project type is a sub-project for a standard XNA project that just compiles the game content (textures, sound etc) as a nested compile process, correct?</p> <p>So I would assume that there must be some reference to the sub-project in either the project file or the solution file, perhaps the best way would be to create a simple XMA proj in C# or VB and look at the generated meta-files (csproj, contentproj etc)</p> <p><em>Edit:</em> <hr /></p> <p><em>Oh, I'm suggesting here that you manually create the contentproj file and insert the reference, once you know what they look like, I assume that VS will then allow you to add, delete your content etc</em> <hr /></p> <p>That then just leaves the question of how is the XNA content pipeline compile process is fired, if it doesn't "just happen" that might be a question for marc hoffman et al</p> <p>Hope this helps a little, its just a guess.</p> <p>Good to see you in StackOverFlow by the way.</p> <p>Rgds Tim Jarvis.</p> http://stackoverflow.com/questions/324466/doing-xna-in-delphi-prism/324700#324700 0 Answer by The Wicked Flea for Doing XNA in Delphi Prism The Wicked Flea 2008-11-27T21:49:12Z 2008-11-27T21:49:12Z <p>According to my knowledge, Prism is only announced and not released. Hence the trial is not a final product. As a RO customer I expect an email come release, but not before except for the announcement of it. Frankly, I don't know that XNA support is finalized or even working yet. You might be premature in trying this, given that the official release of Prism is still almost a month away at the soonest.</p> <p>I don't know what to tell you to do to fix your problems with XNA, but it would be wise to wait for Prism itself. Until Prism is released I would consider XNA support "pending".</p> http://stackoverflow.com/questions/324466/doing-xna-in-delphi-prism/325196#325196 0 Answer by pglowack for Doing XNA in Delphi Prism pglowack 2008-11-28T07:04:00Z 2008-11-28T07:04:00Z <p>Hi Tim, It must be summer in Australia:-) Great to see you here:-) I have manually added the subproject but it does not seem to work...</p> http://stackoverflow.com/questions/324466/doing-xna-in-delphi-prism/325808#325808 4 Answer by Joel Martinez for Doing XNA in Delphi Prism Joel Martinez 2008-11-28T13:51:27Z 2008-11-28T13:51:27Z <p>You could just manually build the content project using msbuild. It might not have the same integration where you can just add content and change settings in solution explorer ... but it'll do the trick :-) </p> <p>here is more info about this: <a href="http://blogs.msdn.com/shawnhar/archive/2006/11/07/build-it-ahead-of-time.aspx" rel="nofollow">http://blogs.msdn.com/shawnhar/archive/2006/11/07/build-it-ahead-of-time.aspx</a></p> http://stackoverflow.com/questions/324466/doing-xna-in-delphi-prism/353101#353101 2 Answer by pglowack for Doing XNA in Delphi Prism pglowack 2008-12-09T15:23:28Z 2008-12-09T15:23:28Z <p>I have finally managed to get it to work via 1) building "*.contentproj" with MSBuild from command line, 2) coping the resulting "Content" directory as a subdirectory where my Delphi Prism executable is outputted.</p> <p>It would be nice to have Delphi Prism recognizing *.contentproj automatically and build it automatically.</p>