#include <robot_api.hpp>
|
| RoboSimExecutionException (const string &msg_) |
|
| RoboSimExecutionException (const string &msg_, int player) |
|
| RoboSimExecutionException (const string &msg_, int player, const GridCell &cell) |
|
| RoboSimExecutionException (const string &msg_, int player, const GridCell &cell, const GridCell &cell2) |
|
| RoboSimExecutionException (const string &msg_, int player, int x1, int y1, int x2, int y2) |
|
Definition at line 176 of file robot_api.hpp.
robot_api::RoboSimExecutionException::RoboSimExecutionException |
( |
const string & |
msg_ | ) |
|
|
inline |
robot_api::RoboSimExecutionException::RoboSimExecutionException |
( |
const string & |
msg_, |
|
|
int |
player |
|
) |
| |
|
inline |
Definition at line 182 of file robot_api.hpp.
184 msg = string(
"Player ")+std::to_string(player)+
" "+msg_;
robot_api::RoboSimExecutionException::RoboSimExecutionException |
( |
const string & |
msg_, |
|
|
int |
player, |
|
|
const GridCell & |
cell |
|
) |
| |
|
inline |
robot_api::RoboSimExecutionException::RoboSimExecutionException |
( |
const string & |
msg_, |
|
|
int |
player, |
|
|
const GridCell & |
cell, |
|
|
const GridCell & |
cell2 |
|
) |
| |
|
inline |
Definition at line 192 of file robot_api.hpp.
References robot_api::GridCell::x_coord, and robot_api::GridCell::y_coord.
194 msg = string(
"Player ")+std::to_string(player)+
" "+msg_+
" with robot at coordinates ["+std::to_string(cell.x_coord)+
"]["+std::to_string(cell.y_coord)+
"], coordinates of invalid cell are ["+std::to_string(cell2.x_coord)+
"]["+std::to_string(cell2.y_coord)+
"]";
robot_api::RoboSimExecutionException::RoboSimExecutionException |
( |
const string & |
msg_, |
|
|
int |
player, |
|
|
int |
x1, |
|
|
int |
y1, |
|
|
int |
x2, |
|
|
int |
y2 |
|
) |
| |
|
inline |
Definition at line 197 of file robot_api.hpp.
199 msg = string(
"Player ")+std::to_string(player)+
" "+msg_+
" with robot at coordinates ["+std::to_string(x1)+
"]["+std::to_string(y1)+
"], coordinates of invalid cell are ["+std::to_string(x2)+
"]["+std::to_string(y2)+
"]";
string robot_api::RoboSimExecutionException::msg |
The documentation for this struct was generated from the following file: