devdude
Member
|
Problem with installing in VC Express 10
Ok attempted installation twice. The first time it went smoothly and I was able to compile a tutorial and run it first try.
So I need to update the engine. I grab it and on the first step
" * Please copy folder "EsenthelEngineSDK\Installation\EsenthelEngine" to "Microsoft Visual Studio\VC\include" it fails. There is a folder named memory already there.
c:\Program Files(x86)\Microsoft Visual Studio 10.0\VC\include contains a header file named memory, preventing the EE directory memory from being created.
The content of the memory file is
Quote: // memory standard header
#pragma once
#ifndef _MEMORY_
#define _MEMORY_
#ifndef RC_INVOKED
#include <xmemory>
#pragma pack(push,_CRT_PACKING)
#pragma warning(push,3)
...
So, I can't continue past step 1 because it can't create a directory named memory. I just can't see what I am doing wrong here... I wonder if I grabbed the wrong engine source ?
|
|
01-22-2011 06:26 AM |
|
Dandruff
Member
|
RE: Problem with installing in VC Express 10
I might have misunderstood you, but try to manually make a new folder called EsenthelEngine in
Code:
"D:\Applications\Microsoft Visual Studio 2008\VC\include\"
then go in your "EsenthelEngineSDK\Installation\EsenthelEngine" and copy everything inside and throw it in the folder you just made
Code:
"D:\Applications\Microsoft Visual Studio 2008\VC\include\EsenthelEngine"
The memory folder of EE should be here
Code:
"D:\Applications\Microsoft Visual Studio 2008\VC\include\EsenthelEngine\Memory"
This way, all folders and files that belongs to Esenthel is in its own neat little folder so as to avoid conflicting file names and the like.
edit: i read it over again and if it is the autoupdater that is saying this, you might have put the wrong visual studio path. I have it set to "D:\Applications\Microsoft Visual Studio 2008\"
(This post was last modified: 01-22-2011 07:06 AM by Dandruff.)
|
|
01-22-2011 06:57 AM |
|
devdude
Member
|
RE: Problem with installing in VC Express 10
That sounds like the problem. I looked at having the wrong directory, but at the parent level. Thank you for the quick help. You'd make Todd Witteles proud.
|
|
01-22-2011 07:07 AM |
|
Dandruff
Member
|
RE: Problem with installing in VC Express 10
(01-22-2011 07:07 AM)devdude Wrote: You'd make Todd Witteles proud.
Ahaha, Dan Druff You're welcome!
|
|
01-22-2011 07:17 AM |
|
devdude
Member
|
RE: Problem with installing in VC Express 10
Anyone know how to get output strings ? I am seeing that cout and cerr don't map to the Debug Output window.. I tried OutputDebugString but when I include those headers I get errors. cout/cerr work at compilation but I fail to see their output.
Got code working, now it is time to butcher it, but I have to learn it a bit first.
|
|
01-23-2011 07:16 AM |
|
Dandruff
Member
|
RE: Problem with installing in VC Express 10
(This post was last modified: 01-23-2011 07:45 AM by Dandruff.)
|
|
01-23-2011 07:39 AM |
|
devdude
Member
|
RE: Problem with installing in VC Express 10
No luck with that. I think that's probably the same as the Debug output in VC. Which needs OutputDebugString, which needs headers which stomp on the EE headers. I even tried running it from a console writing to both cout and cerr with no luck. !@#*($& windows programming.
Basically I want to just see hwo values of things change in the game loop... The debugger sucks for this.
|
|
01-23-2011 09:06 AM |
|
Driklyn
Member
|
RE: Problem with installing in VC Express 10
|
|
01-23-2011 09:37 AM |
|
devdude
Member
|
RE: Problem with installing in VC Express 10
|
|
01-23-2011 10:09 AM |
|