-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClientObjectTranslation.cpp
39 lines (36 loc) · 1.2 KB
/
ClientObjectTranslation.cpp
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
/*
* The class definition for the client object translation.
*/
#include <exception>
#include "ClientObjectTranslation.h"
#include "Network/Controller.h"
#include "CachedActor.h"
#include "CachedPlayer.h"
#include "CachedShip.h"
#include "CachedUniverse.h"
Network::IdentifiableObject* ClientObjectTranslation::CreateByType(Network::Controller& controller, std::string type, std::string identifier)
{
if (type == "Actor")
return new CachedActor(controller, identifier);
else if (type == "Player")
return new CachedPlayer(controller, identifier);
else if (type == "Ship")
return new CachedShip(controller, identifier);
else if (type == "Universe")
return new CachedUniverse(controller, identifier);
else
throw std::exception();
}
std::string ClientObjectTranslation::GetType(Network::IdentifiableObject* object)
{
if (typeid(*object) == typeid(CachedActor))
return "Actor";
else if (typeid(*object) == typeid(CachedPlayer))
return "Player";
else if (typeid(*object) == typeid(CachedShip))
return "Ship";
else if (typeid(*object) == typeid(CachedUniverse))
return "Universe";
else
throw std::exception();
}