Posts

Post not yet marked as solved
1 Replies
579 Views
HiI'm trying to write a little text based application and this is my code: void loop() { std::string selection; cout << "Initializing Manual Sampler Thread" << endl; while(true) { cout << "Command:" << endl; cin.clear(); cin >> selection; cout << "<<selection" << selection << endl; }But it comes out as:Shadow Engine (RavenTek) Version 1.0 Build 1.0Developed by Twilight Raven Games-------------------------------------Starting COREPerforming initialization of threadsHost a game? (Y/N)yHost game?Core intializingInitializing CORE 1.0Initializing Clock threadInitializing Task Manager ThreadInitializing Event Manager ThreadIntializing Scheduler ThreadInitializing MessageManager threadInitializing Manual Sampler ThreadCommand:<<selectionyCommand:Program ended with exit code: 0It is supposed to block on cin where it says the command prompt but instead it juststeamrolls right through it.
Posted
by tigress.
Last updated
.
Post not yet marked as solved
0 Replies
478 Views
HiI'm trying to add two dylibs to XCODE 11, glfw is one of them The other is glm_shared. They are both dylibs and I have them copied to a Frameworks folder. When I build I get the message "library not found for -lglmshared_shared". I used o-tool andotool -D libglm_shared.dyliblibglm_shared.dylib:@rpath/libglm_shared.dylib
Posted
by tigress.
Last updated
.
Post not yet marked as solved
0 Replies
315 Views
Every time I compile or try to save my project it says: Document cannot be autosaved, document doesn't exist. I can't even save my work. Xcode has. me trapped.
Posted
by tigress.
Last updated
.
Post not yet marked as solved
5 Replies
479 Views
HiI have a bunch of threads I want to have interacting but I don't know how to access a thread after I initializeit. I"m coding in C++.For example: Clock ck; std::thread clock_thread(&Clock::loop, &ck); clock_thread.detach();How do I get to modify the Clock's thread from say, my Message thread.
Posted
by tigress.
Last updated
.
Post not yet marked as solved
2 Replies
1.2k Views
Hi,I am experimenting with threads in C++.My line of code is:std::thread sampler_thread((Sampler()));It says: Attempted to use a deleted function thread.
Posted
by tigress.
Last updated
.
Post not yet marked as solved
0 Replies
325 Views
HiI'm trying to spawn three threads from three classes. However, they terminate with a SIGABRT and this message:Starting COREPerforming initialization of threadsInitializing CORE 1.0Initializing TaskManager thread.Initialization of Event Managerlibc++abi.dylib: Initializing Message Manager thread.terminating(lldb)My main code is in the "CORE":#ifndef Core_hpp #define Core_hpp #include <stdio.h> #include "TaskManager.hpp" #include "EventManager.hpp" #include "Scheduler.hpp" #include "MessageManager.hpp" #include <thread> #include "Sampler.hpp" class Core { public: void initialize() { cout << "Initializing CORE 1.0" << endl; std::thread task_thread((TaskManager())); //task_thread.join(); std::thread event_thread((EventManager())); //event_thread.join(); //std::thread scheduler_thread(scheduler); std::thread message_thread((MessageManager())); //message_thread.join(); //std::thread sampler_thread((Sampler())); } void update_loop() { } TaskManager taskManager; EventManager eventManager; Scheduler scheduler; MessageManager messageManager; Sampler sampler; }; #endif /* Core_hpp */and for example, one of the threads is:ifndef EventManager_hpp #define EventManager_hpp #include <stdio.h> #include "Message.hpp" #include "Event.hpp" #include <queue> #include <iostream> /* GAME GEMS BOOK 3 SECTION 1.1*/ /* The Event Manager is the heart of the scheduler. Each task in the task manager defines one or more events that it handles. An event is a moment in time when a task is to be executed. The event manager generates events as needed to trigger the execution of tasks. */ using namespace std; class EventManager { public: void add(Event e); //add Event to Event Queue void remove(Event e); Event retreive(Event e); void update(); // void calculate_fire_time(); void add(Message &m, Entity &e); //constructs an event and adds it to the events_queue void run(); void stop(); //flags as halted, blocks remove function from manager void operator()() const { std::cout << "Initialization of Event Manager" << endl; while(true) { } } private: bool halted; queue<Event> events_queue; Event wrap_event(Message &msg, Entity &e); }; #endif /* EventManager_hpp */Can somebody tell me what is wrong?
Posted
by tigress.
Last updated
.
Post not yet marked as solved
3 Replies
1.6k Views
Hi,I don't know if this is some file corrupted or what is going on. My code builds ok but I keep getting the error:the document initialize.cpp could not be saved. The file doesn't exist
Posted
by tigress.
Last updated
.