2016-02-13 09:02:47 +00:00
|
|
|
#ifndef __PSHAG_CIOWINMANAGER_HPP__
|
|
|
|
#define __PSHAG_CIOWINMANAGER_HPP__
|
2015-08-18 05:54:43 +00:00
|
|
|
|
2015-08-20 02:52:07 +00:00
|
|
|
#include <memory>
|
2015-08-26 01:34:56 +00:00
|
|
|
#include <list>
|
2015-08-20 02:52:07 +00:00
|
|
|
#include "CIOWin.hpp"
|
2015-08-26 01:34:56 +00:00
|
|
|
#include "rstl.hpp"
|
|
|
|
#include "CArchitectureQueue.hpp"
|
2015-08-20 02:52:07 +00:00
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace pshag
|
2015-08-18 05:54:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class CIOWinManager
|
|
|
|
{
|
2015-08-20 02:52:07 +00:00
|
|
|
struct IOWinPQNode
|
|
|
|
{
|
2016-02-05 01:27:03 +00:00
|
|
|
std::shared_ptr<CIOWin> x0_iowin;
|
2015-08-26 01:34:56 +00:00
|
|
|
int x4_prio;
|
|
|
|
CIOWinManager::IOWinPQNode* x8_next;
|
2016-02-05 01:27:03 +00:00
|
|
|
IOWinPQNode(std::weak_ptr<CIOWin> iowin, int prio,
|
2015-08-26 01:34:56 +00:00
|
|
|
CIOWinManager::IOWinPQNode* next)
|
|
|
|
: x0_iowin(iowin), x4_prio(prio), x8_next(next) {}
|
2016-02-05 01:27:03 +00:00
|
|
|
std::shared_ptr<CIOWin> ShareIOWin() const {return std::shared_ptr<CIOWin>(x0_iowin);}
|
2015-08-26 06:38:45 +00:00
|
|
|
CIOWin* GetIOWin() const {return x0_iowin.get();}
|
2015-08-20 02:52:07 +00:00
|
|
|
};
|
2015-08-26 06:38:45 +00:00
|
|
|
IOWinPQNode* x0_drawRoot = nullptr;
|
|
|
|
IOWinPQNode* x4_pumpRoot = nullptr;
|
2015-08-27 00:23:46 +00:00
|
|
|
CArchitectureQueue x8_localGatherQueue;
|
2015-08-26 01:34:56 +00:00
|
|
|
public:
|
2015-08-20 02:52:07 +00:00
|
|
|
bool OnIOWinMessage(const CArchitectureMessage& msg);
|
2015-08-26 01:34:56 +00:00
|
|
|
void Draw() const;
|
|
|
|
bool DistributeOneMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue);
|
|
|
|
void PumpMessages(CArchitectureQueue& queue);
|
2015-08-26 06:38:45 +00:00
|
|
|
CIOWin* FindIOWin(const std::string& name);
|
2016-02-05 01:27:03 +00:00
|
|
|
std::shared_ptr<CIOWin> FindAndShareIOWin(const std::string& name);
|
2015-08-26 06:38:45 +00:00
|
|
|
void ChangeIOWinPriority(CIOWin* toChange, int pumpPrio, int drawPrio);
|
2015-08-26 01:34:56 +00:00
|
|
|
void RemoveAllIOWins();
|
2015-08-26 06:38:45 +00:00
|
|
|
void RemoveIOWin(CIOWin* toRemove);
|
2016-02-05 01:27:03 +00:00
|
|
|
void AddIOWin(std::weak_ptr<CIOWin> toAdd, int pumpPrio, int drawPrio);
|
2015-08-18 05:54:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
#endif // __PSHAG_CIOWINMANAGER_HPP__
|