This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/Concept/Framework/modules/interpreter/command_handler.h

64 lines
1.3 KiB
C
Raw Permalink Normal View History

2007-02-22 23:37:00 +00:00
#ifndef _COMMAND_HANDLER_H
#define _COMMAND_HANDLER_H
#include "../../stdafx.h"
class Command_Handler : public IO_Module
{
public:
Command_Handler()
{
this->parent = NULL;
this->moduleId = 0;
this->currentCommandLength = 0;
this->displayDistanceSensors = false;
2007-02-26 21:25:01 +00:00
this->displayPositionTracker = false;
this->displayBallTracker = false;
this->displayMouseSensors = false;
this->ticksPerCmOffset = 0;
2007-02-22 23:49:04 +00:00
for(uint8 i = 0; i < COMMAND_BUFFER_SIZE; i++)
{
buffer[i] = 0;
}
2007-02-22 23:37:00 +00:00
}
Command_Handler(uint32 commandHandlerId)
{
this->parent = NULL;
this->moduleId = commandHandlerId;
this->currentCommandLength = 0;
this->displayDistanceSensors = false;
2007-02-26 21:25:01 +00:00
this->displayPositionTracker = false;
this->displayBallTracker = false;
this->displayMouseSensors = false;
this->ticksPerCmOffset = 0;
2007-02-22 23:37:00 +00:00
for(uint8 i = 0; i < COMMAND_BUFFER_SIZE; i++)
{
2007-02-22 23:49:04 +00:00
buffer[i] = 0;
2007-02-22 23:37:00 +00:00
}
}
protected:
uint8 currentCommandLength;
2007-02-22 23:49:04 +00:00
uint8 buffer[COMMAND_BUFFER_SIZE];
2007-02-22 23:37:00 +00:00
void ExecuteCommand();
public:
2007-02-26 21:25:01 +00:00
void Update();
void PrintCommand();
2007-02-22 23:37:00 +00:00
//Command variables
bool displayDistanceSensors;
2007-02-26 21:25:01 +00:00
bool displayPositionTracker;
bool displayBallTracker;
bool displayMouseSensors;
float ticksPerCmOffset;
2007-02-22 23:37:00 +00:00
};
#endif