Merge branch 'fixes' into main/rendor-staging
[ryzomcore.git] / ryzom / common / src / game_share / pact.cpp
blobd732c84e2c247d26da7aecdbf32cb1f47f04d1f3
1 // Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
2 // Copyright (C) 2010 Winch Gate Property Limited
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Affero General Public License as
6 // published by the Free Software Foundation, either version 3 of the
7 // License, or (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Affero General Public License for more details.
14 // You should have received a copy of the GNU Affero General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
19 /////////////
20 // INCLUDE //
21 /////////////
22 #include "stdpch.h" // First include for pre-compiled headers.
23 #include "pact.h"
25 using namespace std;
27 namespace GSPACT
30 static std::string pactNatureStrings[]=
32 "Unknown",
33 "Kamique",
34 "Caravane",
37 static std::string pactTypeStrings[]=
39 "Type1",
40 "Type2",
41 "Type3",
42 "Type4",
43 "Type5",
44 "Type6",
45 "unknown"
48 const std::string& toString (EPactNature pactNature)
50 if ((uint)pactNature >= sizeof(pactNatureStrings)/sizeof(string) )
52 nlwarning("<toString (EPactNature pactNature) : invalid pact nature %d",pactNature);
53 return pactNatureStrings[(uint)Unknown];
55 return pactNatureStrings[(uint)pactNature];
58 const std::string& toString (EPactType pactType)
60 if ((uint)pactType >= sizeof(pactTypeStrings)/sizeof(string) )
62 nlwarning("<toString (EPactType pactType) : invalid pact type %d",pactType);
63 return pactTypeStrings[(uint)UnknownType];
65 return pactTypeStrings[(uint)pactType];
69 };// namespace GSPACT