I'm making my first D3D simple game. My game uses many images.

This is my organization on disc:

MyGame
|
|-Debug
|-Release
|-Assets
  |-Others
  |-Images
|All cpp and h fiels here

Now. If I lunch my game from VS game is working. But if I launch game from Windows (by clicking exe in Release folder) I get error that my app can't load images. This is because In my app I refere to those images like this "Assets\Images\image.bmp"

How should I organize my project?

Now I have to make copy of Assets folder in Release folder and in main project folder.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Another possibility to @shelleybutterfly's answer is to always refer to images relatively, e.g. as "..\Assets\Images\abcde.bmp". Then when you deploy you could put your executable in the same kind of structure as long as the relative relationship is still the same.

e.g. Project:

MyGame
|-Debug
|-Release
|-Assets
  |-Others
  |-Images

e.g. Deployment:

C:\Program Files\MyGame
|-Bin (contains *.exe)
|-Assets
  |-Others
  |-Images
link|improve this answer
I saw that kind of organization many times. I think I'll use that. – Hooch Aug 31 '11 at 22:20
There is one more problem. If I run game form VS (f5) My game can't find files. – Hooch Aug 31 '11 at 22:24
1  
you probably need to either: 1. alter the build to put things directly into debug and release directories underneath your project directory (the defaults depend on the kind of project but tend to be something like MyGameProject\bin\debug and MyGameProject\bin\release) or, you would need to install it with the MyGame directory having an extra folder between, say, MyGame\game\bin instead of just MyGame\bin, and then use ..\..\Assets instead. – shelleybutterfly Sep 1 '11 at 11:17
feedback

I think your project is organized fine; my suggestion would be instead of relying on a certain directory structure, just have an app.config or other XML .config file setting, or perhaps a registry setting (but don't do that) or an environment variable (MY_GAME_ASSETS="C:\path\to\assets"), or perhaps even a command line parameter (MyGame.exe --assets-dir="c:\path\to\assets\") that you can set on launching your game; then you can point that at the right directory wherever it is.

link|improve this answer
Excellent answer, was just about to post the same kind of thing. – demoncodemonkey Aug 31 '11 at 22:02
feedback

Your Answer

 
or
required, but never shown

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