CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: tedgress

Search: Search took 0.27 seconds.

  1. Replies
    12
    Views
    9,984

    Re: cin isn't blocking

    Hi
    First of all, this is my Magnum Opus. This bit of code is just a tiny piece of my game engine I've been working on for the past three years on and off.
    Second, my cin is in a continuous error...
  2. Replies
    12
    Views
    9,984

    Re: cin isn't blocking

    That's what I don't understand. I am inputting just a simple character, then I go into the loop where it is supposed to be blocking.
  3. Replies
    12
    Views
    9,984

    Re: cin isn't blocking

    Its borked. Now what do I do?


    Shadow Engine (RavenTek) Version 1.0 Build 1.0
    Developed by Twilight Raven Games
    -------------------------------------
    Starting CORE
    Performing initialization...
  4. Replies
    12
    Views
    9,984

    cin isn't blocking

    I'm trying to do a command loop but cin isn't blocking and it just loops until crashes.



    public:
    void loop()
    {
    std::string selection;
    cout << "Initializing Manual...
  5. Thread: Xcode error

    by tedgress
    Replies
    1
    Views
    2,863

    Xcode error

    Every time I try to exit Xcode it gives this message:

    Document cannot be autosaved. Document does not exist.
    Then it tells me in small print that I can't close the application.
  6. Why is my class showing up as a absract class

    Hi

    I'm trying to figure out why my class is showing up as an abstract class.


    #include <stdio.h>
    #include "Message.hpp"
    #include "Message.hpp"
    #include "BaseEntity.hpp"
    #include...
  7. Replies
    1
    Views
    3,643

    Polymorphism Issues

    Hi

    I have class called BaseEntity. I also have a class Entity that inheritse from that. Then I have a class WalkingEntity that inherits from Entity. Then I have a class called IntelligentEntity...
  8. Replies
    1
    Views
    52,894

    Sharing Data between Threads

    Hi

    I have several objects that sit on threads. I would like to shared data between classes.

    I have two threads that I want to interact if possible. I have a Message Manager class and a Console...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured