Untitled
unknown
c_cpp
a year ago
695 B
9
Indexable
string Player::GetPlayerInfo() const
{
string playerInfo = "P" + to_string(playerNum) + "(";
CellPosition p = pCell->GetCellPosition();
playerInfo += to_string(p.GetCellNum()) + ", ";
string direction;
switch (currDirection)
{
case UP:
playerInfo += "UP";
break;
case DOWN:
playerInfo += "DOWN";
break;
case LEFT:
playerInfo += "LEFT";
break;
case RIGHT:
playerInfo += "RIGHT";
break;
default:
playerInfo += "Unknown";
break;
}
playerInfo += ", " + to_string(health) + ")";
return playerInfo;
}
void Player::AppendPlayerInfo(string & playersInfo) const
{
// TODO: Modify the Info as needed
playersInfo += GetPlayerInfo();
}Editor is loading...
Leave a Comment