Search:

Type: Posts; User: beene

Page 1 of 13 1 2 3 4

Search: Search took 0.02 seconds.

  1. Thread: Resource manager

    by beene
    Replies
    3
    Views
    2,237

    Resource manager

    Hi, i've been scanning through the boards and I have came across a few threads that have contained the words "Resource Manager". What is the general description for this?
  2. Replies
    9
    Views
    2,133

    Learn how to use classes and structs and maybe...

    Learn how to use classes and structs and maybe enums. You can keep your code clean and manage everything alot easier than what you are doing now.
  3. Thread: Message loop

    by beene
    Replies
    2
    Views
    1,974

    Message loop

    I am coding my framework for my DirectX applications and I don't like the message loop that is used in my book:



    int EnterMsgLoop(bool (*ptr_display)(float timeDelta))
    {
    MSG msg;
    ...
  4. Replies
    2
    Views
    1,315

    The use of a DLL?

    Everytime you install a game, DLL's are all thats in the directory, and you see no source files. I was wondering what the use of a DLL is and how I would implement one in my engine?

    Thanks.
    ...
  5. Replies
    12
    Views
    2,235

    CRenderDevice::CRenderDevice(HINSTANCE...

    CRenderDevice::CRenderDevice(HINSTANCE ChInstance)
    {
    CInitD3D( /*If CInitD3D fails*/
    ChInstance, /*Application instance*/
    450, /*Application width*/
    375, /*Application height*/
    true,...
  6. Replies
    11
    Views
    7,122

    Just comment out engineInstance.stopWindow() in...

    Just comment out engineInstance.stopWindow() in main.cpp and then run it.
  7. Replies
    12
    Views
    2,235

    Right, I changed it around abit and now have the...

    Right, I changed it around abit and now have the error:



    error C3867: 'CRenderDevice::CDisplay': function call missing argument list; use '&CRenderDevice::CDisplay' to create a pointer to...
  8. Replies
    12
    Views
    2,235

    Nothing important. So should I make Device...

    Nothing important.

    So should I make Device global?
  9. Replies
    12
    Views
    2,235

    I've gone over what you have posted and I think I...

    I've gone over what you have posted and I think I know where you're coming from, but I don't know how to fix it without declaring the variable global.
  10. Replies
    12
    Views
    2,235

    Thanks, that was a stupid error on my part, I...

    Thanks, that was a stupid error on my part, I can't believe I didn't see that before, but what about the other errors?
  11. Replies
    12
    Views
    2,235

    Starting on my game engine

    Hi.
    I've made a start on my game engine. I only have 1 class so far.... CRenderDevice. I don't know if that's the only class I need for rendering the window right now, but we'll come to that...
  12. Replies
    16
    Views
    5,305

    Computer graphics in a movie

    As stated in the title, I was wondering how I would go about creating computer graphics in a move, say like Ice Age 2. What skills would i need to do something like that? I know that i'm really far...
  13. Replies
    9
    Views
    2,983

    Thanks, HURRY =P

    Thanks, HURRY =P
  14. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    Yeah but on different lines there's a different...

    Yeah but on different lines there's a different amound of words, like say the 1st line, it only has 1 word in it, and the second has 2, how am i supposed to format that?
  15. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    I've widened it as far as it will go and it still...

    I've widened it as far as it will go and it still doesn't work, and there is also paragraphs in the text file but they aren't distinguished in the console window. Any ideas?
  16. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    IT WORKS!!!!! Don't ask me how i got rid of the...

    IT WORKS!!!!! Don't ask me how i got rid of the the warning, it jus dissapeared. But then i read the introduction to my game into the program and this happened:

    DARN!!!! Can't upload a screenshot,...
  17. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    Thanks, it was #include, i now get a...

    Thanks, it was #include<iterator>, i now get a warning saying:



    warning: deleting 'void*' is undefined


    The line in which this warning occurs in is:
  18. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    I have implimented your method twomers, but i get...

    I have implimented your method twomers, but i get this error:



    error: 'ostream_iterator' is not a member of 'std'


    ...any ideas?
  19. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    You might have to help me through this, I need...

    You might have to help me through this, I need you to explain a few things about your code, if you don't mind ofcourse.



    #include <algorithm>

    ....what's that there for?
  20. Replies
    6
    Views
    1,204

    Well, what's the error(s)?

    Well, what's the error(s)?
  21. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    Never really thought of that, how would i go...

    Never really thought of that, how would i go about that? Is there an easier way?
  22. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    Yes, there's something in example2.txt, and in my...

    Yes, there's something in example2.txt, and in my game there's going to be more than 1 text file so i want to distinguish between them and read them when i choose to, that's why i used std::string...
  23. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    Thanks, that did work, but then i loaded up...

    Thanks, that did work, but then i loaded up another file and nothing printed.....very strange.....
    Anyways, heres the code:

    CFile_mngr.h



    #include<fstream>
    #include<vector>
  24. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    Thanks, i'm not on the ball tonight :'( How...

    Thanks, i'm not on the ball tonight :'(

    How would I go about adding each line to different elements in the vector i now have?
  25. Thread: file manager

    by beene
    Replies
    21
    Views
    2,780

    file manager

    I have created what looks like a basic file manager class for my text engine, it compiles and runs with no warnings but it dusn't ouput the text in the file.

    I have no idea how to fix it, maybe...
Results 1 to 25 of 322
Page 1 of 13 1 2 3 4