Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
Offline codesmith  
#1 Posted : Saturday, April 27, 2013 12:39:12 PM(UTC)
codesmith

Joined: 4/26/2013(UTC)
Posts: 46

Thanks: 6 times
Was thanked: 1 time(s) in 1 post(s)
I'm trying to add some content to a project, but I have no clue on how to do this. Copying a file into a Content-folder under my project/solution does not seem to work. Does the content need to be compiled into some DE compatible binary format (I see .xnb files in examples)? How?

How do I compile content with this release? I have no access to the content manager or launcher or anything (are these online services?).

Please, I'm pretty much stuck here. Confused

Codesmith - Erno Pakarinen
Check my development blog @ blog.codesmith.fi

Wanna join the discussion?! Login to your forum accountregister a new account. Or Connect via Facebook Twitter Google

Offline codesmith  
#2 Posted : Saturday, April 27, 2013 12:52:49 PM(UTC)
codesmith

Joined: 4/26/2013(UTC)
Posts: 46

Thanks: 6 times
Was thanked: 1 time(s) in 1 post(s)
With some self-googling, I found the old wiki and specifically chapter about online services @ http://old.deltaengine.net/Wiki.Login.ashx

Does this still work?

The old wiki also has a lot of information about the engine itself. So I suppose I can use this to study stuff.
-erno

Edited by user Saturday, April 27, 2013 12:54:49 PM(UTC)  | Reason: Not specified

Codesmith - Erno Pakarinen
Check my development blog @ blog.codesmith.fi
Offline internetfreak  
#3 Posted : Saturday, April 27, 2013 4:07:58 PM(UTC)
internetfreak

Joined: 12/19/2011(UTC)
Posts: 529

Thanks: 10 times
Was thanked: 16 time(s) in 15 post(s)
As said in your first thread, the tools are not released yet so you have to be patient :)
The old wiki is a place to study some details about how Delta will work but I don't recommend it because the wiki is quite old and thus it's outdated. Starting woth 0.9.6, the complete Engine changed so nothing would be the same (ok I think there are maybe some exceptions which could stay more or less the same but at least the code will transform into something cleaner and better so we have to wait what the time would bringt up)
The .xnb files you can see are content files from Xna. DE supports Xna but I don't know much about that (this would be something which benjamin could better explain, I only worked with the source version of delta and also the precompiled assemblies so I'm more or less only using OpenTK as graphics module etc.)
Mein Blog: www.internetfreak.net

- Inoffizieller DeltaEngine-Supporter und Tutorialschreiber -
Offline codesmith  
#4 Posted : Saturday, April 27, 2013 4:55:26 PM(UTC)
codesmith

Joined: 4/26/2013(UTC)
Posts: 46

Thanks: 6 times
Was thanked: 1 time(s) in 1 post(s)
I thought they are XNA files because I've worked with XNA a bit (my current game framework is based on XNA, see: My blog). I replied to the other thread so lets continue there :)

Btw, my german is bit rusty but the google translate works rather well. :)

-erno
Codesmith - Erno Pakarinen
Check my development blog @ blog.codesmith.fi
Offline Benjamin  
#5 Posted : Saturday, April 27, 2013 11:27:35 PM(UTC)
Benjamin

Medals: Admin

Joined: 8/20/2011(UTC)
Posts: 1,421
Location: Hannover

Thanks: 18 times
Was thanked: 97 time(s) in 92 post(s)
In the future we plan to support XNA conversion (or other frameworks and engines) directly, but for now Delta Engine compatible code has to be written in order to correctly replace all XNA calls to DirectX or OpenGL calls for graphics (and similarly for multimedia, input, physics, etc.)

BTW: Your project on your website looks cool, good work. I like solar simulations (e.g. Solar 2 is a great game).
Offline codesmith  
#6 Posted : Sunday, April 28, 2013 8:50:40 AM(UTC)
codesmith

Joined: 4/26/2013(UTC)
Posts: 46

Thanks: 6 times
Was thanked: 1 time(s) in 1 post(s)
Originally Posted by: Benjamin Nitschke Go to Quoted Post
In the future we plan to support XNA conversion (or other frameworks and engines) directly, but for now Delta Engine compatible code has to be written in order to correctly replace all XNA calls to DirectX or OpenGL calls for graphics (and similarly for multimedia, input, physics, etc.)

Okay, but how about the content? Can I use straight jpg/png files by just putting them to the Content folder and loading? I couldn't get this to work (I just get the checkerboard). Or Can I use XNA .xnb files from my existing projects?

Originally Posted by: Benjamin Nitschke Go to Quoted Post

BTW: Your project on your website looks cool, good work. I like solar simulations (e.g. Solar 2 is a great game).


Thanks.ThumpUp I started doing this framework (and the game) few weeks ago so it's been pretty quick and progressed well. The game you referred is now just an example for the framework itself.
-erno
Codesmith - Erno Pakarinen
Check my development blog @ blog.codesmith.fi
Offline internetfreak  
#7 Posted : Sunday, April 28, 2013 2:33:38 PM(UTC)
internetfreak

Joined: 12/19/2011(UTC)
Posts: 529

Thanks: 10 times
Was thanked: 16 time(s) in 15 post(s)
You can straight use jpg or png files but don't forget to copy them to the output folder.
I know it's a bit annoying but once set up, vs can do that every time for you when the content changes (set under build actions "copy if newer" and you're done)
and when you load content, only use the file name without extension.
Mein Blog: www.internetfreak.net

- Inoffizieller DeltaEngine-Supporter und Tutorialschreiber -
Offline Benjamin  
#8 Posted : Sunday, April 28, 2013 3:05:56 PM(UTC)
Benjamin

Medals: Admin

Joined: 8/20/2011(UTC)
Posts: 1,421
Location: Hannover

Thanks: 18 times
Was thanked: 97 time(s) in 92 post(s)
Yup exactly. We have finished the ContentManager tool a few days ago and it will be included with the next release. Then you can just drag and drop files into the editor and the game will pick them up. You can however still just move files to the content directory as Internetfreak described.
thanks 1 user thanked Benjamin for this useful post.
codesmith on 4/28/2013(UTC)
Offline codesmith  
#9 Posted : Sunday, April 28, 2013 3:26:12 PM(UTC)
codesmith

Joined: 4/26/2013(UTC)
Posts: 46

Thanks: 6 times
Was thanked: 1 time(s) in 1 post(s)
Thanks Benjamin and internetfreak. I'll try this later. I spent few hours today re-factoring my particle system. Perhaps I'll port that to DE when I get things working..

Edit: Btw, just tested, it works as you said so just select "Copy Always" for content files...

-erno

Edited by user Sunday, April 28, 2013 3:40:51 PM(UTC)  | Reason: Not specified

Codesmith - Erno Pakarinen
Check my development blog @ blog.codesmith.fi
Rss Feed  Atom Feed
Users browsing this topic
OceanSpiders 2.0
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Powered by YAF.NET | YAF.NET © 2003-2023, Yet Another Forum.NET
This page was generated in 0.090 seconds.