mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
72 lines
2.5 KiB
C++
72 lines
2.5 KiB
C++
/*/*************************************************************************
|
|
* *
|
|
* UniversumLib, collection of classes for generating and go through a *
|
|
* whole universe. It is for my Gameproject Spacecraft *
|
|
* Copyright (C) 2014, 2015, 2016, 2017 Dario Rekowski. *
|
|
* Email: ***REMOVED*** Web: ***REMOVED*** *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, either version 3 of the License, or *
|
|
* any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
/*!
|
|
*
|
|
* \author: Dario Rekowski
|
|
*
|
|
* \date: 27.09.15
|
|
*
|
|
* \desc: One Task for the CPU, only calculation
|
|
*/
|
|
|
|
#ifndef __DR_UNIVERSUM_LIB_CONTROLLER_CPU_TASK_H__
|
|
#define __DR_UNIVERSUM_LIB_CONTROLLER_CPU_TASK_H__
|
|
|
|
#include "Task.h"
|
|
#include "CPUSheduler.h"
|
|
|
|
#include "Poco/AutoPtr.h"
|
|
|
|
namespace UniLib {
|
|
namespace controller {
|
|
|
|
class CPUTask;
|
|
typedef Poco::AutoPtr<CPUTask> CPUTaskPtr;
|
|
|
|
class CPUSheduler;
|
|
|
|
class CPUTask : public Task
|
|
{
|
|
public:
|
|
CPUTask(CPUSheduler* cpuSheduler, size_t taskDependenceCount);
|
|
CPUTask(CPUSheduler* cpuScheduler);
|
|
CPUTask(size_t taskDependenceCount = 0);
|
|
virtual ~CPUTask();
|
|
|
|
virtual const char* getResourceType() const {return "CPUTask";};
|
|
//! \brief return true if task has finished, else false
|
|
//! automatic scheduling of task if he isn't finished and sheduled yet
|
|
|
|
|
|
virtual void scheduleTask(TaskPtr own);
|
|
protected:
|
|
void triggerSheduler() { mScheduler->checkPendingTasks(); }
|
|
|
|
private:
|
|
CPUSheduler* mScheduler;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //__DR_UNIVERSUM_LIB_CONTROLLER_CPU_TASK_H__
|
|
|