Mercurial > hg > Game > Cerium
view include/TaskManager/Task.h @ 292:2369f477ffbe draft
Document/Cerium_2009.mm
author | aaa |
---|---|
date | Fri, 05 Jun 2009 18:53:42 +0900 |
parents | 9c2075bf40c2 |
children | 3fc86ddf5d1c |
line wrap: on
line source
#ifndef INCLUDED_TASK #define INCLUDED_TASK #ifndef INCLUDED_BASE_H_ # include "base.h" #endif #ifndef INCLUDED_TYPES # include "types.h" #endif #ifndef INCLUDED_LIST_DATA # include "ListData.h" #endif #define MAX_PARAMS 8 class Task { public: // variables BASE_NEW_DELETE(Task); int command; // 4 byte ListDataPtr inData; // 4 byte ListDataPtr outData; // 4 byte uint32 self; // 4 byte int param_size; // 4 byte int param[MAX_PARAMS]; // 4*MAX_PARAMS byte public: // functions int add_inData_t(unsigned int addr, int size); int add_outData_t(unsigned int addr, int size); int add_data(ListDataPtr list, unsigned int addr, int size); int add_param(int param); #define add_inData(addr, size) \ add_inData_t((unsigned int)(addr), (size)); #define add_outData(addr, size) \ add_outData_t((unsigned int)(addr), (size)); }; typedef Task* TaskPtr; #endif