mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 01:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_ESM_FACT_H
 | 
						|
#define OPENMW_ESM_FACT_H
 | 
						|
 | 
						|
#include <string>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
 | 
						|
class ESMReader;
 | 
						|
class ESMWriter;
 | 
						|
 | 
						|
/*
 | 
						|
 * Faction definitions
 | 
						|
 */
 | 
						|
 | 
						|
// Requirements for each rank
 | 
						|
struct RankData
 | 
						|
{
 | 
						|
    int mAttribute1, mAttribute2; // Attribute level
 | 
						|
 | 
						|
    int mSkill1, mSkill2; // Skill level (faction skills given in
 | 
						|
    // skillID below.) You need one skill at
 | 
						|
    // level 'skill1' and two skills at level
 | 
						|
    // 'skill2' to advance to this rank.
 | 
						|
 | 
						|
    int mFactReaction; // Reaction from faction members
 | 
						|
};
 | 
						|
 | 
						|
struct Faction
 | 
						|
{
 | 
						|
    std::string mId, mName;
 | 
						|
 | 
						|
    struct FADTstruct
 | 
						|
    {
 | 
						|
        // Which attributes we like
 | 
						|
        int mAttribute[2];
 | 
						|
 | 
						|
        RankData mRankData[10];
 | 
						|
 | 
						|
        int mSkills[6]; // IDs of skills this faction require
 | 
						|
        int mUnknown; // Always -1?
 | 
						|
        int mIsHidden; // 1 - hidden from player
 | 
						|
 | 
						|
        int& getSkill (int index, bool ignored = false);
 | 
						|
        ///< Throws an exception for invalid values of \a index.
 | 
						|
 | 
						|
        int getSkill (int index, bool ignored = false) const;
 | 
						|
        ///< Throws an exception for invalid values of \a index.
 | 
						|
    }; // 240 bytes
 | 
						|
 | 
						|
    FADTstruct mData;
 | 
						|
 | 
						|
    struct Reaction
 | 
						|
    {
 | 
						|
        std::string mFaction;
 | 
						|
        int mReaction;
 | 
						|
    };
 | 
						|
 | 
						|
    std::vector<Reaction> mReactions;
 | 
						|
 | 
						|
    // Name of faction ranks (may be empty for NPC factions)
 | 
						|
    std::string mRanks[10];
 | 
						|
 | 
						|
    void load(ESMReader &esm);
 | 
						|
    void save(ESMWriter &esm);
 | 
						|
 | 
						|
    void blank();
 | 
						|
     ///< Set record to default state (does not touch the ID/index).
 | 
						|
};
 | 
						|
}
 | 
						|
#endif
 |