ARGoS 3
A parallel, multi-engine simulator for swarm robotics
tags_default_actuator.h
Go to the documentation of this file.
1
7#ifndef TAGS_DEFAULT_ACTUATOR_H
8#define TAGS_DEFAULT_ACTUATOR_H
9
10#include <string>
11#include <map>
12
13namespace argos {
14 class CTagsDefaultActuator;
15 class CTagMedium;
16}
17
18#include <argos3/plugins/robots/generic/control_interface/ci_tags_actuator.h>
19#include <argos3/plugins/simulator/entities/tag_equipped_entity.h>
20#include <argos3/core/simulator/actuator.h>
21
22namespace argos {
23
25 public CCI_TagsActuator {
26
27 public:
28
30
32
33 virtual void SetRobot(CComposableEntity& c_entity);
34
35 virtual void Init(TConfigurationNode& t_tree);
36
37 virtual void Update();
38
39 virtual void Reset();
40
41 private:
42
43 CTagEquippedEntity* m_pcTagEquippedEntity;
44
45 };
46
47}
48
49#endif
The namespace containing all the ARGoS related code.
Definition ci_actuator.h:12
ticpp::Element TConfigurationNode
The ARGoS configuration XML node.
The basic interface for a simulated actuator.
Definition actuator.h:24
Basic class for an entity that contains other entities.
virtual void Init(TConfigurationNode &t_tree)
Initializes the actuator from the XML configuration tree.
virtual void SetRobot(CComposableEntity &c_entity)
Sets the entity associated to this actuator.
virtual void Update()
Updates the state of the entity associated to this actuator.
virtual void Reset()
Resets the actuator to the state it had just after Init().
A container of CTagEntity.