mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 12:23:51 +00:00
60 lines
1.1 KiB
C++
60 lines
1.1 KiB
C++
|
//
|
||
|
// Created by koncord on 17.08.17.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <components/openmw-mp/Base/BasePlayer.hpp>
|
||
|
|
||
|
class LuaState;
|
||
|
class Player;
|
||
|
|
||
|
class Faction
|
||
|
{
|
||
|
friend class Factions;
|
||
|
public:
|
||
|
static void Init(LuaState &lua);
|
||
|
public:
|
||
|
explicit Faction(mwmp::Faction &faction);
|
||
|
|
||
|
std::string getFactionId() const;
|
||
|
void setFactionId(const std::string &factionId);
|
||
|
|
||
|
int getFactionRank() const;
|
||
|
void setFactionRank(unsigned int rank);
|
||
|
|
||
|
bool getFactionExpulsionState() const;
|
||
|
void setFactionExpulsionState(bool expulsionState);
|
||
|
|
||
|
int getFactionReputation() const;
|
||
|
void setFactionReputation(int reputation);
|
||
|
|
||
|
mwmp::Faction faction;
|
||
|
};
|
||
|
|
||
|
class Factions
|
||
|
{
|
||
|
public:
|
||
|
static void Init(LuaState &lua);
|
||
|
public:
|
||
|
explicit Factions(Player *player);
|
||
|
~Factions();
|
||
|
|
||
|
void update();
|
||
|
|
||
|
int getFactionChangesAction() const;
|
||
|
void setFactionChangesAction(int action);
|
||
|
|
||
|
void addFaction(Faction faction);
|
||
|
Faction getFaction(int id) const;
|
||
|
void setFaction(int id, Faction faction);
|
||
|
size_t size() const;
|
||
|
void clear();
|
||
|
|
||
|
private:
|
||
|
mwmp::Faction tempFaction;
|
||
|
Player *player;
|
||
|
bool changed;
|
||
|
};
|