You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
C++
64 lines
1.1 KiB
C++
#ifndef OPENMW_BASEWORLDSTATE_HPP
|
|
#define OPENMW_BASEWORLDSTATE_HPP
|
|
|
|
#include <vector>
|
|
|
|
#include <components/openmw-mp/Base/BaseStructs.hpp>
|
|
|
|
#include <RakNetTypes.h>
|
|
|
|
namespace mwmp
|
|
{
|
|
static const int maxImageDataSize = 1800;
|
|
|
|
struct MapTile
|
|
{
|
|
int x;
|
|
int y;
|
|
std::vector<char> imageData;
|
|
};
|
|
|
|
struct MapChanges
|
|
{
|
|
std::vector<MapTile> mapTiles;
|
|
};
|
|
|
|
class BaseWorldstate
|
|
{
|
|
public:
|
|
|
|
BaseWorldstate()
|
|
{
|
|
month = -1;
|
|
day = -1;
|
|
hour = -1;
|
|
|
|
daysPassed = -1;
|
|
timeScale = -1;
|
|
}
|
|
|
|
RakNet::RakNetGUID guid;
|
|
|
|
double hour;
|
|
int day;
|
|
int month;
|
|
int year;
|
|
|
|
int daysPassed;
|
|
float timeScale;
|
|
|
|
bool hasPlayerCollision;
|
|
bool hasActorCollision;
|
|
bool hasPlacedObjectCollision;
|
|
bool useActorCollisionForPlacedObjects;
|
|
|
|
std::vector<std::string> enforcedCollisionRefIds;
|
|
|
|
MapChanges mapChanges;
|
|
|
|
bool isValid;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_BASEWORLDSTATE_HPP
|