summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/modules/interpreter/command_handler.h
blob: c3bc5bb8cc20dbaeea8e15835489a94be362bc60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#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;

		for(uint8 i = 0; i < COMMAND_BUFFER_SIZE; i++)
		{
			buffer[i] = 0;
		}
	}

	Command_Handler(uint32 commandHandlerId)
	{
		this->parent = NULL;
		this->moduleId = commandHandlerId;
		this->currentCommandLength = 0;
		this->displayDistanceSensors = false;

		for(uint8 i = 0; i < COMMAND_BUFFER_SIZE; i++)
		{
			buffer[i] = 0;
		}
	}

protected:
	uint8 currentCommandLength;
	uint8 buffer[COMMAND_BUFFER_SIZE];

	void ExecuteCommand();

public:
	void Update();	

	//Command variables
	bool displayDistanceSensors;
};

#endif