summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2009-04-13 14:48:07 +0100
committerDavid Athay <ko2fan@gmail.com>2009-04-13 14:48:07 +0100
commiteffc112bed400d632368ca633d8a6600ea8c8aae (patch)
tree794f9d826e2bc3a3df6ac0796856e7d6bb8f6b17
parentd8e3acb5253eb01231136b131e5b156034aaa7a9 (diff)
downloadmana-client-effc112bed400d632368ca633d8a6600ea8c8aae.tar.gz
mana-client-effc112bed400d632368ca633d8a6600ea8c8aae.tar.bz2
mana-client-effc112bed400d632368ca633d8a6600ea8c8aae.tar.xz
mana-client-effc112bed400d632368ca633d8a6600ea8c8aae.zip
Fixed @'s in a user's nick
-rw-r--r--src/gui/widgets/chattab.cpp3
-rw-r--r--src/utils/stringutils.cpp13
-rw-r--r--src/utils/stringutils.h8
-rw-r--r--themanaworld.xcodeproj/garfield.mode1v3477
-rw-r--r--themanaworld.xcodeproj/garfield.pbxuser4039
-rw-r--r--themanaworld.xcodeproj/project.pbxproj1790
6 files changed, 5775 insertions, 555 deletions
diff --git a/src/gui/widgets/chattab.cpp b/src/gui/widgets/chattab.cpp
index 1879a918..bbf71e83 100644
--- a/src/gui/widgets/chattab.cpp
+++ b/src/gui/widgets/chattab.cpp
@@ -163,6 +163,9 @@ void ChatTab::chatLog(std::string line, int own, bool ignoreRecord)
tmp.nick = "";
lineColor = "##S";
}
+
+ // check for @, # or [ in nick
+ tmp.nick = removeBadChars(tmp.nick);
#ifdef EATHENA_SUPPORT
if (tmp.nick.empty() && tmp.text.substr(0, 17) == "Visible GM status")
diff --git a/src/utils/stringutils.cpp b/src/utils/stringutils.cpp
index 6a88a12e..2f9bc9a8 100644
--- a/src/utils/stringutils.cpp
+++ b/src/utils/stringutils.cpp
@@ -61,3 +61,16 @@ const char *ipToString(int address)
return asciiIP;
}
+
+std::string &removeBadChars(std::string &str)
+{
+ std::string::size_type pos;
+ do
+ {
+ pos = str.find_first_of("@#[]");
+ if (pos != std::string::npos)
+ str.erase(pos, 1);
+ } while (pos != std::string::npos);
+
+ return str;
+}
diff --git a/src/utils/stringutils.h b/src/utils/stringutils.h
index 8b8b7bc2..872a8f52 100644
--- a/src/utils/stringutils.h
+++ b/src/utils/stringutils.h
@@ -65,4 +65,12 @@ template<typename T> std::string toString(const T &arg)
*/
const char *ipToString(int address);
+/**
+ * Removes bad characters from a string
+ *
+ * @param str the string to remove the bad chars from
+ * @return a reference to the string without bad chars
+ */
+std::string &removeBadChars(std::string &str);
+
#endif // UTILS_STRINGUTILS_H
diff --git a/themanaworld.xcodeproj/garfield.mode1v3 b/themanaworld.xcodeproj/garfield.mode1v3
index 0076a8bc..11673f8d 100644
--- a/themanaworld.xcodeproj/garfield.mode1v3
+++ b/themanaworld.xcodeproj/garfield.mode1v3
@@ -195,7 +195,128 @@
<key>Notifications</key>
<array/>
<key>OpenEditors</key>
- <array/>
+ <array>
+ <dict>
+ <key>Content</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>92A246100F936EBC00B7719B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>chattab.cpp</string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>92A246110F936EBC00B7719B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>chattab.cpp</string>
+ <key>_historyCapacity</key>
+ <integer>0</integer>
+ <key>bookmark</key>
+ <string>92A246370F9378E100B7719B</string>
+ <key>history</key>
+ <array>
+ <string>92A245EB0F93672300B7719B</string>
+ </array>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <true/>
+ </dict>
+ <key>Geometry</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 20}, {627, 617}}</string>
+ <key>PBXModuleWindowStatusBarHidden2</key>
+ <false/>
+ <key>RubberWindowFrame</key>
+ <string>93 148 627 658 0 0 1280 832 </string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Content</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>92A2460A0F936EBC00B7719B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>stringutils.h</string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>92A2460B0F936EBC00B7719B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>stringutils.h</string>
+ <key>_historyCapacity</key>
+ <integer>0</integer>
+ <key>bookmark</key>
+ <string>92A246380F9378E100B7719B</string>
+ <key>history</key>
+ <array>
+ <string>92A245EE0F936C4600B7719B</string>
+ </array>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <true/>
+ </dict>
+ <key>Geometry</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 20}, {627, 617}}</string>
+ <key>PBXModuleWindowStatusBarHidden2</key>
+ <false/>
+ <key>RubberWindowFrame</key>
+ <string>139 106 627 658 0 0 1280 832 </string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Content</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>92A2460D0F936EBC00B7719B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>stringutils.cpp</string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>92A2460E0F936EBC00B7719B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>stringutils.cpp</string>
+ <key>_historyCapacity</key>
+ <integer>0</integer>
+ <key>bookmark</key>
+ <string>92A246390F9378E100B7719B</string>
+ <key>history</key>
+ <array>
+ <string>92A245EC0F9368CA00B7719B</string>
+ </array>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <true/>
+ </dict>
+ <key>Geometry</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 20}, {627, 617}}</string>
+ <key>PBXModuleWindowStatusBarHidden2</key>
+ <false/>
+ <key>RubberWindowFrame</key>
+ <string>116 127 627 658 0 0 1280 832 </string>
+ </dict>
+ </dict>
+ </array>
<key>PerspectiveWidths</key>
<array>
<integer>-1</integer>
@@ -265,18 +386,21 @@
<key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
<array>
<string>20286C29FDCF999611CA2CEA</string>
- <string>5048396909E3304600765E4B</string>
- <string>20286C2CFDCF999611CA2CEA</string>
+ <string>20286C2AFDCF999611CA2CEA</string>
+ <string>92BC3EF00BAEE55A000DAB7F</string>
+ <string>1C37FBAC04509CD000000102</string>
+ <string>92A245F40F936EBC00B7719B</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
- <integer>1</integer>
+ <integer>259</integer>
+ <integer>3</integer>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {186, 520}}</string>
+ <string>{{0, 1533}, {186, 520}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
@@ -295,7 +419,7 @@
<real>186</real>
</array>
<key>RubberWindowFrame</key>
- <string>670 363 780 579 0 0 1680 1028 </string>
+ <string>372 210 780 579 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
@@ -306,12 +430,14 @@
<key>Dock</key>
<array>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CE0B20306471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
- <string>Info.plist</string>
+ <string>stringutils.cpp</string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
@@ -319,18 +445,131 @@
<key>PBXProjectModuleGUID</key>
<string>1CE0B20406471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
- <string>Info.plist</string>
+ <string>stringutils.cpp</string>
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
- <string>927F62650ED4F41700D919E6</string>
+ <string>92A246360F9378E100B7719B</string>
<key>history</key>
<array>
- <string>92B1EBDE0ED4E43D009AF197</string>
<string>92B1EBF30ED4E5C5009AF197</string>
- <string>927F625B0ED4F41700D919E6</string>
- <string>927F625C0ED4F41700D919E6</string>
- <string>927F625D0ED4F41700D919E6</string>
+ <string>9273BE350EF34050008E56E1</string>
+ <string>926A29A00F23CA6D005D6466</string>
+ <string>926A29A10F23CA6D005D6466</string>
+ <string>926A29A20F23CA6D005D6466</string>
+ <string>928B50D90F2FB5070011C755</string>
+ <string>928B50ED0F2FB6090011C755</string>
+ <string>928B511B0F2FBD470011C755</string>
+ <string>928B511C0F2FBD470011C755</string>
+ <string>9275F19F0F4B6264000E3DFD</string>
+ <string>925469020F8EB70A00B4C3A3</string>
+ <string>92C1161D0F8EC0950048CA8D</string>
+ <string>92C1161E0F8EC0950048CA8D</string>
+ <string>92C116490F8EC7EC0048CA8D</string>
+ <string>92C116F70F8ECD360048CA8D</string>
+ <string>92C116F80F8ECD360048CA8D</string>
+ <string>92C116F90F8ECD360048CA8D</string>
+ <string>92C116FA0F8ECD360048CA8D</string>
+ <string>92C116FB0F8ECD360048CA8D</string>
+ <string>92C116FC0F8ECD360048CA8D</string>
+ <string>92C116FD0F8ECD360048CA8D</string>
+ <string>92C116FE0F8ECD360048CA8D</string>
+ <string>92C116FF0F8ECD360048CA8D</string>
+ <string>92C117000F8ECD360048CA8D</string>
+ <string>92C117010F8ECD360048CA8D</string>
+ <string>92C117020F8ECD360048CA8D</string>
+ <string>92C117030F8ECD360048CA8D</string>
+ <string>92C117040F8ECD360048CA8D</string>
+ <string>92C117050F8ECD360048CA8D</string>
+ <string>92C117060F8ECD360048CA8D</string>
+ <string>92C117080F8ECD360048CA8D</string>
+ <string>92C117090F8ECD360048CA8D</string>
+ <string>92C1170A0F8ECD360048CA8D</string>
+ <string>92C1170D0F8ECD360048CA8D</string>
+ <string>92C1170E0F8ECD360048CA8D</string>
+ <string>92C1170F0F8ECD360048CA8D</string>
+ <string>92C117110F8ECD360048CA8D</string>
+ <string>92C1175F0F8ECF5E0048CA8D</string>
+ <string>92C117600F8ECF5E0048CA8D</string>
+ <string>92C117610F8ECF5E0048CA8D</string>
+ <string>92C117620F8ECF5E0048CA8D</string>
+ <string>92C117640F8ECF5E0048CA8D</string>
+ <string>92C117650F8ECF5E0048CA8D</string>
+ <string>92C117660F8ECF5E0048CA8D</string>
+ <string>92C117670F8ECF5E0048CA8D</string>
+ <string>92C117680F8ECF5E0048CA8D</string>
+ <string>92C117690F8ECF5E0048CA8D</string>
+ <string>92C1176A0F8ECF5E0048CA8D</string>
+ <string>92C1176B0F8ECF5E0048CA8D</string>
+ <string>92C1176C0F8ECF5E0048CA8D</string>
+ <string>92C1176D0F8ECF5E0048CA8D</string>
+ <string>92C1176E0F8ECF5E0048CA8D</string>
+ <string>92C117700F8ECF5E0048CA8D</string>
+ <string>92C117880F8ECF890048CA8D</string>
+ <string>92C117890F8ECF890048CA8D</string>
+ <string>92C117930F8ECFFF0048CA8D</string>
+ <string>92C117940F8ECFFF0048CA8D</string>
+ <string>92C117950F8ECFFF0048CA8D</string>
+ <string>92C117960F8ECFFF0048CA8D</string>
+ <string>92C117970F8ECFFF0048CA8D</string>
+ <string>92C118A20F8ED54C0048CA8D</string>
+ <string>92C118A30F8ED54C0048CA8D</string>
+ <string>92C118A40F8ED54C0048CA8D</string>
+ <string>92C118A50F8ED54C0048CA8D</string>
+ <string>92C118A60F8ED54C0048CA8D</string>
+ <string>92C118A70F8ED54C0048CA8D</string>
+ <string>92C118A80F8ED54C0048CA8D</string>
+ <string>92C118A90F8ED54C0048CA8D</string>
+ <string>92C118AA0F8ED54C0048CA8D</string>
+ <string>92C118AB0F8ED54C0048CA8D</string>
+ <string>92C118AD0F8ED54C0048CA8D</string>
+ <string>92C118AE0F8ED54C0048CA8D</string>
+ <string>92C118AF0F8ED54C0048CA8D</string>
+ <string>92C118B00F8ED54C0048CA8D</string>
+ <string>92C118B10F8ED54C0048CA8D</string>
+ <string>92C118B20F8ED54C0048CA8D</string>
+ <string>92C118B30F8ED54C0048CA8D</string>
+ <string>92C118B40F8ED54C0048CA8D</string>
+ <string>92C118B50F8ED54C0048CA8D</string>
+ <string>92C118B60F8ED54C0048CA8D</string>
+ <string>92C118B70F8ED54C0048CA8D</string>
+ <string>92C118B80F8ED54C0048CA8D</string>
+ <string>92C118B90F8ED54C0048CA8D</string>
+ <string>92C118BA0F8ED54C0048CA8D</string>
+ <string>92C118BB0F8ED54C0048CA8D</string>
+ <string>92C118BC0F8ED54C0048CA8D</string>
+ <string>92C118BD0F8ED54C0048CA8D</string>
+ <string>92C118BE0F8ED54C0048CA8D</string>
+ <string>92C118BF0F8ED54C0048CA8D</string>
+ <string>92C118C00F8ED54C0048CA8D</string>
+ <string>92C118C10F8ED54C0048CA8D</string>
+ <string>92C118C20F8ED54C0048CA8D</string>
+ <string>92C118C40F8ED54C0048CA8D</string>
+ <string>92C118C50F8ED54C0048CA8D</string>
+ <string>92C11A090F8ED9F50048CA8D</string>
+ <string>92C11A0A0F8ED9F50048CA8D</string>
+ <string>92C11A0B0F8ED9F50048CA8D</string>
+ <string>92C11A200F8EDAB80048CA8D</string>
+ <string>92C11A220F8EDAB80048CA8D</string>
+ <string>92C11A230F8EDAB80048CA8D</string>
+ <string>92C11A240F8EDAB80048CA8D</string>
+ <string>92C11A250F8EDAB80048CA8D</string>
+ <string>92C11A260F8EDAB80048CA8D</string>
+ <string>92C11A270F8EDAB80048CA8D</string>
+ <string>92C11A280F8EDAB80048CA8D</string>
+ <string>92C11A3B0F8EDAF10048CA8D</string>
+ <string>92C11A410F8EDB000048CA8D</string>
+ <string>92A245C70F93628600B7719B</string>
+ <string>92A245F50F936EBC00B7719B</string>
+ <string>92A245F60F936EBC00B7719B</string>
+ <string>92A245F70F936EBC00B7719B</string>
+ <string>92A245F80F936EBC00B7719B</string>
+ <string>92A245F90F936EBC00B7719B</string>
+ <string>92A245FA0F936EBC00B7719B</string>
+ <string>92A245FB0F936EBC00B7719B</string>
+ <string>92A245FC0F936EBC00B7719B</string>
+ <string>92A246190F93760E00B7719B</string>
+ <string>92A2461A0F93760E00B7719B</string>
</array>
<key>prevStack</key>
<array>
@@ -339,11 +578,125 @@
<string>92B1EBF50ED4E5C5009AF197</string>
<string>927F625E0ED4F41700D919E6</string>
<string>927F625F0ED4F41700D919E6</string>
- <string>927F62600ED4F41700D919E6</string>
- <string>927F62610ED4F41700D919E6</string>
- <string>927F62620ED4F41700D919E6</string>
- <string>927F62630ED4F41700D919E6</string>
- <string>927F62640ED4F41700D919E6</string>
+ <string>926A298A0F23C7CF005D6466</string>
+ <string>926A29A40F23CA6D005D6466</string>
+ <string>926A29A50F23CA6D005D6466</string>
+ <string>926A29A60F23CA6D005D6466</string>
+ <string>926A29A70F23CA6D005D6466</string>
+ <string>928B50EE0F2FB6090011C755</string>
+ <string>928B50EF0F2FB6090011C755</string>
+ <string>928B50F70F2FB6AD0011C755</string>
+ <string>928B511F0F2FBD470011C755</string>
+ <string>928B51210F2FBD470011C755</string>
+ <string>9254690B0F8EB80A00B4C3A3</string>
+ <string>92C116210F8EC0950048CA8D</string>
+ <string>92C116220F8EC0950048CA8D</string>
+ <string>92C116230F8EC0950048CA8D</string>
+ <string>92C116460F8EC61E0048CA8D</string>
+ <string>92C117130F8ECD360048CA8D</string>
+ <string>92C117140F8ECD360048CA8D</string>
+ <string>92C117150F8ECD360048CA8D</string>
+ <string>92C117160F8ECD360048CA8D</string>
+ <string>92C117170F8ECD360048CA8D</string>
+ <string>92C117180F8ECD360048CA8D</string>
+ <string>92C117190F8ECD360048CA8D</string>
+ <string>92C1171A0F8ECD360048CA8D</string>
+ <string>92C1171B0F8ECD360048CA8D</string>
+ <string>92C1171C0F8ECD360048CA8D</string>
+ <string>92C1171D0F8ECD360048CA8D</string>
+ <string>92C1171E0F8ECD360048CA8D</string>
+ <string>92C1171F0F8ECD360048CA8D</string>
+ <string>92C117200F8ECD360048CA8D</string>
+ <string>92C117210F8ECD360048CA8D</string>
+ <string>92C117220F8ECD360048CA8D</string>
+ <string>92C117240F8ECD360048CA8D</string>
+ <string>92C117250F8ECD360048CA8D</string>
+ <string>92C117260F8ECD360048CA8D</string>
+ <string>92C117270F8ECD360048CA8D</string>
+ <string>92C117280F8ECD360048CA8D</string>
+ <string>92C117290F8ECD360048CA8D</string>
+ <string>92C1172A0F8ECD360048CA8D</string>
+ <string>92C1172B0F8ECD360048CA8D</string>
+ <string>92C1172C0F8ECD360048CA8D</string>
+ <string>92C1172D0F8ECD360048CA8D</string>
+ <string>92C117720F8ECF5E0048CA8D</string>
+ <string>92C117730F8ECF5E0048CA8D</string>
+ <string>92C117740F8ECF5E0048CA8D</string>
+ <string>92C117760F8ECF5E0048CA8D</string>
+ <string>92C117770F8ECF5E0048CA8D</string>
+ <string>92C117780F8ECF5E0048CA8D</string>
+ <string>92C117790F8ECF5E0048CA8D</string>
+ <string>92C1177A0F8ECF5E0048CA8D</string>
+ <string>92C1177B0F8ECF5E0048CA8D</string>
+ <string>92C1177C0F8ECF5E0048CA8D</string>
+ <string>92C1177D0F8ECF5E0048CA8D</string>
+ <string>92C1177F0F8ECF5E0048CA8D</string>
+ <string>92C117800F8ECF5E0048CA8D</string>
+ <string>92C117810F8ECF5E0048CA8D</string>
+ <string>92C117830F8ECF5E0048CA8D</string>
+ <string>92C1178B0F8ECF890048CA8D</string>
+ <string>92C1178C0F8ECF890048CA8D</string>
+ <string>92C117990F8ECFFF0048CA8D</string>
+ <string>92C1179A0F8ECFFF0048CA8D</string>
+ <string>92C1179C0F8ECFFF0048CA8D</string>
+ <string>92C118C70F8ED54C0048CA8D</string>
+ <string>92C118C80F8ED54C0048CA8D</string>
+ <string>92C118C90F8ED54C0048CA8D</string>
+ <string>92C118CA0F8ED54C0048CA8D</string>
+ <string>92C118CB0F8ED54C0048CA8D</string>
+ <string>92C118CC0F8ED54C0048CA8D</string>
+ <string>92C118CD0F8ED54C0048CA8D</string>
+ <string>92C118CE0F8ED54C0048CA8D</string>
+ <string>92C118CF0F8ED54C0048CA8D</string>
+ <string>92C118D00F8ED54C0048CA8D</string>
+ <string>92C118D10F8ED54C0048CA8D</string>
+ <string>92C118D20F8ED54C0048CA8D</string>
+ <string>92C118D30F8ED54C0048CA8D</string>
+ <string>92C118D50F8ED54C0048CA8D</string>
+ <string>92C118D60F8ED54C0048CA8D</string>
+ <string>92C118D70F8ED54C0048CA8D</string>
+ <string>92C118D90F8ED54C0048CA8D</string>
+ <string>92C118DA0F8ED54C0048CA8D</string>
+ <string>92C118DB0F8ED54C0048CA8D</string>
+ <string>92C118DD0F8ED54C0048CA8D</string>
+ <string>92C118DE0F8ED54C0048CA8D</string>
+ <string>92C118E00F8ED54C0048CA8D</string>
+ <string>92C118E10F8ED54C0048CA8D</string>
+ <string>92C118E20F8ED54C0048CA8D</string>
+ <string>92C118E30F8ED54C0048CA8D</string>
+ <string>92C118E40F8ED54C0048CA8D</string>
+ <string>92C118E50F8ED54C0048CA8D</string>
+ <string>92C118E60F8ED54C0048CA8D</string>
+ <string>92C118E70F8ED54C0048CA8D</string>
+ <string>92C118E80F8ED54C0048CA8D</string>
+ <string>92C118E90F8ED54C0048CA8D</string>
+ <string>92C118EA0F8ED54C0048CA8D</string>
+ <string>92C118EB0F8ED54C0048CA8D</string>
+ <string>92C11A0E0F8ED9F50048CA8D</string>
+ <string>92C11A0F0F8ED9F50048CA8D</string>
+ <string>92C11A100F8ED9F50048CA8D</string>
+ <string>92C11A2A0F8EDAB80048CA8D</string>
+ <string>92C11A2B0F8EDAB80048CA8D</string>
+ <string>92C11A2C0F8EDAB80048CA8D</string>
+ <string>92C11A2F0F8EDAB80048CA8D</string>
+ <string>92C11A300F8EDAB80048CA8D</string>
+ <string>92C11A320F8EDAB80048CA8D</string>
+ <string>92C11A330F8EDAB80048CA8D</string>
+ <string>92C11A3E0F8EDAF10048CA8D</string>
+ <string>92C11A430F8EDB000048CA8D</string>
+ <string>92A245C90F93628600B7719B</string>
+ <string>92A245FF0F936EBC00B7719B</string>
+ <string>92A246000F936EBC00B7719B</string>
+ <string>92A246010F936EBC00B7719B</string>
+ <string>92A246020F936EBC00B7719B</string>
+ <string>92A246030F936EBC00B7719B</string>
+ <string>92A246040F936EBC00B7719B</string>
+ <string>92A246050F936EBC00B7719B</string>
+ <string>92A246060F936EBC00B7719B</string>
+ <string>92A246070F936EBC00B7719B</string>
+ <string>92A246080F936EBC00B7719B</string>
+ <string>92A2461B0F93760E00B7719B</string>
+ <string>92A2461C0F93760E00B7719B</string>
</array>
</dict>
<key>SplitCount</key>
@@ -355,14 +708,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 0}, {572, 403}}</string>
+ <string>{{0, 0}, {572, 342}}</string>
<key>RubberWindowFrame</key>
- <string>670 363 780 579 0 0 1680 1028 </string>
+ <string>372 210 780 579 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
- <string>403pt</string>
+ <string>342pt</string>
</dict>
<dict>
<key>ContentConfiguration</key>
@@ -375,14 +728,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 408}, {572, 130}}</string>
+ <string>{{0, 347}, {572, 191}}</string>
<key>RubberWindowFrame</key>
- <string>670 363 780 579 0 0 1680 1028 </string>
+ <string>372 210 780 579 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
- <string>130pt</string>
+ <string>191pt</string>
</dict>
</array>
<key>Proportion</key>
@@ -401,9 +754,9 @@
</array>
<key>TableOfContents</key>
<array>
- <string>927F621A0ED4EA6A00D919E6</string>
+ <string>92A244940F935DA900B7719B</string>
<string>1CE0B1FE06471DED0097A5F4</string>
- <string>927F621B0ED4EA6A00D919E6</string>
+ <string>92A244950F935DA900B7719B</string>
<string>1CE0B20306471E060097A5F4</string>
<string>1CE0B20506471E060097A5F4</string>
</array>
@@ -535,13 +888,21 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
+ <string>92A2463A0F9378E100B7719B</string>
+ <string>92A246350F93782E00B7719B</string>
+ <string>92A2462E0F9377B400B7719B</string>
+ <string>92A2462F0F9377B400B7719B</string>
+ <string>1C530D57069F1CE1000CFCEE</string>
+ <string>92A2460D0F936EBC00B7719B</string>
+ <string>92A2460A0F936EBC00B7719B</string>
<string>92A4CC8A0D1C5F1E00CA28FB</string>
- <string>1CD10A99069EF8BA00B06720</string>
<string>1C78EAAD065D492600B07095</string>
+ <string>92A246100F936EBC00B7719B</string>
<string>/Users/garfield/programming/tmwclient/themanaworld.xcodeproj</string>
+ <string>1CD10A99069EF8BA00B06720</string>
</array>
<key>WindowString</key>
- <string>670 363 780 579 0 0 1680 1028 </string>
+ <string>372 210 780 579 0 0 1280 832 </string>
<key>WindowToolsV3</key>
<array>
<dict>
@@ -569,20 +930,22 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 0}, {553, 151}}</string>
+ <string>{{0, 0}, {553, 0}}</string>
<key>RubberWindowFrame</key>
- <string>490 365 553 548 0 0 1680 1028 </string>
+ <string>88 224 553 548 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
- <string>151pt</string>
+ <string>0pt</string>
</dict>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXBuildLogShowsTranscriptDefaultKey</key>
- <string>{{0, 166}, {553, 185}}</string>
+ <string>{{0, 5}, {553, 497}}</string>
<key>PBXProjectModuleGUID</key>
<string>XCMainBuildResultsModuleGUID</string>
<key>PBXProjectModuleLabel</key>
@@ -595,14 +958,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 156}, {553, 351}}</string>
+ <string>{{0, 5}, {553, 502}}</string>
<key>RubberWindowFrame</key>
- <string>490 365 553 548 0 0 1680 1028 </string>
+ <string>88 224 553 548 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXBuildResultsModule</string>
<key>Proportion</key>
- <string>351pt</string>
+ <string>502pt</string>
</dict>
</array>
<key>Proportion</key>
@@ -620,18 +983,18 @@
<key>TableOfContents</key>
<array>
<string>92A4CC8A0D1C5F1E00CA28FB</string>
- <string>927F623B0ED4EBEB00D919E6</string>
+ <string>92A244980F935DDE00B7719B</string>
<string>1CD0528F0623707200166675</string>
<string>XCMainBuildResultsModuleGUID</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.buildV3</string>
<key>WindowString</key>
- <string>490 365 553 548 0 0 1680 1028 </string>
+ <string>88 224 553 548 0 0 1280 832 </string>
<key>WindowToolGUID</key>
<string>92A4CC8A0D1C5F1E00CA28FB</string>
<key>WindowToolIsVisible</key>
- <false/>
+ <true/>
</dict>
<dict>
<key>FirstTimeWindowDisplayed</key>
@@ -714,10 +1077,10 @@
<key>Frame</key>
<string>{{316, 0}, {378, 203}}</string>
<key>RubberWindowFrame</key>
- <string>348 319 694 422 0 0 1680 1028 </string>
+ <string>207 225 694 422 0 0 1280 832 </string>
</dict>
<key>RubberWindowFrame</key>
- <string>348 319 694 422 0 0 1680 1028 </string>
+ <string>207 225 694 422 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXDebugSessionModule</string>
@@ -740,18 +1103,18 @@
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
- <string>927F621D0ED4EA6A00D919E6</string>
+ <string>92A245D50F93670500B7719B</string>
<string>1C162984064C10D400B95A72</string>
- <string>927F621E0ED4EA6A00D919E6</string>
- <string>927F621F0ED4EA6A00D919E6</string>
- <string>927F62200ED4EA6A00D919E6</string>
- <string>927F62210ED4EA6A00D919E6</string>
- <string>927F62220ED4EA6A00D919E6</string>
+ <string>92A245D60F93670500B7719B</string>
+ <string>92A245D70F93670500B7719B</string>
+ <string>92A245D80F93670500B7719B</string>
+ <string>92A245D90F93670500B7719B</string>
+ <string>92A245DA0F93670500B7719B</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
<key>WindowString</key>
- <string>348 319 694 422 0 0 1680 1028 </string>
+ <string>207 225 694 422 0 0 1280 832 </string>
<key>WindowToolGUID</key>
<string>1CD10A99069EF8BA00B06720</string>
<key>WindowToolIsVisible</key>
@@ -778,7 +1141,7 @@
<key>PBXProjectModuleGUID</key>
<string>1CDD528C0622207200134675</string>
<key>PBXProjectModuleLabel</key>
- <string>&lt;No Editor&gt;</string>
+ <string>browserbox.cpp</string>
<key>StatusBarVisibility</key>
<true/>
</dict>
@@ -787,7 +1150,7 @@
<key>Frame</key>
<string>{{0, 0}, {781, 212}}</string>
<key>RubberWindowFrame</key>
- <string>212 362 781 470 0 0 1280 832 </string>
+ <string>354 295 781 470 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
@@ -799,6 +1162,8 @@
<string>212pt</string>
</dict>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@@ -811,7 +1176,7 @@
<key>Frame</key>
<string>{{0, 217}, {781, 212}}</string>
<key>RubberWindowFrame</key>
- <string>212 362 781 470 0 0 1280 832 </string>
+ <string>354 295 781 470 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXProjectFindModule</string>
@@ -834,13 +1199,13 @@
<key>TableOfContents</key>
<array>
<string>1C530D57069F1CE1000CFCEE</string>
- <string>92983E440D3A6D3600350ADB</string>
- <string>92983E450D3A6D3600350ADB</string>
+ <string>92A245E90F93670500B7719B</string>
+ <string>92A245EA0F93670500B7719B</string>
<string>1CDD528C0622207200134675</string>
<string>1CD0528E0623707200166675</string>
</array>
<key>WindowString</key>
- <string>212 362 781 470 0 0 1280 832 </string>
+ <string>354 295 781 470 0 0 1280 832 </string>
<key>WindowToolGUID</key>
<string>1C530D57069F1CE1000CFCEE</string>
<key>WindowToolIsVisible</key>
@@ -879,7 +1244,7 @@
<key>Frame</key>
<string>{{0, 0}, {440, 359}}</string>
<key>RubberWindowFrame</key>
- <string>655 284 440 400 0 0 1680 1028 </string>
+ <string>444 206 440 400 0 0 1280 832 </string>
</dict>
<key>Module</key>
<string>PBXDebugCLIModule</string>
@@ -902,13 +1267,13 @@
<key>TableOfContents</key>
<array>
<string>1C78EAAD065D492600B07095</string>
- <string>927F623C0ED4EBEB00D919E6</string>
+ <string>92A245F30F936EA500B7719B</string>
<string>1C78EAAC065D492600B07095</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.consoleV3</string>
<key>WindowString</key>
- <string>655 284 440 400 0 0 1680 1028 </string>
+ <string>444 206 440 400 0 0 1280 832 </string>
<key>WindowToolGUID</key>
<string>1C78EAAD065D492600B07095</string>
<key>WindowToolIsVisible</key>
diff --git a/themanaworld.xcodeproj/garfield.pbxuser b/themanaworld.xcodeproj/garfield.pbxuser
index 42957a89..03a1cfc2 100644
--- a/themanaworld.xcodeproj/garfield.pbxuser
+++ b/themanaworld.xcodeproj/garfield.pbxuser
@@ -1,17 +1,18 @@
// !$*UTF8*$!
{
20286C28FDCF999611CA2CEA /* Project object */ = {
- activeBuildConfigurationName = Release;
- activeExecutable = 92BC3EBC0BAEE3BB000DAB7F /* themanaworld */;
- activeTarget = 8D0C4E890486CD37000505A6 /* themanaworld */;
+ activeBuildConfigurationName = Debug;
+ activeExecutable = 92BC3EBC0BAEE3BB000DAB7F /* themanaworld-eathena */;
+ activeTarget = 8D0C4E890486CD37000505A6 /* themanaworld-eathena */;
addToTargets = (
- 8D0C4E890486CD37000505A6 /* themanaworld */,
+ 8D0C4E890486CD37000505A6 /* themanaworld-eathena */,
);
breakpoints = (
);
codeSenseManager = 92BC3EC90BAEE3C8000DAB7F /* Code sense */;
executables = (
- 92BC3EBC0BAEE3BB000DAB7F /* themanaworld */,
+ 92BC3EBC0BAEE3BB000DAB7F /* themanaworld-eathena */,
+ 925468FB0F8EB65C00B4C3A3 /* themanaworld-tmwserv */,
);
perUserDictionary = {
"PBXConfiguration.PBXBreakpointsDataSource.v1:1CA1AED706398EBD00589147" = {
@@ -134,37 +135,337 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 249045476;
- PBXWorkspaceStateSaveDate = 249045476;
+ PBXPerProjectTemplateStateSaveDate = 261315992;
+ PBXWorkspaceStateSaveDate = 261315992;
};
perUserProjectItems = {
- 927F625B0ED4F41700D919E6 = 927F625B0ED4F41700D919E6 /* PBXTextBookmark */;
- 927F625C0ED4F41700D919E6 = 927F625C0ED4F41700D919E6 /* PBXTextBookmark */;
- 927F625D0ED4F41700D919E6 = 927F625D0ED4F41700D919E6 /* PlistBookmark */;
+ 925469020F8EB70A00B4C3A3 = 925469020F8EB70A00B4C3A3 /* PBXTextBookmark */;
+ 9254690B0F8EB80A00B4C3A3 = 9254690B0F8EB80A00B4C3A3 /* PBXTextBookmark */;
+ 926A298A0F23C7CF005D6466 = 926A298A0F23C7CF005D6466 /* PBXTextBookmark */;
+ 926A29A00F23CA6D005D6466 = 926A29A00F23CA6D005D6466 /* PBXTextBookmark */;
+ 926A29A10F23CA6D005D6466 = 926A29A10F23CA6D005D6466 /* PBXBookmark */;
+ 926A29A20F23CA6D005D6466 = 926A29A20F23CA6D005D6466 /* PBXBookmark */;
+ 926A29A40F23CA6D005D6466 = 926A29A40F23CA6D005D6466 /* PBXTextBookmark */;
+ 926A29A50F23CA6D005D6466 = 926A29A50F23CA6D005D6466 /* PBXBookmark */;
+ 926A29A60F23CA6D005D6466 = 926A29A60F23CA6D005D6466 /* PBXBookmark */;
+ 926A29A70F23CA6D005D6466 = 926A29A70F23CA6D005D6466 /* PBXTextBookmark */;
+ 9273BE350EF34050008E56E1 = 9273BE350EF34050008E56E1 /* PlistBookmark */;
+ 9275F19F0F4B6264000E3DFD = 9275F19F0F4B6264000E3DFD /* PBXTextBookmark */;
927F625E0ED4F41700D919E6 = 927F625E0ED4F41700D919E6 /* PlistBookmark */;
927F625F0ED4F41700D919E6 = 927F625F0ED4F41700D919E6 /* PBXTextBookmark */;
- 927F62600ED4F41700D919E6 = 927F62600ED4F41700D919E6 /* PBXTextBookmark */;
- 927F62610ED4F41700D919E6 = 927F62610ED4F41700D919E6 /* PlistBookmark */;
- 927F62620ED4F41700D919E6 = 927F62620ED4F41700D919E6 /* PBXTextBookmark */;
- 927F62630ED4F41700D919E6 = 927F62630ED4F41700D919E6 /* PlistBookmark */;
- 927F62640ED4F41700D919E6 = 927F62640ED4F41700D919E6 /* PBXTextBookmark */;
- 927F62650ED4F41700D919E6 = 927F62650ED4F41700D919E6 /* PlistBookmark */;
- 92B1EBDE0ED4E43D009AF197 = 92B1EBDE0ED4E43D009AF197 /* PBXTextBookmark */;
+ 928B50D90F2FB5070011C755 = 928B50D90F2FB5070011C755 /* PBXTextBookmark */;
+ 928B50ED0F2FB6090011C755 = 928B50ED0F2FB6090011C755 /* PBXBookmark */;
+ 928B50EE0F2FB6090011C755 = 928B50EE0F2FB6090011C755 /* PBXTextBookmark */;
+ 928B50EF0F2FB6090011C755 = 928B50EF0F2FB6090011C755 /* PBXBookmark */;
+ 928B50F70F2FB6AD0011C755 = 928B50F70F2FB6AD0011C755 /* PBXTextBookmark */;
+ 928B511B0F2FBD470011C755 = 928B511B0F2FBD470011C755 /* PBXTextBookmark */;
+ 928B511C0F2FBD470011C755 = 928B511C0F2FBD470011C755 /* PBXTextBookmark */;
+ 928B511F0F2FBD470011C755 = 928B511F0F2FBD470011C755 /* PBXTextBookmark */;
+ 928B51210F2FBD470011C755 = 928B51210F2FBD470011C755 /* PBXTextBookmark */;
+ 92A244930F935DA900B7719B /* PBXTextBookmark */ = 92A244930F935DA900B7719B /* PBXTextBookmark */;
+ 92A244970F935DDE00B7719B /* PBXTextBookmark */ = 92A244970F935DDE00B7719B /* PBXTextBookmark */;
+ 92A245C00F93612C00B7719B /* PBXTextBookmark */ = 92A245C00F93612C00B7719B /* PBXTextBookmark */;
+ 92A245C70F93628600B7719B /* PBXTextBookmark */ = 92A245C70F93628600B7719B /* PBXTextBookmark */;
+ 92A245C80F93628600B7719B /* PBXBookmark */ = 92A245C80F93628600B7719B /* PBXBookmark */;
+ 92A245C90F93628600B7719B /* PBXTextBookmark */ = 92A245C90F93628600B7719B /* PBXTextBookmark */;
+ 92A245CA0F93628600B7719B /* PBXTextBookmark */ = 92A245CA0F93628600B7719B /* PBXTextBookmark */;
+ 92A245CE0F93637100B7719B /* PBXTextBookmark */ = 92A245CE0F93637100B7719B /* PBXTextBookmark */;
+ 92A245DC0F93670500B7719B /* PBXTextBookmark */ = 92A245DC0F93670500B7719B /* PBXTextBookmark */;
+ 92A245DD0F93670500B7719B /* PBXTextBookmark */ = 92A245DD0F93670500B7719B /* PBXTextBookmark */;
+ 92A245DE0F93670500B7719B /* PBXTextBookmark */ = 92A245DE0F93670500B7719B /* PBXTextBookmark */;
+ 92A245DF0F93670500B7719B /* PBXTextBookmark */ = 92A245DF0F93670500B7719B /* PBXTextBookmark */;
+ 92A245E00F93670500B7719B /* PBXTextBookmark */ = 92A245E00F93670500B7719B /* PBXTextBookmark */;
+ 92A245E10F93670500B7719B /* PBXTextBookmark */ = 92A245E10F93670500B7719B /* PBXTextBookmark */;
+ 92A245E20F93670500B7719B /* PBXTextBookmark */ = 92A245E20F93670500B7719B /* PBXTextBookmark */;
+ 92A245E30F93670500B7719B /* PBXTextBookmark */ = 92A245E30F93670500B7719B /* PBXTextBookmark */;
+ 92A245E40F93670500B7719B /* PBXTextBookmark */ = 92A245E40F93670500B7719B /* PBXTextBookmark */;
+ 92A245E50F93670500B7719B /* PBXTextBookmark */ = 92A245E50F93670500B7719B /* PBXTextBookmark */;
+ 92A245E60F93670500B7719B /* PBXTextBookmark */ = 92A245E60F93670500B7719B /* PBXTextBookmark */;
+ 92A245E70F93670500B7719B /* PBXTextBookmark */ = 92A245E70F93670500B7719B /* PBXTextBookmark */;
+ 92A245E80F93670500B7719B /* PBXTextBookmark */ = 92A245E80F93670500B7719B /* PBXTextBookmark */;
+ 92A245EB0F93672300B7719B /* PBXBookmark */ = 92A245EB0F93672300B7719B /* PBXBookmark */;
+ 92A245EC0F9368CA00B7719B /* PBXBookmark */ = 92A245EC0F9368CA00B7719B /* PBXBookmark */;
+ 92A245EE0F936C4600B7719B /* PBXBookmark */ = 92A245EE0F936C4600B7719B /* PBXBookmark */;
+ 92A245F20F936EA500B7719B /* PBXTextBookmark */ = 92A245F20F936EA500B7719B /* PBXTextBookmark */;
+ 92A245F50F936EBC00B7719B /* PBXTextBookmark */ = 92A245F50F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245F60F936EBC00B7719B /* PBXTextBookmark */ = 92A245F60F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245F70F936EBC00B7719B /* PBXTextBookmark */ = 92A245F70F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245F80F936EBC00B7719B /* PBXTextBookmark */ = 92A245F80F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245F90F936EBC00B7719B /* PBXTextBookmark */ = 92A245F90F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245FA0F936EBC00B7719B /* PBXTextBookmark */ = 92A245FA0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245FB0F936EBC00B7719B /* PBXTextBookmark */ = 92A245FB0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245FC0F936EBC00B7719B /* PBXTextBookmark */ = 92A245FC0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245FD0F936EBC00B7719B /* PBXTextBookmark */ = 92A245FD0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245FE0F936EBC00B7719B /* PBXTextBookmark */ = 92A245FE0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A245FF0F936EBC00B7719B /* PBXTextBookmark */ = 92A245FF0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246000F936EBC00B7719B /* PBXTextBookmark */ = 92A246000F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246010F936EBC00B7719B /* PBXTextBookmark */ = 92A246010F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246020F936EBC00B7719B /* PBXTextBookmark */ = 92A246020F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246030F936EBC00B7719B /* PBXTextBookmark */ = 92A246030F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246040F936EBC00B7719B /* PBXTextBookmark */ = 92A246040F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246050F936EBC00B7719B /* PBXTextBookmark */ = 92A246050F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246060F936EBC00B7719B /* PBXTextBookmark */ = 92A246060F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246070F936EBC00B7719B /* PBXTextBookmark */ = 92A246070F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246080F936EBC00B7719B /* PBXTextBookmark */ = 92A246080F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246090F936EBC00B7719B /* PBXTextBookmark */ = 92A246090F936EBC00B7719B /* PBXTextBookmark */;
+ 92A2460C0F936EBC00B7719B /* PBXTextBookmark */ = 92A2460C0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A2460F0F936EBC00B7719B /* PBXTextBookmark */ = 92A2460F0F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246120F936EBC00B7719B /* PBXTextBookmark */ = 92A246120F936EBC00B7719B /* PBXTextBookmark */;
+ 92A246190F93760E00B7719B /* PBXTextBookmark */ = 92A246190F93760E00B7719B /* PBXTextBookmark */;
+ 92A2461A0F93760E00B7719B /* PBXTextBookmark */ = 92A2461A0F93760E00B7719B /* PBXTextBookmark */;
+ 92A2461B0F93760E00B7719B /* PBXTextBookmark */ = 92A2461B0F93760E00B7719B /* PBXTextBookmark */;
+ 92A2461C0F93760E00B7719B /* PBXTextBookmark */ = 92A2461C0F93760E00B7719B /* PBXTextBookmark */;
+ 92A2461D0F93760E00B7719B /* PBXTextBookmark */ = 92A2461D0F93760E00B7719B /* PBXTextBookmark */;
+ 92A2461E0F93760E00B7719B /* PBXTextBookmark */ = 92A2461E0F93760E00B7719B /* PBXTextBookmark */;
+ 92A2461F0F93760E00B7719B /* PBXTextBookmark */ = 92A2461F0F93760E00B7719B /* PBXTextBookmark */;
+ 92A246200F93760E00B7719B /* PBXTextBookmark */ = 92A246200F93760E00B7719B /* PBXTextBookmark */;
+ 92A246220F93767700B7719B /* PBXTextBookmark */ = 92A246220F93767700B7719B /* PBXTextBookmark */;
+ 92A246290F9377B400B7719B /* PBXTextBookmark */ = 92A246290F9377B400B7719B /* PBXTextBookmark */;
+ 92A2462A0F9377B400B7719B /* PBXTextBookmark */ = 92A2462A0F9377B400B7719B /* PBXTextBookmark */;
+ 92A2462B0F9377B400B7719B /* PBXTextBookmark */ = 92A2462B0F9377B400B7719B /* PBXTextBookmark */;
+ 92A2462C0F9377B400B7719B /* PBXTextBookmark */ = 92A2462C0F9377B400B7719B /* PBXTextBookmark */;
+ 92A246310F93782E00B7719B /* PBXTextBookmark */ = 92A246310F93782E00B7719B /* PBXTextBookmark */;
+ 92A246320F93782E00B7719B /* PBXTextBookmark */ = 92A246320F93782E00B7719B /* PBXTextBookmark */;
+ 92A246330F93782E00B7719B /* PBXTextBookmark */ = 92A246330F93782E00B7719B /* PBXTextBookmark */;
+ 92A246340F93782E00B7719B /* PBXTextBookmark */ = 92A246340F93782E00B7719B /* PBXTextBookmark */;
+ 92A246360F9378E100B7719B /* PBXTextBookmark */ = 92A246360F9378E100B7719B /* PBXTextBookmark */;
+ 92A246370F9378E100B7719B /* PBXTextBookmark */ = 92A246370F9378E100B7719B /* PBXTextBookmark */;
+ 92A246380F9378E100B7719B /* PBXTextBookmark */ = 92A246380F9378E100B7719B /* PBXTextBookmark */;
+ 92A246390F9378E100B7719B /* PBXTextBookmark */ = 92A246390F9378E100B7719B /* PBXTextBookmark */;
92B1EBE00ED4E43D009AF197 = 92B1EBE00ED4E43D009AF197 /* PBXTextBookmark */;
92B1EBE10ED4E43D009AF197 = 92B1EBE10ED4E43D009AF197 /* PBXTextBookmark */;
92B1EBF30ED4E5C5009AF197 = 92B1EBF30ED4E5C5009AF197 /* PBXTextBookmark */;
92B1EBF50ED4E5C5009AF197 = 92B1EBF50ED4E5C5009AF197 /* PBXTextBookmark */;
+ 92C1161D0F8EC0950048CA8D = 92C1161D0F8EC0950048CA8D /* PBXTextBookmark */;
+ 92C1161E0F8EC0950048CA8D = 92C1161E0F8EC0950048CA8D /* PBXBookmark */;
+ 92C116210F8EC0950048CA8D = 92C116210F8EC0950048CA8D /* PBXTextBookmark */;
+ 92C116220F8EC0950048CA8D = 92C116220F8EC0950048CA8D /* PBXBookmark */;
+ 92C116230F8EC0950048CA8D = 92C116230F8EC0950048CA8D /* PBXTextBookmark */;
+ 92C116460F8EC61E0048CA8D = 92C116460F8EC61E0048CA8D /* PBXBookmark */;
+ 92C116490F8EC7EC0048CA8D = 92C116490F8EC7EC0048CA8D /* PBXTextBookmark */;
+ 92C1164C0F8EC7EC0048CA8D = 92C1164C0F8EC7EC0048CA8D /* PBXTextBookmark */;
+ 92C116F70F8ECD360048CA8D = 92C116F70F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116F80F8ECD360048CA8D = 92C116F80F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116F90F8ECD360048CA8D = 92C116F90F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116FA0F8ECD360048CA8D = 92C116FA0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116FB0F8ECD360048CA8D = 92C116FB0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116FC0F8ECD360048CA8D = 92C116FC0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116FD0F8ECD360048CA8D = 92C116FD0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116FE0F8ECD360048CA8D = 92C116FE0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C116FF0F8ECD360048CA8D = 92C116FF0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117000F8ECD360048CA8D = 92C117000F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117010F8ECD360048CA8D = 92C117010F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117020F8ECD360048CA8D = 92C117020F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117030F8ECD360048CA8D = 92C117030F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117040F8ECD360048CA8D = 92C117040F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117050F8ECD360048CA8D = 92C117050F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117060F8ECD360048CA8D = 92C117060F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117070F8ECD360048CA8D = 92C117070F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117080F8ECD360048CA8D = 92C117080F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117090F8ECD360048CA8D = 92C117090F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1170A0F8ECD360048CA8D = 92C1170A0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1170D0F8ECD360048CA8D = 92C1170D0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1170E0F8ECD360048CA8D = 92C1170E0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1170F0F8ECD360048CA8D = 92C1170F0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117100F8ECD360048CA8D = 92C117100F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117110F8ECD360048CA8D = 92C117110F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117130F8ECD360048CA8D = 92C117130F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117140F8ECD360048CA8D = 92C117140F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117150F8ECD360048CA8D = 92C117150F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117160F8ECD360048CA8D = 92C117160F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117170F8ECD360048CA8D = 92C117170F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117180F8ECD360048CA8D = 92C117180F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117190F8ECD360048CA8D = 92C117190F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1171A0F8ECD360048CA8D = 92C1171A0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1171B0F8ECD360048CA8D = 92C1171B0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1171C0F8ECD360048CA8D = 92C1171C0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1171D0F8ECD360048CA8D = 92C1171D0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1171E0F8ECD360048CA8D = 92C1171E0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1171F0F8ECD360048CA8D = 92C1171F0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117200F8ECD360048CA8D = 92C117200F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117210F8ECD360048CA8D = 92C117210F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117220F8ECD360048CA8D = 92C117220F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117230F8ECD360048CA8D = 92C117230F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117240F8ECD360048CA8D = 92C117240F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117250F8ECD360048CA8D = 92C117250F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117260F8ECD360048CA8D = 92C117260F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117270F8ECD360048CA8D = 92C117270F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117280F8ECD360048CA8D = 92C117280F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C117290F8ECD360048CA8D = 92C117290F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1172A0F8ECD360048CA8D = 92C1172A0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1172B0F8ECD360048CA8D = 92C1172B0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1172C0F8ECD360048CA8D = 92C1172C0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1172D0F8ECD360048CA8D = 92C1172D0F8ECD360048CA8D /* PBXTextBookmark */;
+ 92C1175F0F8ECF5E0048CA8D = 92C1175F0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117600F8ECF5E0048CA8D = 92C117600F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117610F8ECF5E0048CA8D = 92C117610F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117620F8ECF5E0048CA8D = 92C117620F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117640F8ECF5E0048CA8D = 92C117640F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117650F8ECF5E0048CA8D = 92C117650F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117660F8ECF5E0048CA8D = 92C117660F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117670F8ECF5E0048CA8D = 92C117670F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117680F8ECF5E0048CA8D = 92C117680F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117690F8ECF5E0048CA8D = 92C117690F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1176A0F8ECF5E0048CA8D = 92C1176A0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1176B0F8ECF5E0048CA8D = 92C1176B0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1176C0F8ECF5E0048CA8D = 92C1176C0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1176D0F8ECF5E0048CA8D = 92C1176D0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1176E0F8ECF5E0048CA8D = 92C1176E0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117700F8ECF5E0048CA8D = 92C117700F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117720F8ECF5E0048CA8D = 92C117720F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117730F8ECF5E0048CA8D = 92C117730F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117740F8ECF5E0048CA8D = 92C117740F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117750F8ECF5E0048CA8D = 92C117750F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117760F8ECF5E0048CA8D = 92C117760F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117770F8ECF5E0048CA8D = 92C117770F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117780F8ECF5E0048CA8D = 92C117780F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117790F8ECF5E0048CA8D = 92C117790F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1177A0F8ECF5E0048CA8D = 92C1177A0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1177B0F8ECF5E0048CA8D = 92C1177B0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1177C0F8ECF5E0048CA8D = 92C1177C0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1177D0F8ECF5E0048CA8D = 92C1177D0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1177E0F8ECF5E0048CA8D = 92C1177E0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C1177F0F8ECF5E0048CA8D = 92C1177F0F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117800F8ECF5E0048CA8D = 92C117800F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117810F8ECF5E0048CA8D = 92C117810F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117830F8ECF5E0048CA8D = 92C117830F8ECF5E0048CA8D /* PBXTextBookmark */;
+ 92C117880F8ECF890048CA8D = 92C117880F8ECF890048CA8D /* PBXTextBookmark */;
+ 92C117890F8ECF890048CA8D = 92C117890F8ECF890048CA8D /* PBXTextBookmark */;
+ 92C1178B0F8ECF890048CA8D = 92C1178B0F8ECF890048CA8D /* PBXTextBookmark */;
+ 92C1178C0F8ECF890048CA8D = 92C1178C0F8ECF890048CA8D /* PBXTextBookmark */;
+ 92C117930F8ECFFF0048CA8D = 92C117930F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C117940F8ECFFF0048CA8D = 92C117940F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C117950F8ECFFF0048CA8D = 92C117950F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C117960F8ECFFF0048CA8D = 92C117960F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C117970F8ECFFF0048CA8D = 92C117970F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C117990F8ECFFF0048CA8D = 92C117990F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C1179A0F8ECFFF0048CA8D = 92C1179A0F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C1179B0F8ECFFF0048CA8D = 92C1179B0F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C1179C0F8ECFFF0048CA8D = 92C1179C0F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C1179D0F8ECFFF0048CA8D = 92C1179D0F8ECFFF0048CA8D /* PBXTextBookmark */;
+ 92C118A20F8ED54C0048CA8D = 92C118A20F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118A30F8ED54C0048CA8D = 92C118A30F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118A40F8ED54C0048CA8D = 92C118A40F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118A50F8ED54C0048CA8D = 92C118A50F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118A60F8ED54C0048CA8D = 92C118A60F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118A70F8ED54C0048CA8D = 92C118A70F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118A80F8ED54C0048CA8D = 92C118A80F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118A90F8ED54C0048CA8D = 92C118A90F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118AA0F8ED54C0048CA8D = 92C118AA0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118AB0F8ED54C0048CA8D = 92C118AB0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118AC0F8ED54C0048CA8D = 92C118AC0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118AD0F8ED54C0048CA8D = 92C118AD0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118AE0F8ED54C0048CA8D = 92C118AE0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118AF0F8ED54C0048CA8D = 92C118AF0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B00F8ED54C0048CA8D = 92C118B00F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B10F8ED54C0048CA8D = 92C118B10F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B20F8ED54C0048CA8D = 92C118B20F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B30F8ED54C0048CA8D = 92C118B30F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B40F8ED54C0048CA8D = 92C118B40F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B50F8ED54C0048CA8D = 92C118B50F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B60F8ED54C0048CA8D = 92C118B60F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B70F8ED54C0048CA8D = 92C118B70F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B80F8ED54C0048CA8D = 92C118B80F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118B90F8ED54C0048CA8D = 92C118B90F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118BA0F8ED54C0048CA8D = 92C118BA0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118BB0F8ED54C0048CA8D = 92C118BB0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118BC0F8ED54C0048CA8D = 92C118BC0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118BD0F8ED54C0048CA8D = 92C118BD0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118BE0F8ED54C0048CA8D = 92C118BE0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118BF0F8ED54C0048CA8D = 92C118BF0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C00F8ED54C0048CA8D = 92C118C00F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C10F8ED54C0048CA8D = 92C118C10F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C20F8ED54C0048CA8D = 92C118C20F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C30F8ED54C0048CA8D = 92C118C30F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C40F8ED54C0048CA8D = 92C118C40F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C50F8ED54C0048CA8D = 92C118C50F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C70F8ED54C0048CA8D = 92C118C70F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C80F8ED54C0048CA8D = 92C118C80F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118C90F8ED54C0048CA8D = 92C118C90F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118CA0F8ED54C0048CA8D = 92C118CA0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118CB0F8ED54C0048CA8D = 92C118CB0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118CC0F8ED54C0048CA8D = 92C118CC0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118CD0F8ED54C0048CA8D = 92C118CD0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118CE0F8ED54C0048CA8D = 92C118CE0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118CF0F8ED54C0048CA8D = 92C118CF0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D00F8ED54C0048CA8D = 92C118D00F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D10F8ED54C0048CA8D = 92C118D10F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D20F8ED54C0048CA8D = 92C118D20F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D30F8ED54C0048CA8D = 92C118D30F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D40F8ED54C0048CA8D = 92C118D40F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D50F8ED54C0048CA8D = 92C118D50F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D60F8ED54C0048CA8D = 92C118D60F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D70F8ED54C0048CA8D = 92C118D70F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D80F8ED54C0048CA8D = 92C118D80F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118D90F8ED54C0048CA8D = 92C118D90F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118DA0F8ED54C0048CA8D = 92C118DA0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118DB0F8ED54C0048CA8D = 92C118DB0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118DC0F8ED54C0048CA8D = 92C118DC0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118DD0F8ED54C0048CA8D = 92C118DD0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118DE0F8ED54C0048CA8D = 92C118DE0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118DF0F8ED54C0048CA8D = 92C118DF0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E00F8ED54C0048CA8D = 92C118E00F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E10F8ED54C0048CA8D = 92C118E10F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E20F8ED54C0048CA8D = 92C118E20F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E30F8ED54C0048CA8D = 92C118E30F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E40F8ED54C0048CA8D = 92C118E40F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E50F8ED54C0048CA8D = 92C118E50F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E60F8ED54C0048CA8D = 92C118E60F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E70F8ED54C0048CA8D = 92C118E70F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E80F8ED54C0048CA8D = 92C118E80F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118E90F8ED54C0048CA8D = 92C118E90F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118EA0F8ED54C0048CA8D = 92C118EA0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C118EB0F8ED54C0048CA8D = 92C118EB0F8ED54C0048CA8D /* PBXTextBookmark */;
+ 92C11A090F8ED9F50048CA8D = 92C11A090F8ED9F50048CA8D /* PBXTextBookmark */;
+ 92C11A0A0F8ED9F50048CA8D = 92C11A0A0F8ED9F50048CA8D /* PBXTextBookmark */;
+ 92C11A0B0F8ED9F50048CA8D = 92C11A0B0F8ED9F50048CA8D /* PBXTextBookmark */;
+ 92C11A0E0F8ED9F50048CA8D = 92C11A0E0F8ED9F50048CA8D /* PBXTextBookmark */;
+ 92C11A0F0F8ED9F50048CA8D = 92C11A0F0F8ED9F50048CA8D /* PBXTextBookmark */;
+ 92C11A100F8ED9F50048CA8D = 92C11A100F8ED9F50048CA8D /* PBXTextBookmark */;
+ 92C11A110F8ED9F50048CA8D = 92C11A110F8ED9F50048CA8D /* PBXBookmark */;
+ 92C11A200F8EDAB80048CA8D = 92C11A200F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A220F8EDAB80048CA8D = 92C11A220F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A230F8EDAB80048CA8D = 92C11A230F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A240F8EDAB80048CA8D = 92C11A240F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A250F8EDAB80048CA8D = 92C11A250F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A260F8EDAB80048CA8D = 92C11A260F8EDAB80048CA8D /* PBXTextBookmark */;
+ 92C11A270F8EDAB80048CA8D = 92C11A270F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A280F8EDAB80048CA8D = 92C11A280F8EDAB80048CA8D /* PBXTextBookmark */;
+ 92C11A2A0F8EDAB80048CA8D = 92C11A2A0F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A2B0F8EDAB80048CA8D = 92C11A2B0F8EDAB80048CA8D /* PBXTextBookmark */;
+ 92C11A2C0F8EDAB80048CA8D = 92C11A2C0F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A2D0F8EDAB80048CA8D = 92C11A2D0F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A2E0F8EDAB80048CA8D = 92C11A2E0F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A2F0F8EDAB80048CA8D = 92C11A2F0F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A300F8EDAB80048CA8D = 92C11A300F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A310F8EDAB80048CA8D = 92C11A310F8EDAB80048CA8D /* PBXTextBookmark */;
+ 92C11A320F8EDAB80048CA8D = 92C11A320F8EDAB80048CA8D /* PBXBookmark */;
+ 92C11A330F8EDAB80048CA8D = 92C11A330F8EDAB80048CA8D /* PBXTextBookmark */;
+ 92C11A3B0F8EDAF10048CA8D = 92C11A3B0F8EDAF10048CA8D /* PBXBookmark */;
+ 92C11A3E0F8EDAF10048CA8D = 92C11A3E0F8EDAF10048CA8D /* PBXBookmark */;
+ 92C11A3F0F8EDAF10048CA8D = 92C11A3F0F8EDAF10048CA8D /* PBXTextBookmark */;
+ 92C11A410F8EDB000048CA8D = 92C11A410F8EDB000048CA8D /* PBXBookmark */;
+ 92C11A420F8EDB000048CA8D = 92C11A420F8EDB000048CA8D /* PBXTextBookmark */;
+ 92C11A430F8EDB000048CA8D = 92C11A430F8EDB000048CA8D /* PBXBookmark */;
+ 92C11A440F8EDB000048CA8D = 92C11A440F8EDB000048CA8D /* PBXTextBookmark */;
};
sourceControlManager = 92BC3EC80BAEE3C8000DAB7F /* Source Control */;
userBuildSettings = {
};
};
- 8D0C4E890486CD37000505A6 /* themanaworld */ = {
+ 8D0C4E890486CD37000505A6 /* themanaworld-eathena */ = {
activeExec = 0;
executables = (
- 92BC3EBC0BAEE3BB000DAB7F /* themanaworld */,
+ 92BC3EBC0BAEE3BB000DAB7F /* themanaworld-eathena */,
);
};
+ 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2926}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 930}";
+ };
+ };
92024E740CF1DCF6006B55CB /* imageloader.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {568, 1400}}";
@@ -175,12 +476,54 @@
};
92037A190ED2035A00D3712D /* SDLMain.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {802, 506}}";
- sepNavSelRange = "{0, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 310}}";
+ sepNavSelRange = "{307, 0}";
sepNavVisRange = "{0, 307}";
sepNavWindowFrame = "{{15, 389}, {861, 634}}";
};
};
+ 922CD9560E3D00900074C50E /* npcdb.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1708}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 867}";
+ };
+ };
+ 922CD95D0E3D01080074C50E /* shopitem.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1148}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{81, 832}";
+ };
+ };
+ 924A39E80C0784280066885E /* animationparticle.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 644}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 890}";
+ };
+ };
+ 924A39EA0C0784280066885E /* imageparticle.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 910}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 865}";
+ };
+ };
+ 924A39EC0C0784280066885E /* particle.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 5152}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{10130, 406}";
+ };
+ };
+ 924A39EE0C0784280066885E /* particleemitter.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {606, 5642}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{13703, 810}";
+ };
+ };
924A42600C0874D00066885E /* Info.plist */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {674, 474}}";
@@ -190,34 +533,180 @@
sepNavWindowFrame = "{{192, 99}, {602, 602}}";
};
};
- 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */ = {
+ 925350010BC12A3200115FD5 /* imageset.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {633, 1302}}";
- sepNavSelRange = "{1424, 0}";
- sepNavVisRange = "{1251, 209}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 742}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 870}";
+ };
+ };
+ 925468F90F8EB65C00B4C3A3 /* themanaworld-tmwserv */ = {
+ activeExec = 0;
+ executables = (
+ 925468FB0F8EB65C00B4C3A3 /* themanaworld-tmwserv */,
+ );
+ };
+ 925468FB0F8EB65C00B4C3A3 /* themanaworld-tmwserv */ = {
+ isa = PBXExecutable;
+ activeArgIndices = (
+ );
+ argumentStrings = (
+ );
+ autoAttachOnCrash = 1;
+ breakpointsEnabled = 0;
+ configStateDict = {
+ };
+ customDataFormattersEnabled = 1;
+ debuggerPlugin = GDBDebugging;
+ disassemblyDisplayState = 0;
+ dylibVariantSuffix = "";
+ enableDebugStr = 1;
+ environmentEntries = (
+ );
+ executableSystemSymbolLevel = 0;
+ executableUserSymbolLevel = 0;
+ libgmallocEnabled = 0;
+ name = "themanaworld-tmwserv";
+ savedGlobals = {
+ };
+ sourceDirectories = (
+ );
+ variableFormatDictionary = {
};
};
- 927F625B0ED4F41700D919E6 /* PBXTextBookmark */ = {
+ 925469020F8EB70A00B4C3A3 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 92037A190ED2035A00D3712D /* SDLMain.h */;
- name = "SDLMain.h: 1";
+ fRef = 92BC3F150BAEE55A000DAB7F /* gui.cpp */;
+ name = "gui.cpp: 109";
+ rLen = 62;
+ rLoc = 2995;
+ rType = 0;
+ vrLen = 712;
+ vrLoc = 2656;
+ };
+ 9254690B0F8EB80A00B4C3A3 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FB50BAEE55B000DAB7F /* posix.c */;
+ name = "posix.c: 280";
rLen = 0;
- rLoc = 0;
+ rLoc = 6658;
rType = 0;
- vrLen = 307;
+ vrLen = 730;
+ vrLoc = 6357;
+ };
+ 926A29440F23BD88005D6466 /* layout.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4606}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{1095, 420}";
+ };
+ };
+ 926A294E0F23BD9E005D6466 /* npcintegerdialog.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1988}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 872}";
+ };
+ };
+ 926A29550F23BD9E005D6466 /* truetypefont.h */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {492, 1022}}";
+ sepNavSelRange = "{1050, 0}";
+ sepNavVisRange = "{974, 153}";
+ };
+ };
+ 926A29840F23C1C8005D6466 /* windows.txt */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 252}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 334}";
+ };
+ };
+ 926A298A0F23C7CF005D6466 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */;
+ name = "setup_video.cpp: 333";
+ rLen = 0;
+ rLoc = 11514;
+ rType = 0;
+ vrLen = 972;
+ vrLoc = 9481;
+ };
+ 926A29A00F23CA6D005D6466 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926A29550F23BD9E005D6466 /* truetypefont.h */;
+ name = "truetypefont.h: 33";
+ rLen = 0;
+ rLoc = 1050;
+ rType = 0;
+ vrLen = 942;
vrLoc = 0;
};
- 927F625C0ED4F41700D919E6 /* PBXTextBookmark */ = {
+ 926A29A10F23CA6D005D6466 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 926A297F0F23C18E005D6466 /* tabselected.png */;
+ };
+ 926A29A20F23CA6D005D6466 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 926A297E0F23C18E005D6466 /* tab.png */;
+ };
+ 926A29A40F23CA6D005D6466 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */;
- name = "SDLMain.m: 14";
+ fRef = 926A29550F23BD9E005D6466 /* truetypefont.h */;
+ name = "truetypefont.h: 33";
rLen = 0;
- rLoc = 440;
+ rLoc = 1050;
rType = 0;
- vrLen = 759;
+ vrLen = 942;
+ vrLoc = 0;
+ };
+ 926A29A50F23CA6D005D6466 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 926A297E0F23C18E005D6466 /* tab.png */;
+ };
+ 926A29A60F23CA6D005D6466 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 926A297F0F23C18E005D6466 /* tabselected.png */;
+ };
+ 926A29A70F23CA6D005D6466 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926A29840F23C1C8005D6466 /* windows.txt */;
+ name = "windows.txt: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 539;
vrLoc = 0;
};
- 927F625D0ED4F41700D919E6 /* PlistBookmark */ = {
+ 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1260}}";
+ sepNavSelRange = "{1424, 0}";
+ sepNavVisRange = "{1131, 336}";
+ };
+ };
+ 926F9D430DB00AFC00AACD26 /* itemshortcutwindow.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 980}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{568, 702}";
+ };
+ };
+ 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2352}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{1954, 492}";
+ };
+ };
+ 9273BE060EF33FB3008E56E1 /* statuseffect.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2394}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 853}";
+ };
+ };
+ 9273BE350EF34050008E56E1 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 924A42600C0874D00066885E /* Info.plist */;
fallbackIsa = PBXBookmark;
@@ -228,6 +717,16 @@
rLen = 0;
rLoc = 2147483647;
};
+ 9275F19F0F4B6264000E3DFD /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F7A0BAEE55B000DAB7F /* main.h */;
+ name = "main.h: 31";
+ rLen = 0;
+ rLoc = 976;
+ rType = 0;
+ vrLen = 429;
+ vrLoc = 690;
+ };
927F625E0ED4F41700D919E6 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 924A42600C0874D00066885E /* Info.plist */;
@@ -250,70 +749,768 @@
vrLen = 307;
vrLoc = 0;
};
- 927F62600ED4F41700D919E6 /* PBXTextBookmark */ = {
+ 928B50D90F2FB5070011C755 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */;
- name = "SDLMain.m: 14";
+ fRef = 926A29840F23C1C8005D6466 /* windows.txt */;
+ name = "windows.txt: 1";
rLen = 0;
- rLoc = 440;
+ rLoc = 0;
rType = 0;
- vrLen = 635;
- vrLoc = 124;
+ vrLen = 334;
+ vrLoc = 0;
};
- 927F62610ED4F41700D919E6 /* PlistBookmark */ = {
- isa = PlistBookmark;
- fRef = 924A42600C0874D00066885E /* Info.plist */;
- fallbackIsa = PBXBookmark;
- isK = 0;
- kPath = (
- NSPrincipalClass,
- );
- name = /Users/garfield/programming/tmwclient/Info.plist;
+ 928B50ED0F2FB6090011C755 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 928B50E40F2FB5430011C755 /* bubble.png */;
+ };
+ 928B50EE0F2FB6090011C755 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F790BAEE55B000DAB7F /* main.cpp */;
+ name = "main.cpp: 27";
rLen = 0;
- rLoc = 2147483647;
+ rLoc = 935;
+ rType = 0;
+ vrLen = 768;
+ vrLoc = 12958;
+ };
+ 928B50EF0F2FB6090011C755 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 928B50E40F2FB5430011C755 /* bubble.png */;
};
- 927F62620ED4F41700D919E6 /* PBXTextBookmark */ = {
+ 928B50F70F2FB6AD0011C755 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */;
- name = "SDLMain.m: 14";
+ fRef = 92BC3F150BAEE55A000DAB7F /* gui.cpp */;
+ name = "gui.cpp: 109";
+ rLen = 62;
+ rLoc = 2995;
+ rType = 0;
+ vrLen = 700;
+ vrLoc = 2635;
+ };
+ 928B511B0F2FBD470011C755 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92037A190ED2035A00D3712D /* SDLMain.h */;
+ name = "SDLMain.h: 12";
rLen = 0;
- rLoc = 440;
+ rLoc = 307;
rType = 0;
- vrLen = 643;
- vrLoc = 7053;
+ vrLen = 307;
+ vrLoc = 0;
};
- 927F62630ED4F41700D919E6 /* PlistBookmark */ = {
- isa = PlistBookmark;
- fRef = 924A42600C0874D00066885E /* Info.plist */;
- fallbackIsa = PBXBookmark;
- isK = 0;
- kPath = (
- );
- name = /Users/garfield/programming/tmwclient/Info.plist;
+ 928B511C0F2FBD470011C755 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F790BAEE55B000DAB7F /* main.cpp */;
+ name = "main.cpp: 463";
rLen = 0;
- rLoc = 2147483647;
+ rLoc = 13309;
+ rType = 0;
+ vrLen = 893;
+ vrLoc = 20296;
};
- 927F62640ED4F41700D919E6 /* PBXTextBookmark */ = {
+ 928B511F0F2FBD470011C755 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */;
- name = "SDLMain.m: 14";
+ fRef = 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */;
+ name = "animatedsprite.cpp: 1";
rLen = 0;
- rLoc = 440;
+ rLoc = 0;
rType = 0;
- vrLen = 759;
+ vrLen = 866;
vrLoc = 0;
};
- 927F62650ED4F41700D919E6 /* PlistBookmark */ = {
- isa = PlistBookmark;
- fRef = 924A42600C0874D00066885E /* Info.plist */;
- fallbackIsa = PBXBookmark;
- isK = 0;
- kPath = (
- CFBundleVersion,
- );
- name = /Users/garfield/programming/tmwclient/Info.plist;
+ 928B51210F2FBD470011C755 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F7A0BAEE55B000DAB7F /* main.h */;
+ name = "main.h: 32";
rLen = 0;
- rLoc = 2147483647;
+ rLoc = 1027;
+ rType = 0;
+ vrLen = 329;
+ vrLoc = 852;
+ };
+ 92A244930F935DA900B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 520;
+ vrLoc = 1946;
+ };
+ 92A244970F935DDE00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 520;
+ vrLoc = 1946;
+ };
+ 92A244B50F935FB400B7719B /* container.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 434}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 873}";
+ };
+ };
+ 92A245C00F93612C00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 520;
+ vrLoc = 1946;
+ };
+ 92A245C70F93628600B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 520;
+ vrLoc = 1946;
+ };
+ 92A245C80F93628600B7719B /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92A244B50F935FB400B7719B /* container.cpp */;
+ };
+ 92A245C90F93628600B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 520;
+ vrLoc = 1946;
+ };
+ 92A245CA0F93628600B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A244B50F935FB400B7719B /* container.cpp */;
+ name = "container.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92A245CE0F93637100B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A244B50F935FB400B7719B /* container.cpp */;
+ name = "container.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92A245DC0F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F210BAEE55A000DAB7F /* itemcontainer.cpp */;
+ name = "itemcontainer.cpp: 236";
+ rLen = 11;
+ rLoc = 6725;
+ rType = 0;
+ vrLen = 294;
+ vrLoc = 6544;
+ };
+ 92A245DD0F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F040BAEE55A000DAB7F /* chat.h */;
+ name = "chat.h: 148";
+ rLen = 11;
+ rLoc = 3525;
+ rType = 0;
+ vrLen = 377;
+ vrLoc = 3319;
+ };
+ 92A245DE0F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */;
+ name = "chat.cpp: 387";
+ rLen = 11;
+ rLoc = 9650;
+ rType = 0;
+ vrLen = 303;
+ vrLoc = 9480;
+ };
+ 92A245DF0F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */;
+ name = "popupmenu.cpp: 88";
+ rLen = 2;
+ rLoc = 2421;
+ rType = 0;
+ vrLen = 581;
+ vrLoc = 2133;
+ };
+ 92A245E00F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */;
+ name = "browserbox.cpp: 80";
+ rLen = 2;
+ rLoc = 2035;
+ rType = 0;
+ vrLen = 498;
+ vrLoc = 1954;
+ };
+ 92A245E10F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ rLen = 2;
+ rLoc = 6851;
+ rType = 0;
+ };
+ 92A245E20F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */;
+ name = "popupmenu.cpp: 289";
+ rLen = 11;
+ rLoc = 8260;
+ rType = 0;
+ vrLen = 309;
+ vrLoc = 8147;
+ };
+ 92A245E30F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F210BAEE55A000DAB7F /* itemcontainer.cpp */;
+ name = "itemcontainer.cpp: 236";
+ rLen = 11;
+ rLoc = 6725;
+ rType = 0;
+ vrLen = 294;
+ vrLoc = 6544;
+ };
+ 92A245E40F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F040BAEE55A000DAB7F /* chat.h */;
+ name = "chat.h: 148";
+ rLen = 11;
+ rLoc = 3525;
+ rType = 0;
+ vrLen = 377;
+ vrLoc = 3319;
+ };
+ 92A245E50F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */;
+ name = "chat.cpp: 387";
+ rLen = 11;
+ rLoc = 9650;
+ rType = 0;
+ vrLen = 303;
+ vrLoc = 9480;
+ };
+ 92A245E60F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */;
+ name = "popupmenu.cpp: 88";
+ rLen = 2;
+ rLoc = 2421;
+ rType = 0;
+ vrLen = 581;
+ vrLoc = 2133;
+ };
+ 92A245E70F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */;
+ name = "browserbox.cpp: 80";
+ rLen = 2;
+ rLoc = 2035;
+ rType = 0;
+ vrLen = 498;
+ vrLoc = 1954;
+ };
+ 92A245E80F93670500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 243";
+ rLen = 2;
+ rLoc = 6851;
+ rType = 0;
+ vrLen = 558;
+ vrLoc = 5930;
+ };
+ 92A245EB0F93672300B7719B /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ };
+ 92A245EC0F9368CA00B7719B /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ };
+ 92A245EE0F936C4600B7719B /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C115E90F8EBFA60048CA8D /* stringutils.h */;
+ };
+ 92A245F20F936EA500B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */;
+ name = "browserbox.cpp: 80";
+ rLen = 2;
+ rLoc = 2035;
+ rType = 0;
+ vrLen = 460;
+ vrLoc = 1948;
+ };
+ 92A245F50F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A244B50F935FB400B7719B /* container.cpp */;
+ name = "container.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92A245F60F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115260F8EBBD50048CA8D /* textfield.cpp */;
+ name = "textfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 593;
+ vrLoc = 5012;
+ };
+ 92A245F70F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1154B0F8EBD000048CA8D /* textbox.cpp */;
+ name = "textbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 523;
+ vrLoc = 3722;
+ };
+ 92A245F80F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */;
+ name = "textdialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 481;
+ vrLoc = 2308;
+ };
+ 92A245F90F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E40F8EBF9A0048CA8D /* itemlinkhandler.cpp */;
+ name = "itemlinkhandler.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 463;
+ vrLoc = 1129;
+ };
+ 92A245FA0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F230BAEE55A000DAB7F /* linkhandler.h */;
+ name = "linkhandler.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 325;
+ vrLoc = 832;
+ };
+ 92A245FB0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */;
+ name = "chat.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 586;
+ vrLoc = 9103;
+ };
+ 92A245FC0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */;
+ name = "popupmenu.cpp: 289";
+ rLen = 11;
+ rLoc = 8260;
+ rType = 0;
+ vrLen = 464;
+ vrLoc = 7938;
+ };
+ 92A245FD0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 168";
+ rLen = 41;
+ rLoc = 4512;
+ rType = 0;
+ vrLen = 436;
+ vrLoc = 4327;
+ };
+ 92A245FE0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "error: expected primary-expression before '.' token";
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ rLen = 0;
+ rLoc = 73;
+ rType = 1;
+ };
+ 92A245FF0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A244B50F935FB400B7719B /* container.cpp */;
+ name = "container.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92A246000F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */;
+ name = "chat.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 586;
+ vrLoc = 9103;
+ };
+ 92A246010F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115260F8EBBD50048CA8D /* textfield.cpp */;
+ name = "textfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 593;
+ vrLoc = 5012;
+ };
+ 92A246020F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1154B0F8EBD000048CA8D /* textbox.cpp */;
+ name = "textbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 523;
+ vrLoc = 3722;
+ };
+ 92A246030F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */;
+ name = "textdialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 481;
+ vrLoc = 2308;
+ };
+ 92A246040F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E40F8EBF9A0048CA8D /* itemlinkhandler.cpp */;
+ name = "itemlinkhandler.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 463;
+ vrLoc = 1129;
+ };
+ 92A246050F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F230BAEE55A000DAB7F /* linkhandler.h */;
+ name = "linkhandler.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 325;
+ vrLoc = 832;
+ };
+ 92A246060F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */;
+ name = "chat.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 586;
+ vrLoc = 9103;
+ };
+ 92A246070F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */;
+ name = "popupmenu.cpp: 289";
+ rLen = 11;
+ rLoc = 8260;
+ rType = 0;
+ vrLen = 464;
+ vrLoc = 7938;
+ };
+ 92A246080F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 168";
+ rLen = 41;
+ rLoc = 4512;
+ rType = 0;
+ vrLen = 436;
+ vrLoc = 4327;
+ };
+ 92A246090F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 70";
+ rLen = 0;
+ rLoc = 1984;
+ rType = 0;
+ vrLen = 405;
+ vrLoc = 1718;
+ };
+ 92A2460C0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E90F8EBFA60048CA8D /* stringutils.h */;
+ name = "stringutils.h: 74";
+ rLen = 0;
+ rLoc = 2139;
+ rType = 0;
+ vrLen = 1067;
+ vrLoc = 1137;
+ };
+ 92A2460F0F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 82";
+ rLen = 0;
+ rLoc = 2000;
+ rType = 0;
+ vrLen = 827;
+ vrLoc = 1298;
+ };
+ 92A246120F936EBC00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 168";
+ rLen = 0;
+ rLoc = 4533;
+ rType = 0;
+ vrLen = 1015;
+ vrLoc = 3734;
+ };
+ 92A246190F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 167";
+ rLen = 0;
+ rLoc = 4498;
+ rType = 0;
+ vrLen = 408;
+ vrLoc = 4358;
+ };
+ 92A2461A0F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 70";
+ rLen = 0;
+ rLoc = 1984;
+ rType = 0;
+ vrLen = 408;
+ vrLoc = 1717;
+ };
+ 92A2461B0F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 70";
+ rLen = 0;
+ rLoc = 1984;
+ rType = 0;
+ vrLen = 407;
+ vrLoc = 1718;
+ };
+ 92A2461C0F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 167";
+ rLen = 0;
+ rLoc = 4498;
+ rType = 0;
+ vrLen = 408;
+ vrLoc = 4358;
+ };
+ 92A2461D0F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 72";
+ rLen = 0;
+ rLoc = 1941;
+ rType = 0;
+ vrLen = 494;
+ vrLoc = 1510;
+ };
+ 92A2461E0F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E90F8EBFA60048CA8D /* stringutils.h */;
+ name = "stringutils.h: 74";
+ rLen = 0;
+ rLoc = 2139;
+ rType = 0;
+ vrLen = 1067;
+ vrLoc = 1137;
+ };
+ 92A2461F0F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 75";
+ rLen = 0;
+ rLoc = 2000;
+ rType = 0;
+ vrLen = 857;
+ vrLoc = 1147;
+ };
+ 92A246200F93760E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 168";
+ rLen = 0;
+ rLoc = 4533;
+ rType = 0;
+ vrLen = 1032;
+ vrLoc = 3734;
+ };
+ 92A246220F93767700B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */;
+ name = "browserbox.cpp: 80";
+ rLen = 2;
+ rLoc = 2035;
+ rType = 0;
+ vrLen = 504;
+ vrLoc = 1948;
+ };
+ 92A246290F9377B400B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 72";
+ rLen = 0;
+ rLoc = 1941;
+ rType = 0;
+ vrLen = 490;
+ vrLoc = 1510;
+ };
+ 92A2462A0F9377B400B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 168";
+ rLen = 0;
+ rLoc = 4533;
+ rType = 0;
+ vrLen = 1118;
+ vrLoc = 4358;
+ };
+ 92A2462B0F9377B400B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 75";
+ rLen = 0;
+ rLoc = 2000;
+ rType = 0;
+ vrLen = 851;
+ vrLoc = 1147;
+ };
+ 92A2462C0F9377B400B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E90F8EBFA60048CA8D /* stringutils.h */;
+ name = "stringutils.h: 74";
+ rLen = 0;
+ rLoc = 2139;
+ rType = 0;
+ vrLen = 1067;
+ vrLoc = 1137;
+ };
+ 92A246310F93782E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 72";
+ rLen = 0;
+ rLoc = 1941;
+ rType = 0;
+ vrLen = 493;
+ vrLoc = 1510;
+ };
+ 92A246320F93782E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 168";
+ rLen = 0;
+ rLoc = 4533;
+ rType = 0;
+ vrLen = 1118;
+ vrLoc = 4358;
+ };
+ 92A246330F93782E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 75";
+ rLen = 0;
+ rLoc = 2000;
+ rType = 0;
+ vrLen = 854;
+ vrLoc = 1147;
+ };
+ 92A246340F93782E00B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E90F8EBFA60048CA8D /* stringutils.h */;
+ name = "stringutils.h: 74";
+ rLen = 0;
+ rLoc = 2139;
+ rType = 0;
+ vrLen = 1067;
+ vrLoc = 1137;
+ };
+ 92A246360F9378E100B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 72";
+ rLen = 0;
+ rLoc = 1941;
+ rType = 0;
+ vrLen = 493;
+ vrLoc = 1510;
+ };
+ 92A246370F9378E100B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115390F8EBC730048CA8D /* chattab.cpp */;
+ name = "chattab.cpp: 168";
+ rLen = 0;
+ rLoc = 4533;
+ rType = 0;
+ vrLen = 1118;
+ vrLoc = 4358;
+ };
+ 92A246380F9378E100B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E90F8EBFA60048CA8D /* stringutils.h */;
+ name = "stringutils.h: 74";
+ rLen = 0;
+ rLoc = 2139;
+ rType = 0;
+ vrLen = 1067;
+ vrLoc = 1137;
+ };
+ 92A246390F9378E100B7719B /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */;
+ name = "stringutils.cpp: 75";
+ rLen = 0;
+ rLoc = 2000;
+ rType = 0;
+ vrLen = 815;
+ vrLoc = 1188;
+ };
+ 92A4CC9D0D1C622E00CA28FB /* dye.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3318}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 865}";
+ };
};
92A4CCE70D1DA58D00CA28FB /* zip.c */ = {
uiCtxt = {
@@ -333,21 +1530,18 @@
};
92A4CCF20D1DA5C600CA28FB /* macosx.c */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {720, 5558}}";
+ sepNavIntBoundsRect = "{{0, 0}, {720, 5670}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 961}";
+ sepNavVisRange = "{0, 503}";
sepNavWindowFrame = "{{180, 8}, {627, 714}}";
};
};
- 92B1EBDE0ED4E43D009AF197 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 92BC3F660BAEE55B000DAB7F /* viewport.cpp */;
- name = "viewport.cpp: 261";
- rLen = 63;
- rLoc = 7873;
- rType = 0;
- vrLen = 780;
- vrLoc = 7501;
+ 92A4CCFB0D1DA89800CA28FB /* physfs_unicode.c */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 6496}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 689}";
+ };
};
92B1EBE00ED4E43D009AF197 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
@@ -389,14 +1583,14 @@
vrLen = 692;
vrLoc = 434;
};
- 92BC3EBC0BAEE3BB000DAB7F /* themanaworld */ = {
+ 92BC3EBC0BAEE3BB000DAB7F /* themanaworld-eathena */ = {
isa = PBXExecutable;
activeArgIndices = (
);
argumentStrings = (
);
autoAttachOnCrash = 1;
- breakpointsEnabled = 0;
+ breakpointsEnabled = 1;
configStateDict = {
};
customDataFormattersEnabled = 1;
@@ -409,7 +1603,7 @@
executableSystemSymbolLevel = 0;
executableUserSymbolLevel = 0;
libgmallocEnabled = 0;
- name = themanaworld;
+ name = "themanaworld-eathena";
savedGlobals = {
};
sourceDirectories = (
@@ -429,20 +1623,34 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2380}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 887}";
+ };
+ };
92BC3ECC0BAEE55A000DAB7F /* being.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {543, 6776}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 14882}}";
sepNavSelRange = "{2724, 0}";
- sepNavVisRange = "{2276, 537}";
+ sepNavVisRange = "{2233, 609}";
sepNavVisRect = "{{0, 1497}, {557, 473}}";
sepNavWindowFrame = "{{100, 183}, {602, 602}}";
};
};
+ 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4270}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 864}";
+ };
+ };
92BC3EE40BAEE55A000DAB7F /* engine.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {720, 1848}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1848}}";
sepNavSelRange = "{3021, 9}";
- sepNavVisRange = "{2828, 277}";
+ sepNavVisRange = "{2650, 873}";
sepNavWindowFrame = "{{64, 113}, {627, 714}}";
};
};
@@ -456,9 +1664,9 @@
};
92BC3EEC0BAEE55A000DAB7F /* game.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {633, 11256}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 14784}}";
sepNavSelRange = "{24258, 0}";
- sepNavVisRange = "{18439, 446}";
+ sepNavVisRange = "{17899, 1569}";
sepNavVisRect = "{{0, 4423}, {734, 180}}";
sepNavWindowFrame = "{{134, 50}, {627, 714}}";
};
@@ -481,12 +1689,11 @@
sepNavWindowFrame = "{{192, 99}, {602, 602}}";
};
};
- 92BC3EF70BAEE55A000DAB7F /* button.cpp */ = {
+ 92BC3EF90BAEE55A000DAB7F /* buy.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {557, 2044}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3892}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 1537}, {557, 473}}";
- sepNavWindowFrame = "{{54, 225}, {602, 602}}";
+ sepNavVisRange = "{1244, 744}";
};
};
92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */ = {
@@ -497,6 +1704,28 @@
sepNavWindowFrame = "{{54, 225}, {602, 602}}";
};
};
+ 92BC3EFD0BAEE55A000DAB7F /* char_select.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 5236}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 867}";
+ };
+ };
+ 92BC3F030BAEE55A000DAB7F /* chat.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {568, 6034}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{8243, 1101}";
+ sepNavWindowFrame = "{{70, 113}, {627, 714}}";
+ };
+ };
+ 92BC3F040BAEE55A000DAB7F /* chat.h */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {720, 2898}}";
+ sepNavSelRange = "{3525, 11}";
+ sepNavVisRange = "{3319, 377}";
+ };
+ };
92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {720, 1428}}";
@@ -504,6 +1733,13 @@
sepNavVisRange = "{2223, 508}";
};
};
+ 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3948}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 870}";
+ };
+ };
92BC3F120BAEE55A000DAB7F /* focushandler.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {568, 952}}";
@@ -514,20 +1750,56 @@
};
92BC3F150BAEE55A000DAB7F /* gui.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {568, 3234}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{2374, 1272}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3556}}";
+ sepNavSelRange = "{2995, 62}";
+ sepNavVisRange = "{2656, 712}";
sepNavWindowFrame = "{{157, 29}, {627, 714}}";
};
};
92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {557, 3486}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4032}}";
sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 871}";
sepNavVisRect = "{{0, 2371}, {557, 473}}";
sepNavWindowFrame = "{{100, 183}, {602, 602}}";
};
};
+ 92BC3F210BAEE55A000DAB7F /* itemcontainer.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {720, 5824}}";
+ sepNavSelRange = "{6725, 11}";
+ sepNavVisRange = "{6544, 294}";
+ };
+ };
+ 92BC3F230BAEE55A000DAB7F /* linkhandler.h */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 588}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{832, 325}";
+ };
+ };
+ 92BC3F260BAEE55A000DAB7F /* login.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4648}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{1324, 962}";
+ };
+ };
+ 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2450}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 871}";
+ };
+ };
+ 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1736}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 866}";
+ };
+ };
92BC3F340BAEE55A000DAB7F /* ok_dialog.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {568, 980}}";
@@ -544,6 +1816,20 @@
sepNavWindowFrame = "{{65, 113}, {627, 714}}";
};
};
+ 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {654, 5026}}";
+ sepNavSelRange = "{8260, 11}";
+ sepNavVisRange = "{7938, 464}";
+ };
+ };
+ 92BC3F400BAEE55A000DAB7F /* register.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4186}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{1067, 578}";
+ };
+ };
92BC3F450BAEE55A000DAB7F /* sell.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {557, 3962}}";
@@ -552,27 +1838,57 @@
sepNavWindowFrame = "{{77, 204}, {602, 602}}";
};
};
+ 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1358}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 870}";
+ };
+ };
+ 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 8666}}";
+ sepNavSelRange = "{11514, 0}";
+ sepNavVisRange = "{9696, 791}";
+ sepNavWindowFrame = "{{15, 389}, {861, 634}}";
+ };
+ };
+ 92BC3F500BAEE55A000DAB7F /* shop.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1456}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{568, 470}";
+ };
+ };
+ 92BC3F520BAEE55A000DAB7F /* shoplistbox.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1736}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 884}";
+ };
+ };
92BC3F580BAEE55A000DAB7F /* status.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {557, 5530}}";
- sepNavSelRange = "{12685, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 5194}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 862}";
sepNavVisRect = "{{0, 3895}, {557, 473}}";
sepNavWindowFrame = "{{54, 225}, {602, 602}}";
};
};
92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {633, 6762}}";
- sepNavSelRange = "{9189, 0}";
- sepNavVisRange = "{9082, 354}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 6944}}";
+ sepNavSelRange = "{8181, 79}";
+ sepNavVisRange = "{7827, 1204}";
sepNavWindowFrame = "{{157, 29}, {627, 714}}";
};
};
92BC3F660BAEE55B000DAB7F /* viewport.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {511, 6706}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 6566}}";
sepNavSelRange = "{7873, 63}";
- sepNavVisRange = "{7501, 780}";
+ sepNavVisRange = "{7525, 763}";
sepNavVisRect = "{{0, 4144}, {732, 459}}";
sepNavWindowFrame = "{{61, 197}, {777, 588}}";
};
@@ -585,27 +1901,18 @@
sepNavWindowFrame = "{{153, 113}, {777, 588}}";
};
};
- 92BC3F680BAEE55B000DAB7F /* window.cpp */ = {
+ 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {557, 6580}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 6107}, {557, 473}}";
- sepNavWindowFrame = "{{100, 183}, {602, 602}}";
+ sepNavIntBoundsRect = "{{0, 0}, {558, 2072}}";
+ sepNavSelRange = "{1728, 0}";
+ sepNavVisRange = "{1514, 571}";
};
};
- 92BC3F690BAEE55B000DAB7F /* window.h */ = {
+ 92BC3F6F0BAEE55B000DAB7F /* item.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {557, 3878}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 784}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 533}, {557, 473}}";
- sepNavWindowFrame = "{{77, 204}, {602, 602}}";
- };
- };
- 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {633, 1904}}";
- sepNavSelRange = "{1728, 0}";
- sepNavVisRange = "{1653, 334}";
+ sepNavVisRange = "{0, 856}";
};
};
92BC3F700BAEE55B000DAB7F /* item.h */ = {
@@ -615,11 +1922,18 @@
sepNavVisRange = "{1727, 287}";
};
};
+ 92BC3F710BAEE55B000DAB7F /* joystick.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1988}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 886}";
+ };
+ };
92BC3F730BAEE55B000DAB7F /* localplayer.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {543, 6706}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 14952}}";
sepNavSelRange = "{6691, 0}";
- sepNavVisRange = "{6631, 622}";
+ sepNavVisRange = "{6596, 583}";
sepNavVisRect = "{{0, 3594}, {734, 180}}";
sepNavWindowFrame = "{{436, 128}, {602, 602}}";
};
@@ -634,25 +1948,26 @@
};
92BC3F790BAEE55B000DAB7F /* main.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {718, 12404}}";
- sepNavSelRange = "{958, 19}";
- sepNavVisRange = "{616, 747}";
+ sepNavIntBoundsRect = "{{0, 0}, {492, 14168}}";
+ sepNavSelRange = "{6449, 76}";
+ sepNavVisRange = "{6335, 282}";
sepNavVisRect = "{{0, 1289}, {732, 459}}";
sepNavWindowFrame = "{{100, 219}, {777, 588}}";
};
};
92BC3F7A0BAEE55B000DAB7F /* main.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {734, 1022}}";
- sepNavSelRange = "{989, 8}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1134}}";
+ sepNavSelRange = "{976, 0}";
+ sepNavVisRange = "{690, 429}";
sepNavVisRect = "{{0, 324}, {734, 180}}";
};
};
92BC3F7C0BAEE55B000DAB7F /* map.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {633, 6706}}";
+ sepNavIntBoundsRect = "{{0, 0}, {714, 9072}}";
sepNavSelRange = "{8349, 0}";
- sepNavVisRange = "{13918, 210}";
+ sepNavVisRange = "{13650, 903}";
sepNavVisRect = "{{0, 2184}, {732, 459}}";
sepNavWindowFrame = "{{107, 155}, {777, 588}}";
};
@@ -665,37 +1980,6 @@
sepNavWindowFrame = "{{84, 176}, {777, 588}}";
};
};
- 92BC3F810BAEE55B000DAB7F /* beinghandler.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {568, 5586}}";
- sepNavSelRange = "{1189, 0}";
- sepNavVisRange = "{567, 1104}";
- sepNavWindowFrame = "{{284, 87}, {627, 714}}";
- };
- };
- 92BC3F870BAEE55B000DAB7F /* chathandler.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {557, 1666}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 403}, {557, 473}}";
- sepNavWindowFrame = "{{261, 36}, {602, 602}}";
- };
- };
- 92BC3F890BAEE55B000DAB7F /* equipmenthandler.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {482, 3024}}";
- sepNavSelRange = "{6326, 0}";
- sepNavVisRect = "{{0, 544}, {453, 186}}";
- };
- };
- 92BC3F8B0BAEE55B000DAB7F /* inventoryhandler.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {568, 1946}}";
- sepNavSelRange = "{1765, 0}";
- sepNavVisRange = "{1454, 1476}";
- sepNavWindowFrame = "{{65, 113}, {627, 714}}";
- };
- };
92BC3F930BAEE55B000DAB7F /* messagehandler.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {557, 644}}";
@@ -712,43 +1996,11 @@
sepNavWindowFrame = "{{54, 225}, {602, 602}}";
};
};
- 92BC3F9A0BAEE55B000DAB7F /* network.h */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {482, 1470}}";
- sepNavSelRange = "{956, 21}";
- sepNavVisRect = "{{0, 292}, {453, 186}}";
- };
- };
- 92BC3F9D0BAEE55B000DAB7F /* playerhandler.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {557, 4858}}";
- sepNavSelRange = "{13406, 0}";
- sepNavVisRect = "{{0, 2215}, {557, 473}}";
- sepNavWindowFrame = "{{169, 120}, {602, 602}}";
- };
- };
- 92BC3F9F0BAEE55B000DAB7F /* protocol.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {633, 1120}}";
- sepNavSelRange = "{1206, 0}";
- sepNavVisRange = "{1930, 220}";
- sepNavVisRect = "{{0, 56}, {557, 473}}";
- sepNavWindowFrame = "{{192, 99}, {602, 602}}";
- };
- };
- 92BC3FA00BAEE55B000DAB7F /* protocol.h */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {584, 1568}}";
- sepNavSelRange = "{1647, 0}";
- sepNavVisRect = "{{0, 482}, {557, 473}}";
- sepNavWindowFrame = "{{215, 78}, {602, 602}}";
- };
- };
92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {568, 5012}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 6006}}";
sepNavSelRange = "{2418, 0}";
- sepNavVisRange = "{1719, 1239}";
+ sepNavVisRange = "{2076, 813}";
sepNavWindowFrame = "{{111, 71}, {627, 714}}";
};
};
@@ -771,9 +2023,9 @@
};
92BC3FAD0BAEE55B000DAB7F /* physfs_byteorder.c */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {568, 4424}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4340}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{1921, 2082}";
+ sepNavVisRange = "{1921, 1448}";
sepNavVisRect = "{{0, 0}, {734, 180}}";
sepNavWindowFrame = "{{134, 50}, {627, 714}}";
};
@@ -788,9 +2040,9 @@
};
92BC3FB50BAEE55B000DAB7F /* posix.c */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {568, 5642}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 5628}}";
sepNavSelRange = "{6658, 0}";
- sepNavVisRange = "{6143, 1239}";
+ sepNavVisRange = "{4434, 541}";
sepNavVisRect = "{{0, 0}, {734, 180}}";
sepNavWindowFrame = "{{65, 113}, {627, 714}}";
};
@@ -804,9 +2056,9 @@
};
92BC3FBA0BAEE55B000DAB7F /* player.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {543, 2870}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3808}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 1100}";
+ sepNavVisRange = "{0, 883}";
sepNavVisRect = "{{0, 2733}, {557, 473}}";
sepNavWindowFrame = "{{77, 204}, {602, 602}}";
};
@@ -819,14 +2071,63 @@
sepNavWindowFrame = "{{123, 162}, {602, 602}}";
};
};
+ 92BC3FBE0BAEE55B000DAB7F /* action.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 658}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 868}";
+ };
+ };
+ 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 924}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 876}";
+ };
+ };
+ 92BC3FC20BAEE55B000DAB7F /* animation.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 672}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{895, 431}";
+ };
+ };
92BC3FC90BAEE55B000DAB7F /* image.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {568, 5544}}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 6832}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{1527, 900}";
+ sepNavVisRange = "{1508, 480}";
sepNavWindowFrame = "{{179, 8}, {627, 714}}";
};
};
+ 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1456}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 873}";
+ };
+ };
+ 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4186}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 868}";
+ };
+ };
+ 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2380}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 871}";
+ };
+ };
+ 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1162}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 873}";
+ };
+ };
92BC3FD70BAEE55B000DAB7F /* music.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {568, 1274}}";
@@ -867,6 +2168,13 @@
sepNavWindowFrame = "{{133, 50}, {627, 714}}";
};
};
+ 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 714}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 873}";
+ };
+ };
92BC3FE20BAEE55B000DAB7F /* soundeffect.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {568, 1064}}";
@@ -875,6 +2183,20 @@
sepNavWindowFrame = "{{179, 8}, {627, 714}}";
};
};
+ 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 5866}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 871}";
+ };
+ };
+ 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2030}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{2054, 681}";
+ };
+ };
92BC3FEA0BAEE55B000DAB7F /* sound.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {568, 3066}}";
@@ -891,27 +2213,2283 @@
sepNavWindowFrame = "{{156, 29}, {627, 714}}";
};
};
- 92BC3FF20BAEE55B000DAB7F /* tostring.h */ = {
+ 92BC3FF40BAEE55B000DAB7F /* xml.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {633, 532}}";
- sepNavSelRange = "{1038, 0}";
- sepNavVisRange = "{962, 150}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1470}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 861}";
};
};
92BC40E50BAEF54B000DAB7F /* SDLMain.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {726, 3906}}";
- sepNavSelRange = "{3069, 0}";
- sepNavVisRange = "{2696, 949}";
+ sepNavIntBoundsRect = "{{0, 0}, {511, 5292}}";
+ sepNavSelRange = "{440, 0}";
+ sepNavVisRange = "{0, 754}";
sepNavWindowFrame = "{{583, 96}, {627, 714}}";
};
};
- 92BC416E0BAF664C000DAB7F /* ChangeLog */ = {
+ 92C115100F8EBB550048CA8D /* itempopup.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3178}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 929}";
+ };
+ };
+ 92C115140F8EBB830048CA8D /* listbox.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2142}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 871}";
+ };
+ };
+ 92C115160F8EBB830048CA8D /* scrollarea.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4256}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 874}";
+ };
+ };
+ 92C115180F8EBB830048CA8D /* slider.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2016}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 870}";
+ };
+ };
+ 92C115220F8EBBD50048CA8D /* inttextfield.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1274}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 876}";
+ };
+ };
+ 92C115240F8EBBD50048CA8D /* popup.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2366}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 917}";
+ };
+ };
+ 92C115260F8EBBD50048CA8D /* textfield.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3416}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{5012, 593}";
+ };
+ };
+ 92C1152F0F8EBC2B0048CA8D /* serverselectdialog.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1708}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{1498, 902}";
+ };
+ };
+ 92C115320F8EBC450048CA8D /* browserbox.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {720, 6020}}";
+ sepNavSelRange = "{2035, 2}";
+ sepNavVisRange = "{1948, 504}";
+ };
+ };
+ 92C115340F8EBC450048CA8D /* windowcontainer.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 490}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 879}";
+ };
+ };
+ 92C115390F8EBC730048CA8D /* chattab.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {568, 3976}}";
+ sepNavSelRange = "{4533, 0}";
+ sepNavVisRange = "{4358, 1118}";
+ };
+ };
+ 92C115450F8EBCD00048CA8D /* passwordfield.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 476}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 865}";
+ };
+ };
+ 92C115490F8EBD000048CA8D /* checkbox.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1498}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 872}";
+ };
+ };
+ 92C1154B0F8EBD000048CA8D /* textbox.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2002}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{3722, 523}";
+ };
+ };
+ 92C115500F8EBD250048CA8D /* label.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 518}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 863}";
+ };
+ };
+ 92C115990F8EBD900048CA8D /* emotedb.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2030}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 862}";
+ };
+ };
+ 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1316}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 918}";
+ };
+ };
+ 92C115A00F8EBDB20048CA8D /* units.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 3206}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 867}";
+ };
+ };
+ 92C115AD0F8EBE450048CA8D /* palette.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4872}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 934}";
+ };
+ };
+ 92C115B50F8EBE450048CA8D /* speechbubble.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1414}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 932}";
+ };
+ };
+ 92C115C10F8EBE950048CA8D /* gccontainer.cpp */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.cpp.cpp;
+ name = gccontainer.cpp;
+ path = /Users/garfield/programming/tmwclient/src/gui/widgets/gccontainer.cpp;
+ sourceTree = "<absolute>";
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 686}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 863}";
+ };
+ };
+ 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4536}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 872}";
+ };
+ };
+ 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1540}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 862}";
+ };
+ };
+ 92C115D90F8EBF530048CA8D /* radiobutton.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 1526}}";
+ sepNavSelRange = "{521, 0}";
+ sepNavVisRange = "{0, 875}";
+ };
+ };
+ 92C115E40F8EBF9A0048CA8D /* itemlinkhandler.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 854}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{1129, 463}";
+ };
+ };
+ 92C115E80F8EBFA60048CA8D /* stringutils.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {568, 1078}}";
+ sepNavSelRange = "{2000, 0}";
+ sepNavVisRange = "{1188, 815}";
+ };
+ };
+ 92C115E90F8EBFA60048CA8D /* stringutils.h */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {568, 1078}}";
+ sepNavSelRange = "{2139, 0}";
+ sepNavVisRange = "{1137, 1067}";
+ };
+ };
+ 92C115EC0F8EBFC20048CA8D /* channel.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 462}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 859}";
+ };
+ };
+ 92C116050F8EC0590048CA8D /* gui.xml */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 310}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 813}";
+ };
+ };
+ 92C116070F8EC0590048CA8D /* speechbubble.xml */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 310}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 806}";
+ };
+ };
+ 92C1161D0F8EC0950048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F580BAEE55A000DAB7F /* status.cpp */;
+ name = "status.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 862;
+ vrLoc = 0;
+ };
+ 92C1161E0F8EC0950048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 924A3E7B0C085ED70066885E /* resize.png */;
+ };
+ 92C116210F8EC0950048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F580BAEE55A000DAB7F /* status.cpp */;
+ name = "status.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 862;
+ vrLoc = 0;
+ };
+ 92C116220F8EC0950048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 924A3E7B0C085ED70066885E /* resize.png */;
+ };
+ 92C116230F8EC0950048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C116050F8EC0590048CA8D /* gui.xml */;
+ name = "gui.xml: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 813;
+ vrLoc = 0;
+ };
+ 92C116460F8EC61E0048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116010F8EC0590048CA8D /* circle-gray.png */;
+ };
+ 92C116490F8EC7EC0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */;
+ name = "SDLMain.m: 14";
+ rLen = 0;
+ rLoc = 440;
+ rType = 0;
+ vrLen = 754;
+ vrLoc = 0;
+ };
+ 92C1164B0F8EC7EC0048CA8D /* NSObjCRuntime.h */ = {
+ isa = PBXFileReference;
+ lastKnownFileType = sourcecode.c.h;
+ name = NSObjCRuntime.h;
+ path = /Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h;
+ sourceTree = "<absolute>";
+ };
+ 92C1164C0F8EC7EC0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */;
+ name = "SDLMain.m: 14";
+ rLen = 0;
+ rLoc = 440;
+ rType = 0;
+ vrLen = 754;
+ vrLoc = 0;
+ };
+ 92C116F70F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1164B0F8EC7EC0048CA8D /* NSObjCRuntime.h */;
+ name = "NSObjCRuntime.h: 124";
+ rLen = 27;
+ rLoc = 3897;
+ rType = 0;
+ vrLen = 585;
+ vrLoc = 3602;
+ };
+ 92C116F80F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115EC0F8EBFC20048CA8D /* channel.cpp */;
+ name = "channel.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 859;
+ vrLoc = 0;
+ };
+ 92C116F90F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FF40BAEE55B000DAB7F /* xml.cpp */;
+ name = "xml.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 861;
+ vrLoc = 0;
+ };
+ 92C116FA0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92FD19BF0DDCE6F700D14E5D /* strprintf.cpp */;
+ name = "strprintf.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 503;
+ vrLoc = 904;
+ };
+ 92C116FB0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A4CC9D0D1C622E00CA28FB /* dye.cpp */;
+ name = "dye.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 865;
+ vrLoc = 0;
+ };
+ 92C116FC0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */;
+ name = "itemdb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 868;
+ vrLoc = 0;
+ };
+ 92C116FD0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */;
+ name = "monsterdb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C116FE0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EFD0BAEE55A000DAB7F /* char_select.cpp */;
+ name = "char_select.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 867;
+ vrLoc = 0;
+ };
+ 92C116FF0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926A29440F23BD88005D6466 /* layout.cpp */;
+ name = "layout.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 420;
+ vrLoc = 1095;
+ };
+ 92C117000F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115A00F8EBDB20048CA8D /* units.cpp */;
+ name = "units.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 867;
+ vrLoc = 0;
+ };
+ 92C117010F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EF90BAEE55A000DAB7F /* buy.cpp */;
+ name = "buy.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 744;
+ vrLoc = 1244;
+ };
+ 92C117020F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115990F8EBD900048CA8D /* emotedb.cpp */;
+ name = "emotedb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 862;
+ vrLoc = 0;
+ };
+ 92C117030F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */;
+ name = "monsterinfo.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C117040F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F520BAEE55A000DAB7F /* shoplistbox.cpp */;
+ name = "shoplistbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 884;
+ vrLoc = 0;
+ };
+ 92C117050F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */;
+ name = "setup_joystick.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C117060F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115340F8EBC450048CA8D /* windowcontainer.cpp */;
+ name = "windowcontainer.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 879;
+ vrLoc = 0;
+ };
+ 92C117070F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115C10F8EBE950048CA8D /* gccontainer.cpp */;
+ name = "gccontainer.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 863;
+ vrLoc = 0;
+ };
+ 92C117080F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115450F8EBCD00048CA8D /* passwordfield.cpp */;
+ name = "passwordfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 865;
+ vrLoc = 0;
+ };
+ 92C117090F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115500F8EBD250048CA8D /* label.cpp */;
+ name = "label.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 863;
+ vrLoc = 0;
+ };
+ 92C1170A0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92DD76450F267B3600B2B519 /* layouthelper.cpp */;
+ name = "layouthelper.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 876;
+ vrLoc = 0;
+ };
+ 92C1170D0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */;
+ name = "colordb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 862;
+ vrLoc = 0;
+ };
+ 92C1170E0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F710BAEE55B000DAB7F /* joystick.cpp */;
+ name = "joystick.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 886;
+ vrLoc = 0;
+ };
+ 92C1170F0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115490F8EBD000048CA8D /* checkbox.cpp */;
+ name = "checkbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 872;
+ vrLoc = 0;
+ };
+ 92C117100F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115260F8EBBD50048CA8D /* textfield.cpp */;
+ name = "textfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C117110F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A4CCF20D1DA5C600CA28FB /* macosx.c */;
+ name = "macosx.c: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 503;
+ vrLoc = 0;
+ };
+ 92C117130F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1164B0F8EC7EC0048CA8D /* NSObjCRuntime.h */;
+ name = "NSObjCRuntime.h: 124";
+ rLen = 27;
+ rLoc = 3897;
+ rType = 0;
+ vrLen = 585;
+ vrLoc = 3602;
+ };
+ 92C117140F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115EC0F8EBFC20048CA8D /* channel.cpp */;
+ name = "channel.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 859;
+ vrLoc = 0;
+ };
+ 92C117150F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FF40BAEE55B000DAB7F /* xml.cpp */;
+ name = "xml.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 861;
+ vrLoc = 0;
+ };
+ 92C117160F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92FD19BF0DDCE6F700D14E5D /* strprintf.cpp */;
+ name = "strprintf.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 503;
+ vrLoc = 904;
+ };
+ 92C117170F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A4CC9D0D1C622E00CA28FB /* dye.cpp */;
+ name = "dye.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 865;
+ vrLoc = 0;
+ };
+ 92C117180F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */;
+ name = "itemdb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 868;
+ vrLoc = 0;
+ };
+ 92C117190F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */;
+ name = "monsterdb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C1171A0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EFD0BAEE55A000DAB7F /* char_select.cpp */;
+ name = "char_select.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 867;
+ vrLoc = 0;
+ };
+ 92C1171B0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926A29440F23BD88005D6466 /* layout.cpp */;
+ name = "layout.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 420;
+ vrLoc = 1095;
+ };
+ 92C1171C0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115A00F8EBDB20048CA8D /* units.cpp */;
+ name = "units.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 867;
+ vrLoc = 0;
+ };
+ 92C1171D0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EF90BAEE55A000DAB7F /* buy.cpp */;
+ name = "buy.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 744;
+ vrLoc = 1244;
+ };
+ 92C1171E0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115990F8EBD900048CA8D /* emotedb.cpp */;
+ name = "emotedb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 862;
+ vrLoc = 0;
+ };
+ 92C1171F0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */;
+ name = "monsterinfo.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C117200F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F520BAEE55A000DAB7F /* shoplistbox.cpp */;
+ name = "shoplistbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 884;
+ vrLoc = 0;
+ };
+ 92C117210F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */;
+ name = "setup_joystick.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C117220F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115340F8EBC450048CA8D /* windowcontainer.cpp */;
+ name = "windowcontainer.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 879;
+ vrLoc = 0;
+ };
+ 92C117230F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115C10F8EBE950048CA8D /* gccontainer.cpp */;
+ name = "gccontainer.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 863;
+ vrLoc = 0;
+ };
+ 92C117240F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115450F8EBCD00048CA8D /* passwordfield.cpp */;
+ name = "passwordfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 865;
+ vrLoc = 0;
+ };
+ 92C117250F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115500F8EBD250048CA8D /* label.cpp */;
+ name = "label.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 863;
+ vrLoc = 0;
+ };
+ 92C117260F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92DD76450F267B3600B2B519 /* layouthelper.cpp */;
+ name = "layouthelper.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 876;
+ vrLoc = 0;
+ };
+ 92C117270F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FC20BAEE55B000DAB7F /* animation.cpp */;
+ name = "animation.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 430;
+ vrLoc = 896;
+ };
+ 92C117280F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */;
+ name = "simpleanimation.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 681;
+ vrLoc = 2054;
+ };
+ 92C117290F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */;
+ name = "colordb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 862;
+ vrLoc = 0;
+ };
+ 92C1172A0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F710BAEE55B000DAB7F /* joystick.cpp */;
+ name = "joystick.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 886;
+ vrLoc = 0;
+ };
+ 92C1172B0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115490F8EBD000048CA8D /* checkbox.cpp */;
+ name = "checkbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 872;
+ vrLoc = 0;
+ };
+ 92C1172C0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115260F8EBBD50048CA8D /* textfield.cpp */;
+ name = "textfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C1172D0F8ECD360048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A4CCF20D1DA5C600CA28FB /* macosx.c */;
+ name = "macosx.c: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 503;
+ vrLoc = 0;
+ };
+ 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 4690}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{3617, 534}";
+ };
+ };
+ 92C1175F0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115140F8EBB830048CA8D /* listbox.cpp */;
+ name = "listbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C117600F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926F9D430DB00AFC00AACD26 /* itemshortcutwindow.cpp */;
+ name = "itemshortcutwindow.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 702;
+ vrLoc = 568;
+ };
+ 92C117610F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */;
+ name = "itemshortcut.cpp: 53";
+ rLen = 0;
+ rLoc = 1424;
+ rType = 0;
+ vrLen = 336;
+ vrLoc = 1131;
+ };
+ 92C117620F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */;
+ name = "setup_video.cpp: 328";
+ rLen = 0;
+ rLoc = 11514;
+ rType = 0;
+ vrLen = 791;
+ vrLoc = 9696;
+ };
+ 92C117640F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F400BAEE55A000DAB7F /* register.cpp */;
+ name = "register.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 578;
+ vrLoc = 1067;
+ };
+ 92C117650F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115180F8EBB830048CA8D /* slider.cpp */;
+ name = "slider.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C117660F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */;
+ name = "updatewindow.cpp: 300";
+ rLen = 79;
+ rLoc = 8181;
+ rType = 0;
+ vrLen = 1204;
+ vrLoc = 7827;
+ };
+ 92C117670F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */;
+ name = "browserbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 874;
+ vrLoc = 0;
+ };
+ 92C117680F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A4CCFB0D1DA89800CA28FB /* physfs_unicode.c */;
+ name = "physfs_unicode.c: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 689;
+ vrLoc = 0;
+ };
+ 92C117690F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FAD0BAEE55B000DAB7F /* physfs_byteorder.c */;
+ name = "physfs_byteorder.c: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1448;
+ vrLoc = 1921;
+ };
+ 92C1176A0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FC90BAEE55B000DAB7F /* image.cpp */;
+ name = "image.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 480;
+ vrLoc = 1508;
+ };
+ 92C1176B0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FB50BAEE55B000DAB7F /* posix.c */;
+ name = "posix.c: 280";
+ rLen = 0;
+ rLoc = 6658;
+ rType = 0;
+ vrLen = 541;
+ vrLoc = 4434;
+ };
+ 92C1176C0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */;
+ name = "charcreatedialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 872;
+ vrLoc = 0;
+ };
+ 92C1176D0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 925350010BC12A3200115FD5 /* imageset.cpp */;
+ name = "imageset.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C1176E0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1176F0F8ECF5E0048CA8D /* OpenTransport.h */;
+ name = "OpenTransport.h: 3701";
+ rLen = 85;
+ rLoc = 128931;
+ rType = 0;
+ vrLen = 874;
+ vrLoc = 128421;
+ };
+ 92C1176F0F8ECF5E0048CA8D /* OpenTransport.h */ = {
+ isa = PBXFileReference;
+ lastKnownFileType = sourcecode.c.h;
+ name = OpenTransport.h;
+ path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OpenTransport.h;
+ sourceTree = "<absolute>";
+ };
+ 92C117700F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */;
+ name = "skilldialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 534;
+ vrLoc = 3617;
+ };
+ 92C117720F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115140F8EBB830048CA8D /* listbox.cpp */;
+ name = "listbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C117730F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926F9D430DB00AFC00AACD26 /* itemshortcutwindow.cpp */;
+ name = "itemshortcutwindow.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 702;
+ vrLoc = 568;
+ };
+ 92C117740F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */;
+ name = "itemshortcut.cpp: 53";
+ rLen = 0;
+ rLoc = 1424;
+ rType = 0;
+ vrLen = 336;
+ vrLoc = 1131;
+ };
+ 92C117750F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */;
+ name = "setup_video.cpp: 328";
+ rLen = 0;
+ rLoc = 11514;
+ rType = 0;
+ vrLen = 791;
+ vrLoc = 9696;
+ };
+ 92C117760F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F500BAEE55A000DAB7F /* shop.cpp */;
+ name = "shop.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 860;
+ vrLoc = 0;
+ };
+ 92C117770F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F400BAEE55A000DAB7F /* register.cpp */;
+ name = "register.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 578;
+ vrLoc = 1067;
+ };
+ 92C117780F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115180F8EBB830048CA8D /* slider.cpp */;
+ name = "slider.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C117790F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */;
+ name = "updatewindow.cpp: 300";
+ rLen = 79;
+ rLoc = 8181;
+ rType = 0;
+ vrLen = 1204;
+ vrLoc = 7827;
+ };
+ 92C1177A0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */;
+ name = "browserbox.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 874;
+ vrLoc = 0;
+ };
+ 92C1177B0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92A4CCFB0D1DA89800CA28FB /* physfs_unicode.c */;
+ name = "physfs_unicode.c: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 689;
+ vrLoc = 0;
+ };
+ 92C1177C0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FAD0BAEE55B000DAB7F /* physfs_byteorder.c */;
+ name = "physfs_byteorder.c: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1448;
+ vrLoc = 1921;
+ };
+ 92C1177D0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FC90BAEE55B000DAB7F /* image.cpp */;
+ name = "image.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 480;
+ vrLoc = 1508;
+ };
+ 92C1177E0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FB50BAEE55B000DAB7F /* posix.c */;
+ name = "posix.c: 280";
+ rLen = 0;
+ rLoc = 6658;
+ rType = 0;
+ vrLen = 541;
+ vrLoc = 4434;
+ };
+ 92C1177F0F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */;
+ name = "charcreatedialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 872;
+ vrLoc = 0;
+ };
+ 92C117800F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 925350010BC12A3200115FD5 /* imageset.cpp */;
+ name = "imageset.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C117810F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C117820F8ECF5E0048CA8D /* OpenTransport.h */;
+ name = "OpenTransport.h: 3701";
+ rLen = 85;
+ rLoc = 128931;
+ rType = 0;
+ vrLen = 874;
+ vrLoc = 128421;
+ };
+ 92C117820F8ECF5E0048CA8D /* OpenTransport.h */ = {
+ isa = PBXFileReference;
+ lastKnownFileType = sourcecode.c.h;
+ name = OpenTransport.h;
+ path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OpenTransport.h;
+ sourceTree = "<absolute>";
+ };
+ 92C117830F8ECF5E0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */;
+ name = "skilldialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 534;
+ vrLoc = 3617;
+ };
+ 92C117880F8ECF890048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */;
+ name = "localplayer.cpp: 253";
+ rLen = 0;
+ rLoc = 6691;
+ rType = 0;
+ vrLen = 583;
+ vrLoc = 6596;
+ };
+ 92C117890F8ECF890048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 922CD9560E3D00900074C50E /* npcdb.cpp */;
+ name = "npcdb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 867;
+ vrLoc = 0;
+ };
+ 92C1178B0F8ECF890048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */;
+ name = "localplayer.cpp: 253";
+ rLen = 0;
+ rLoc = 6691;
+ rType = 0;
+ vrLen = 583;
+ vrLoc = 6596;
+ };
+ 92C1178C0F8ECF890048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 922CD9560E3D00900074C50E /* npcdb.cpp */;
+ name = "npcdb.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 867;
+ vrLoc = 0;
+ };
+ 92C117930F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115160F8EBB830048CA8D /* scrollarea.cpp */;
+ name = "scrollarea.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 874;
+ vrLoc = 0;
+ };
+ 92C117940F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3ECC0BAEE55A000DAB7F /* being.cpp */;
+ name = "being.cpp: 105";
+ rLen = 0;
+ rLoc = 2724;
+ rType = 0;
+ vrLen = 609;
+ vrLoc = 2233;
+ };
+ 92C117950F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */;
+ name = "animatedsprite.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 887;
+ vrLoc = 0;
+ };
+ 92C117960F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FBA0BAEE55B000DAB7F /* player.cpp */;
+ name = "player.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 883;
+ vrLoc = 0;
+ };
+ 92C117970F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F500BAEE55A000DAB7F /* shop.cpp */;
+ name = "shop.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 470;
+ vrLoc = 568;
+ };
+ 92C117990F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115160F8EBB830048CA8D /* scrollarea.cpp */;
+ name = "scrollarea.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 874;
+ vrLoc = 0;
+ };
+ 92C1179A0F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3ECC0BAEE55A000DAB7F /* being.cpp */;
+ name = "being.cpp: 105";
+ rLen = 0;
+ rLoc = 2724;
+ rType = 0;
+ vrLen = 609;
+ vrLoc = 2233;
+ };
+ 92C1179B0F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */;
+ name = "animatedsprite.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 887;
+ vrLoc = 0;
+ };
+ 92C1179C0F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FBA0BAEE55B000DAB7F /* player.cpp */;
+ name = "player.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 883;
+ vrLoc = 0;
+ };
+ 92C1179D0F8ECFFF0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F500BAEE55A000DAB7F /* shop.cpp */;
+ name = "shop.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 470;
+ vrLoc = 568;
+ };
+ 92C118A20F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 922CD95D0E3D01080074C50E /* shopitem.cpp */;
+ name = "shopitem.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 832;
+ vrLoc = 81;
+ };
+ 92C118A30F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39EE0C0784280066885E /* particleemitter.cpp */;
+ name = "particleemitter.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 810;
+ vrLoc = 13703;
+ };
+ 92C118A40F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */;
+ name = "particlecontainer.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 492;
+ vrLoc = 1954;
+ };
+ 92C118A50F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EEC0BAEE55A000DAB7F /* game.cpp */;
+ name = "game.cpp: 781";
+ rLen = 0;
+ rLoc = 24258;
+ rType = 0;
+ vrLen = 1569;
+ vrLoc = 17899;
+ };
+ 92C118A60F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F6F0BAEE55B000DAB7F /* item.cpp */;
+ name = "item.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 856;
+ vrLoc = 0;
+ };
+ 92C118A70F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */;
+ name = "spritedef.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C118A80F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */;
+ name = "inventorywindow.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C118A90F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926A294E0F23BD9E005D6466 /* npcintegerdialog.cpp */;
+ name = "npcintegerdialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 872;
+ vrLoc = 0;
+ };
+ 92C118AA0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */;
+ name = "keyboardconfig.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 930;
+ vrLoc = 0;
+ };
+ 92C118AB0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */;
+ name = "beingmanager.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 864;
+ vrLoc = 0;
+ };
+ 92C118AC0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */;
+ name = "chat.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 856;
+ vrLoc = 0;
+ };
+ 92C118AD0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115220F8EBBD50048CA8D /* inttextfield.cpp */;
+ name = "inttextfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 876;
+ vrLoc = 0;
+ };
+ 92C118AE0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */;
+ name = "simpleanimation.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 681;
+ vrLoc = 2054;
+ };
+ 92C118AF0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */;
+ name = "imagewriter.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C118B00F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FBE0BAEE55B000DAB7F /* action.cpp */;
+ name = "action.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 868;
+ vrLoc = 0;
+ };
+ 92C118B10F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115AD0F8EBE450048CA8D /* palette.cpp */;
+ name = "palette.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 934;
+ vrLoc = 0;
+ };
+ 92C118B20F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39EC0C0784280066885E /* particle.cpp */;
+ name = "particle.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 10130;
+ };
+ 92C118B30F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */;
+ name = "effectmanager.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 918;
+ vrLoc = 0;
+ };
+ 92C118B40F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EE40BAEE55A000DAB7F /* engine.cpp */;
+ name = "engine.cpp: 103";
+ rLen = 9;
+ rLoc = 3021;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 2650;
+ };
+ 92C118B50F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 9273BE060EF33FB3008E56E1 /* statuseffect.cpp */;
+ name = "statuseffect.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 853;
+ vrLoc = 0;
+ };
+ 92C118B60F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F660BAEE55B000DAB7F /* viewport.cpp */;
+ name = "viewport.cpp: 269";
+ rLen = 63;
+ rLoc = 7873;
+ rType = 0;
+ vrLen = 763;
+ vrLoc = 7525;
+ };
+ 92C118B70F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115B50F8EBE450048CA8D /* speechbubble.cpp */;
+ name = "speechbubble.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 932;
+ vrLoc = 0;
+ };
+ 92C118B80F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */;
+ name = "openglgraphics.cpp: 91";
+ rLen = 0;
+ rLoc = 2418;
+ rType = 0;
+ vrLen = 813;
+ vrLoc = 2076;
+ };
+ 92C118B90F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FC20BAEE55B000DAB7F /* animation.cpp */;
+ name = "animation.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 895;
+ };
+ 92C118BA0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39EA0C0784280066885E /* imageparticle.cpp */;
+ name = "imageparticle.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 865;
+ vrLoc = 0;
+ };
+ 92C118BB0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */;
+ name = "ministatus.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 866;
+ vrLoc = 0;
+ };
+ 92C118BC0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */;
+ name = "minimap.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C118BD0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F7C0BAEE55B000DAB7F /* map.cpp */;
+ name = "map.cpp: 323";
+ rLen = 0;
+ rLoc = 8349;
+ rType = 0;
+ vrLen = 903;
+ vrLoc = 13650;
+ };
+ 92C118BE0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39E80C0784280066885E /* animationparticle.cpp */;
+ name = "animationparticle.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 890;
+ vrLoc = 0;
+ };
+ 92C118BF0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */;
+ name = "equipmentwindow.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C118C00F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115100F8EBB550048CA8D /* itempopup.cpp */;
+ name = "itempopup.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 929;
+ vrLoc = 0;
+ };
+ 92C118C10F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */;
+ name = "ambientoverlay.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 876;
+ vrLoc = 0;
+ };
+ 92C118C20F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */;
+ name = "inventory.cpp: 67";
+ rLen = 0;
+ rLoc = 1728;
+ rType = 0;
+ vrLen = 571;
+ vrLoc = 1514;
+ };
+ 92C118C30F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */;
+ name = "popupmenu.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1293;
+ vrLoc = 2202;
+ };
+ 92C118C40F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115240F8EBBD50048CA8D /* popup.cpp */;
+ name = "popup.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 917;
+ vrLoc = 0;
+ };
+ 92C118C50F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */;
+ name = "soundeffect.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C118C70F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 922CD95D0E3D01080074C50E /* shopitem.cpp */;
+ name = "shopitem.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 832;
+ vrLoc = 81;
+ };
+ 92C118C80F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39EC0C0784280066885E /* particle.cpp */;
+ name = "particle.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 373;
+ vrLoc = 10163;
+ };
+ 92C118C90F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39EE0C0784280066885E /* particleemitter.cpp */;
+ name = "particleemitter.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 810;
+ vrLoc = 13703;
+ };
+ 92C118CA0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */;
+ name = "particlecontainer.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 492;
+ vrLoc = 1954;
+ };
+ 92C118CB0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EEC0BAEE55A000DAB7F /* game.cpp */;
+ name = "game.cpp: 781";
+ rLen = 0;
+ rLoc = 24258;
+ rType = 0;
+ vrLen = 1569;
+ vrLoc = 17899;
+ };
+ 92C118CC0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F6F0BAEE55B000DAB7F /* item.cpp */;
+ name = "item.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 856;
+ vrLoc = 0;
+ };
+ 92C118CD0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */;
+ name = "spritedef.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C118CE0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */;
+ name = "inventorywindow.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C118CF0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 926A294E0F23BD9E005D6466 /* npcintegerdialog.cpp */;
+ name = "npcintegerdialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 872;
+ vrLoc = 0;
+ };
+ 92C118D00F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */;
+ name = "keyboardconfig.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 930;
+ vrLoc = 0;
+ };
+ 92C118D10F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */;
+ name = "beingmanager.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 864;
+ vrLoc = 0;
+ };
+ 92C118D20F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */;
+ name = "chat.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 856;
+ vrLoc = 0;
+ };
+ 92C118D30F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115220F8EBBD50048CA8D /* inttextfield.cpp */;
+ name = "inttextfield.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 876;
+ vrLoc = 0;
+ };
+ 92C118D40F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */;
+ name = "simpleanimation.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 681;
+ vrLoc = 2054;
+ };
+ 92C118D50F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */;
+ name = "imagewriter.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C118D60F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FBE0BAEE55B000DAB7F /* action.cpp */;
+ name = "action.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 868;
+ vrLoc = 0;
+ };
+ 92C118D70F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115AD0F8EBE450048CA8D /* palette.cpp */;
+ name = "palette.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 934;
+ vrLoc = 0;
+ };
+ 92C118D80F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39EC0C0784280066885E /* particle.cpp */;
+ name = "particle.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 10130;
+ };
+ 92C118D90F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */;
+ name = "effectmanager.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 918;
+ vrLoc = 0;
+ };
+ 92C118DA0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3EE40BAEE55A000DAB7F /* engine.cpp */;
+ name = "engine.cpp: 103";
+ rLen = 9;
+ rLoc = 3021;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 2650;
+ };
+ 92C118DB0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 9273BE060EF33FB3008E56E1 /* statuseffect.cpp */;
+ name = "statuseffect.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 853;
+ vrLoc = 0;
+ };
+ 92C118DC0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F660BAEE55B000DAB7F /* viewport.cpp */;
+ name = "viewport.cpp: 269";
+ rLen = 63;
+ rLoc = 7873;
+ rType = 0;
+ vrLen = 763;
+ vrLoc = 7525;
+ };
+ 92C118DD0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115B50F8EBE450048CA8D /* speechbubble.cpp */;
+ name = "speechbubble.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 932;
+ vrLoc = 0;
+ };
+ 92C118DE0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */;
+ name = "openglgraphics.cpp: 91";
+ rLen = 0;
+ rLoc = 2418;
+ rType = 0;
+ vrLen = 813;
+ vrLoc = 2076;
+ };
+ 92C118DF0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FC20BAEE55B000DAB7F /* animation.cpp */;
+ name = "animation.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 895;
+ };
+ 92C118E00F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39EA0C0784280066885E /* imageparticle.cpp */;
+ name = "imageparticle.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 865;
+ vrLoc = 0;
+ };
+ 92C118E10F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */;
+ name = "ministatus.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 866;
+ vrLoc = 0;
+ };
+ 92C118E20F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */;
+ name = "minimap.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 871;
+ vrLoc = 0;
+ };
+ 92C118E30F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F7C0BAEE55B000DAB7F /* map.cpp */;
+ name = "map.cpp: 323";
+ rLen = 0;
+ rLoc = 8349;
+ rType = 0;
+ vrLen = 903;
+ vrLoc = 13650;
+ };
+ 92C118E40F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 924A39E80C0784280066885E /* animationparticle.cpp */;
+ name = "animationparticle.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 890;
+ vrLoc = 0;
+ };
+ 92C118E50F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */;
+ name = "equipmentwindow.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 870;
+ vrLoc = 0;
+ };
+ 92C118E60F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115100F8EBB550048CA8D /* itempopup.cpp */;
+ name = "itempopup.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 929;
+ vrLoc = 0;
+ };
+ 92C118E70F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */;
+ name = "ambientoverlay.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 876;
+ vrLoc = 0;
+ };
+ 92C118E80F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */;
+ name = "inventory.cpp: 67";
+ rLen = 0;
+ rLoc = 1728;
+ rType = 0;
+ vrLen = 571;
+ vrLoc = 1514;
+ };
+ 92C118E90F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */;
+ name = "popupmenu.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1293;
+ vrLoc = 2202;
+ };
+ 92C118EA0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115240F8EBBD50048CA8D /* popup.cpp */;
+ name = "popup.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 917;
+ vrLoc = 0;
+ };
+ 92C118EB0F8ED54C0048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */;
+ name = "soundeffect.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 873;
+ vrLoc = 0;
+ };
+ 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {558, 1288}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{2308, 481}";
+ };
+ };
+ 92C119460F8ED7C20048CA8D /* generalhandler.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {734, 59234}}";
- sepNavSelRange = "{146456, 3}";
- sepNavVisRect = "{{0, 47601}, {734, 180}}";
- sepNavWindowFrame = "{{130, 134}, {777, 588}}";
+ sepNavIntBoundsRect = "{{0, 0}, {633, 1708}}";
+ sepNavSelRange = "{3017, 0}";
+ sepNavVisRange = "{2536, 526}";
+ sepNavWindowFrame = "{{15, 389}, {861, 634}}";
+ };
+ };
+ 92C119560F8ED7C20048CA8D /* network.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 2660}}";
+ sepNavSelRange = "{2181, 0}";
+ sepNavVisRange = "{1946, 520}";
+ };
+ };
+ 92C11A090F8ED9F50048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115D90F8EBF530048CA8D /* radiobutton.cpp */;
+ name = "radiobutton.cpp: 14";
+ rLen = 0;
+ rLoc = 521;
+ rType = 0;
+ vrLen = 875;
+ vrLoc = 0;
+ };
+ 92C11A0A0F8ED9F50048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F260BAEE55A000DAB7F /* login.cpp */;
+ name = "login.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 962;
+ vrLoc = 1324;
+ };
+ 92C11A0B0F8ED9F50048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1152F0F8EBC2B0048CA8D /* serverselectdialog.cpp */;
+ name = "serverselectdialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 902;
+ vrLoc = 1498;
+ };
+ 92C11A0E0F8ED9F50048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C115D90F8EBF530048CA8D /* radiobutton.cpp */;
+ name = "radiobutton.cpp: 14";
+ rLen = 0;
+ rLoc = 521;
+ rType = 0;
+ vrLen = 875;
+ vrLoc = 0;
+ };
+ 92C11A0F0F8ED9F50048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92BC3F260BAEE55A000DAB7F /* login.cpp */;
+ name = "login.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 962;
+ vrLoc = 1324;
+ };
+ 92C11A100F8ED9F50048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C1152F0F8EBC2B0048CA8D /* serverselectdialog.cpp */;
+ name = "serverselectdialog.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 902;
+ vrLoc = 1498;
+ };
+ 92C11A110F8ED9F50048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116010F8EC0590048CA8D /* circle-gray.png */;
+ };
+ 92C11A200F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 924A3E990C085ED70066885E /* error.png */;
+ };
+ 92C11A220F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116010F8EC0590048CA8D /* circle-gray.png */;
+ };
+ 92C11A230F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116020F8EC0590048CA8D /* circle-green.png */;
+ };
+ 92C11A240F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116030F8EC0590048CA8D /* default.png */;
+ };
+ 92C11A250F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116040F8EC0590048CA8D /* equip_bg.png */;
+ };
+ 92C11A260F8EDAB80048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C116050F8EC0590048CA8D /* gui.xml */;
+ name = "gui.xml: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 813;
+ vrLoc = 0;
+ };
+ 92C11A270F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116060F8EC0590048CA8D /* speech_bubble.png */;
+ };
+ 92C11A280F8EDAB80048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C116070F8EC0590048CA8D /* speechbubble.xml */;
+ name = "speechbubble.xml: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 806;
+ vrLoc = 0;
+ };
+ 92C11A2A0F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 924A3E990C085ED70066885E /* error.png */;
+ };
+ 92C11A2B0F8EDAB80048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 514;
+ vrLoc = 1952;
+ };
+ 92C11A2C0F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116020F8EC0590048CA8D /* circle-green.png */;
+ };
+ 92C11A2D0F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116010F8EC0590048CA8D /* circle-gray.png */;
+ };
+ 92C11A2E0F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116020F8EC0590048CA8D /* circle-green.png */;
+ };
+ 92C11A2F0F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116030F8EC0590048CA8D /* default.png */;
+ };
+ 92C11A300F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116040F8EC0590048CA8D /* equip_bg.png */;
+ };
+ 92C11A310F8EDAB80048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C116050F8EC0590048CA8D /* gui.xml */;
+ name = "gui.xml: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 813;
+ vrLoc = 0;
+ };
+ 92C11A320F8EDAB80048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116060F8EC0590048CA8D /* speech_bubble.png */;
+ };
+ 92C11A330F8EDAB80048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C116070F8EC0590048CA8D /* speechbubble.xml */;
+ name = "speechbubble.xml: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 806;
+ vrLoc = 0;
+ };
+ 92C11A3B0F8EDAF10048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116080F8EC0590048CA8D /* sticky_button.png */;
+ };
+ 92C11A3E0F8EDAF10048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 92C116080F8EC0590048CA8D /* sticky_button.png */;
+ };
+ 92C11A3F0F8EDAF10048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 514;
+ vrLoc = 1952;
+ };
+ 92C11A410F8EDB000048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 924A42590C0871EC0066885E /* The Mana World.icns */;
+ };
+ 92C11A420F8EDB000048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ rLen = 0;
+ rLoc = 88;
+ rType = 1;
+ };
+ 92C11A430F8EDB000048CA8D /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 924A42590C0871EC0066885E /* The Mana World.icns */;
+ };
+ 92C11A440F8EDB000048CA8D /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 92C119560F8ED7C20048CA8D /* network.cpp */;
+ name = "network.cpp: 89";
+ rLen = 0;
+ rLoc = 2181;
+ rType = 0;
+ vrLen = 514;
+ vrLoc = 1952;
+ };
+ 92DD76450F267B3600B2B519 /* layouthelper.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 770}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 876}";
};
};
92FD19AE0DDCE51000D14E5D /* player_relations.cpp */ = {
@@ -922,4 +4500,11 @@
sepNavWindowFrame = "{{180, 8}, {627, 714}}";
};
};
+ 92FD19BF0DDCE6F700D14E5D /* strprintf.cpp */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {511, 672}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{904, 503}";
+ };
+ };
}
diff --git a/themanaworld.xcodeproj/project.pbxproj b/themanaworld.xcodeproj/project.pbxproj
index f2dadea7..fbd5dc8e 100644
--- a/themanaworld.xcodeproj/project.pbxproj
+++ b/themanaworld.xcodeproj/project.pbxproj
@@ -16,6 +16,7 @@
92024E760CF1DCF6006B55CB /* imageloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024E740CF1DCF6006B55CB /* imageloader.cpp */; };
92037A1F0ED2037300D3712D /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92037A1B0ED2037300D3712D /* text.cpp */; };
92037A200ED2037300D3712D /* textmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92037A1D0ED2037300D3712D /* textmanager.cpp */; };
+ 920C631F0F37D0EF001DD274 /* SDL_ttf.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 926A29790F23C155005D6466 /* SDL_ttf.framework */; };
922CD9580E3D00900074C50E /* npcdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD9560E3D00900074C50E /* npcdb.cpp */; };
922CD95F0E3D01080074C50E /* shopitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD95D0E3D01080074C50E /* shopitem.cpp */; };
922CD9ED0E3D02C50074C50E /* guichan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 922CD9EC0E3D02C50074C50E /* guichan.framework */; };
@@ -34,25 +35,16 @@
924A405F0C085F950066885E /* buttonpress.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E650C085ED70066885E /* buttonpress.png */; };
924A40600C085F950066885E /* checkbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E660C085ED70066885E /* checkbox.png */; };
924A40610C085F950066885E /* deepbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E680C085ED70066885E /* deepbox.png */; };
- 924A40620C085F950066885E /* fixedfont.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E690C085ED70066885E /* fixedfont.png */; };
- 924A40630C085F950066885E /* hits_blue.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6A0C085ED70066885E /* hits_blue.png */; };
- 924A40640C085F950066885E /* hits_red.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6B0C085ED70066885E /* hits_red.png */; };
- 924A40650C085F950066885E /* hits_yellow.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6C0C085ED70066885E /* hits_yellow.png */; };
924A40660C085F950066885E /* hscroll_left_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6D0C085ED70066885E /* hscroll_left_default.png */; };
924A40670C085F950066885E /* hscroll_left_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */; };
924A40680C085F950066885E /* hscroll_left_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */; };
924A40690C085F950066885E /* hscroll_right_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E700C085ED70066885E /* hscroll_right_default.png */; };
924A406A0C085F950066885E /* hscroll_right_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E710C085ED70066885E /* hscroll_right_highlight.png */; };
924A406B0C085F950066885E /* hscroll_right_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E720C085ED70066885E /* hscroll_right_pressed.png */; };
- 924A406C0C085F950066885E /* menuitemD.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E740C085ED70066885E /* menuitemD.png */; };
- 924A406D0C085F950066885E /* menuitemF.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E750C085ED70066885E /* menuitemF.png */; };
- 924A406E0C085F950066885E /* menuitemN.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E760C085ED70066885E /* menuitemN.png */; };
- 924A406F0C085F950066885E /* menuitemP.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E770C085ED70066885E /* menuitemP.png */; };
924A40700C085F950066885E /* mouse.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E780C085ED70066885E /* mouse.png */; };
924A40710C085F950066885E /* radioin.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E790C085ED70066885E /* radioin.png */; };
924A40720C085F950066885E /* radioout.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7A0C085ED70066885E /* radioout.png */; };
924A40730C085F950066885E /* resize.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7B0C085ED70066885E /* resize.png */; };
- 924A40740C085F950066885E /* rpgfont_wider.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7C0C085ED70066885E /* rpgfont_wider.png */; };
924A40760C085F950066885E /* selection.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7E0C085ED70066885E /* selection.png */; };
924A40770C085F950066885E /* slider.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7F0C085ED70066885E /* slider.png */; };
924A40780C085F950066885E /* target-cursor-blue-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E800C085ED70066885E /* target-cursor-blue-l.png */; };
@@ -61,7 +53,6 @@
924A407B0C085F950066885E /* target-cursor-red-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E830C085ED70066885E /* target-cursor-red-l.png */; };
924A407C0C085F950066885E /* target-cursor-red-m.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E840C085ED70066885E /* target-cursor-red-m.png */; };
924A407D0C085F950066885E /* target-cursor-red-s.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E850C085ED70066885E /* target-cursor-red-s.png */; };
- 924A407E0C085F950066885E /* thickborder.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E860C085ED70066885E /* thickborder.png */; };
924A407F0C085F950066885E /* vscroll_blue.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E870C085ED70066885E /* vscroll_blue.png */; };
924A40800C085F950066885E /* vscroll_down_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E880C085ED70066885E /* vscroll_down_default.png */; };
924A40810C085F950066885E /* vscroll_down_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E890C085ED70066885E /* vscroll_down_highlight.png */; };
@@ -91,9 +82,10 @@
926A29580F23BD9E005D6466 /* sdlinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29520F23BD9E005D6466 /* sdlinput.cpp */; };
926A29590F23BD9E005D6466 /* truetypefont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29540F23BD9E005D6466 /* truetypefont.cpp */; };
926A297A0F23C155005D6466 /* SDL_ttf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 926A29790F23C155005D6466 /* SDL_ttf.framework */; };
- 926A29800F23C18E005D6466 /* tab.png in Resources */ = {isa = PBXBuildFile; fileRef = 926A297E0F23C18E005D6466 /* tab.png */; };
- 926A29810F23C18E005D6466 /* tabselected.png in Resources */ = {isa = PBXBuildFile; fileRef = 926A297F0F23C18E005D6466 /* tabselected.png */; };
- 926A29850F23C1C8005D6466 /* windows.txt in Resources */ = {isa = PBXBuildFile; fileRef = 926A29840F23C1C8005D6466 /* windows.txt */; };
+ 926A299A0F23C9F4005D6466 /* tab.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297E0F23C18E005D6466 /* tab.png */; };
+ 926A299B0F23C9F4005D6466 /* tabselected.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297F0F23C18E005D6466 /* tabselected.png */; };
+ 926A299C0F23CA27005D6466 /* windows.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 926A29840F23C1C8005D6466 /* windows.txt */; };
+ 926A299E0F23CA5A005D6466 /* dejavusans.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 926A29980F23C988005D6466 /* dejavusans.ttf */; };
926F9CF80DB005FA00AACD26 /* itemshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */; };
926F9D450DB00AFC00AACD26 /* itemshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926F9D410DB00AFC00AACD26 /* itemshortcutcontainer.cpp */; };
926F9D460DB00AFC00AACD26 /* itemshortcutwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926F9D430DB00AFC00AACD26 /* itemshortcutwindow.cpp */; };
@@ -102,15 +94,14 @@
9273BE000EF33E1A008E56E1 /* README in Resources */ = {isa = PBXBuildFile; fileRef = 9273BDFE0EF33E1A008E56E1 /* README */; };
9273BE080EF33FB3008E56E1 /* particlecontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */; };
9273BE090EF33FB3008E56E1 /* statuseffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9273BE060EF33FB3008E56E1 /* statuseffect.cpp */; };
- 9273BE2D0EF3403E008E56E1 /* Clouds Calling.ogg in Copy Music Files */ = {isa = PBXBuildFile; fileRef = 9273BE0B0EF33FFF008E56E1 /* Clouds Calling.ogg */; };
- 9273BE2E0EF3403E008E56E1 /* Faith.ogg in Copy Music Files */ = {isa = PBXBuildFile; fileRef = 9273BE0C0EF33FFF008E56E1 /* Faith.ogg */; };
- 9273BE2F0EF3403E008E56E1 /* finalman_and_yakslem-cavesong.ogg in Copy Music Files */ = {isa = PBXBuildFile; fileRef = 9273BE0D0EF33FFF008E56E1 /* finalman_and_yakslem-cavesong.ogg */; };
- 9273BE300EF3403E008E56E1 /* Magick - Real.ogg in Copy Music Files */ = {isa = PBXBuildFile; fileRef = 9273BE0E0EF33FFF008E56E1 /* Magick - Real.ogg */; };
- 9273BE310EF3403E008E56E1 /* The Mana World - Snow Village.ogg in Copy Music Files */ = {isa = PBXBuildFile; fileRef = 9273BE0F0EF33FFF008E56E1 /* The Mana World - Snow Village.ogg */; };
- 9273BE320EF3403E008E56E1 /* The Mana World - The Forest.ogg in Copy Music Files */ = {isa = PBXBuildFile; fileRef = 9273BE100EF33FFF008E56E1 /* The Mana World - The Forest.ogg */; };
+ 928B50E60F2FB56D0011C755 /* bubble.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 928B50E40F2FB5430011C755 /* bubble.png */; };
9294DA9B0C17E70400FCEDE9 /* physfs.c in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FAB0BAEE55B000DAB7F /* physfs.c */; };
9294DA9C0C17E70600FCEDE9 /* physfs_byteorder.c in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FAD0BAEE55B000DAB7F /* physfs_byteorder.c */; };
9294DAA10C17E73200FCEDE9 /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9294DAA00C17E73200FCEDE9 /* libpng.framework */; };
+ 92A244B70F935FB400B7719B /* container.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A244B50F935FB400B7719B /* container.cpp */; };
+ 92A245C40F93626900B7719B /* desktop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A245C20F93626900B7719B /* desktop.cpp */; };
+ 92A245C50F93626C00B7719B /* container.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A244B50F935FB400B7719B /* container.cpp */; };
+ 92A245CC0F93635800B7719B /* npcpostdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */; };
92A4CC9E0D1C622E00CA28FB /* dye.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CC9D0D1C622E00CA28FB /* dye.cpp */; };
92A4CCE80D1DA58D00CA28FB /* dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CCE00D1DA58D00CA28FB /* dir.c */; };
92A4CCE90D1DA58D00CA28FB /* grp.c in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CCE10D1DA58D00CA28FB /* grp.c */; };
@@ -133,29 +124,21 @@
92BC40050BAEE55B000DAB7F /* flooritemmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */; };
92BC40060BAEE55B000DAB7F /* game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEC0BAEE55A000DAB7F /* game.cpp */; };
92BC40070BAEE55B000DAB7F /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */; };
- 92BC40090BAEE55B000DAB7F /* browserbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF30BAEE55A000DAB7F /* browserbox.cpp */; };
92BC400A0BAEE55B000DAB7F /* buddywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF50BAEE55A000DAB7F /* buddywindow.cpp */; };
- 92BC400B0BAEE55B000DAB7F /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF70BAEE55A000DAB7F /* button.cpp */; };
92BC400C0BAEE55B000DAB7F /* buy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF90BAEE55A000DAB7F /* buy.cpp */; };
92BC400D0BAEE55B000DAB7F /* buysell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */; };
92BC400E0BAEE55B000DAB7F /* char_select.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EFD0BAEE55A000DAB7F /* char_select.cpp */; };
- 92BC400F0BAEE55B000DAB7F /* char_server.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EFF0BAEE55A000DAB7F /* char_server.cpp */; };
92BC40110BAEE55B000DAB7F /* chat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */; };
- 92BC40120BAEE55B000DAB7F /* chatinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F050BAEE55A000DAB7F /* chatinput.cpp */; };
- 92BC40130BAEE55B000DAB7F /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F070BAEE55A000DAB7F /* checkbox.cpp */; };
92BC40140BAEE55B000DAB7F /* confirm_dialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F090BAEE55A000DAB7F /* confirm_dialog.cpp */; };
92BC40150BAEE55B000DAB7F /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0B0BAEE55A000DAB7F /* connection.cpp */; };
92BC40160BAEE55B000DAB7F /* debugwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */; };
92BC40170BAEE55B000DAB7F /* equipmentwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */; };
92BC40180BAEE55B000DAB7F /* focushandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F110BAEE55A000DAB7F /* focushandler.cpp */; };
- 92BC40190BAEE55B000DAB7F /* gccontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F130BAEE55A000DAB7F /* gccontainer.cpp */; };
92BC401A0BAEE55B000DAB7F /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F150BAEE55A000DAB7F /* gui.cpp */; };
92BC401C0BAEE55B000DAB7F /* help.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F190BAEE55A000DAB7F /* help.cpp */; };
- 92BC401D0BAEE55B000DAB7F /* inttextbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F1B0BAEE55A000DAB7F /* inttextbox.cpp */; };
92BC401E0BAEE55B000DAB7F /* inventorywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */; };
92BC401F0BAEE55B000DAB7F /* item_amount.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F1F0BAEE55A000DAB7F /* item_amount.cpp */; };
92BC40200BAEE55B000DAB7F /* itemcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F210BAEE55A000DAB7F /* itemcontainer.cpp */; };
- 92BC40210BAEE55B000DAB7F /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F240BAEE55A000DAB7F /* listbox.cpp */; };
92BC40220BAEE55B000DAB7F /* login.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F260BAEE55A000DAB7F /* login.cpp */; };
92BC40230BAEE55B000DAB7F /* menuwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F280BAEE55A000DAB7F /* menuwindow.cpp */; };
92BC40240BAEE55B000DAB7F /* minimap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */; };
@@ -163,13 +146,9 @@
92BC40270BAEE55B000DAB7F /* npc_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F300BAEE55A000DAB7F /* npc_text.cpp */; };
92BC40280BAEE55B000DAB7F /* npclistdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F320BAEE55A000DAB7F /* npclistdialog.cpp */; };
92BC40290BAEE55B000DAB7F /* ok_dialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F340BAEE55A000DAB7F /* ok_dialog.cpp */; };
- 92BC402A0BAEE55B000DAB7F /* passwordfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F360BAEE55A000DAB7F /* passwordfield.cpp */; };
92BC402B0BAEE55B000DAB7F /* playerbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F380BAEE55A000DAB7F /* playerbox.cpp */; };
92BC402C0BAEE55B000DAB7F /* popupmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */; };
- 92BC402D0BAEE55B000DAB7F /* progressbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F3C0BAEE55A000DAB7F /* progressbar.cpp */; };
- 92BC402E0BAEE55B000DAB7F /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F3E0BAEE55A000DAB7F /* radiobutton.cpp */; };
92BC402F0BAEE55B000DAB7F /* register.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F400BAEE55A000DAB7F /* register.cpp */; };
- 92BC40300BAEE55B000DAB7F /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F420BAEE55A000DAB7F /* scrollarea.cpp */; };
92BC40310BAEE55B000DAB7F /* sell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F450BAEE55A000DAB7F /* sell.cpp */; };
92BC40320BAEE55B000DAB7F /* setup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F470BAEE55A000DAB7F /* setup.cpp */; };
92BC40330BAEE55B000DAB7F /* setup_audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */; };
@@ -178,15 +157,10 @@
92BC40360BAEE55B000DAB7F /* shop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F500BAEE55A000DAB7F /* shop.cpp */; };
92BC40370BAEE55B000DAB7F /* shoplistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F520BAEE55A000DAB7F /* shoplistbox.cpp */; };
92BC40380BAEE55B000DAB7F /* skill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F540BAEE55A000DAB7F /* skill.cpp */; };
- 92BC40390BAEE55B000DAB7F /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F560BAEE55A000DAB7F /* slider.cpp */; };
92BC403A0BAEE55B000DAB7F /* status.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F580BAEE55A000DAB7F /* status.cpp */; };
- 92BC403C0BAEE55B000DAB7F /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F5C0BAEE55B000DAB7F /* textbox.cpp */; };
- 92BC403D0BAEE55B000DAB7F /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F5E0BAEE55B000DAB7F /* textfield.cpp */; };
92BC403E0BAEE55B000DAB7F /* trade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F600BAEE55B000DAB7F /* trade.cpp */; };
92BC403F0BAEE55B000DAB7F /* updatewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */; };
92BC40410BAEE55B000DAB7F /* viewport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F660BAEE55B000DAB7F /* viewport.cpp */; };
- 92BC40420BAEE55B000DAB7F /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F680BAEE55B000DAB7F /* window.cpp */; };
- 92BC40430BAEE55B000DAB7F /* windowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F6A0BAEE55B000DAB7F /* windowcontainer.cpp */; };
92BC40440BAEE55B000DAB7F /* inventory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */; };
92BC40450BAEE55B000DAB7F /* item.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F6F0BAEE55B000DAB7F /* item.cpp */; };
92BC40460BAEE55B000DAB7F /* joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F710BAEE55B000DAB7F /* joystick.cpp */; };
@@ -195,31 +169,15 @@
92BC40490BAEE55B000DAB7F /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F790BAEE55B000DAB7F /* main.cpp */; };
92BC404B0BAEE55B000DAB7F /* map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F7C0BAEE55B000DAB7F /* map.cpp */; };
92BC404C0BAEE55B000DAB7F /* monster.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F7E0BAEE55B000DAB7F /* monster.cpp */; };
- 92BC404D0BAEE55B000DAB7F /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F810BAEE55B000DAB7F /* beinghandler.cpp */; };
- 92BC404E0BAEE55B000DAB7F /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F830BAEE55B000DAB7F /* buysellhandler.cpp */; };
- 92BC404F0BAEE55B000DAB7F /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F850BAEE55B000DAB7F /* charserverhandler.cpp */; };
- 92BC40500BAEE55B000DAB7F /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F870BAEE55B000DAB7F /* chathandler.cpp */; };
- 92BC40510BAEE55B000DAB7F /* equipmenthandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F890BAEE55B000DAB7F /* equipmenthandler.cpp */; };
- 92BC40520BAEE55B000DAB7F /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F8B0BAEE55B000DAB7F /* inventoryhandler.cpp */; };
- 92BC40530BAEE55B000DAB7F /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F8D0BAEE55B000DAB7F /* itemhandler.cpp */; };
- 92BC40540BAEE55B000DAB7F /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F8F0BAEE55B000DAB7F /* loginhandler.cpp */; };
- 92BC40550BAEE55B000DAB7F /* maploginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F910BAEE55B000DAB7F /* maploginhandler.cpp */; };
92BC40560BAEE55B000DAB7F /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F930BAEE55B000DAB7F /* messagehandler.cpp */; };
92BC40570BAEE55B000DAB7F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F950BAEE55B000DAB7F /* messagein.cpp */; };
92BC40580BAEE55B000DAB7F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F970BAEE55B000DAB7F /* messageout.cpp */; };
- 92BC40590BAEE55B000DAB7F /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F990BAEE55B000DAB7F /* network.cpp */; };
- 92BC405A0BAEE55B000DAB7F /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F9B0BAEE55B000DAB7F /* npchandler.cpp */; };
- 92BC405B0BAEE55B000DAB7F /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F9D0BAEE55B000DAB7F /* playerhandler.cpp */; };
- 92BC405C0BAEE55B000DAB7F /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F9F0BAEE55B000DAB7F /* protocol.cpp */; };
- 92BC405D0BAEE55B000DAB7F /* skillhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA10BAEE55B000DAB7F /* skillhandler.cpp */; };
- 92BC405E0BAEE55B000DAB7F /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA30BAEE55B000DAB7F /* tradehandler.cpp */; };
92BC405F0BAEE55B000DAB7F /* npc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA50BAEE55B000DAB7F /* npc.cpp */; };
92BC40600BAEE55B000DAB7F /* openglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */; };
92BC406E0BAEE55B000DAB7F /* player.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FBA0BAEE55B000DAB7F /* player.cpp */; };
92BC406F0BAEE55B000DAB7F /* action.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FBE0BAEE55B000DAB7F /* action.cpp */; };
92BC40700BAEE55B000DAB7F /* ambientoverlay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */; };
92BC40710BAEE55B000DAB7F /* animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC20BAEE55B000DAB7F /* animation.cpp */; };
- 92BC40720BAEE55B000DAB7F /* buddylist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC40BAEE55B000DAB7F /* buddylist.cpp */; };
92BC40740BAEE55B000DAB7F /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC90BAEE55B000DAB7F /* image.cpp */; };
92BC40750BAEE55B000DAB7F /* imagewriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */; };
92BC40760BAEE55B000DAB7F /* itemdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */; };
@@ -244,6 +202,366 @@
92BC40D90BAEEED3000DAB7F /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40D80BAEEED3000DAB7F /* IOKit.framework */; };
92BC40E60BAEF54B000DAB7F /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */; };
92BC40E90BAEF57D000DAB7F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40E80BAEF57D000DAB7F /* Cocoa.framework */; };
+ 92C1150E0F8EBB360048CA8D /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1150C0F8EBB360048CA8D /* window.cpp */; };
+ 92C115120F8EBB550048CA8D /* itempopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115100F8EBB550048CA8D /* itempopup.cpp */; };
+ 92C1151A0F8EBB830048CA8D /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115140F8EBB830048CA8D /* listbox.cpp */; };
+ 92C1151B0F8EBB830048CA8D /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115160F8EBB830048CA8D /* scrollarea.cpp */; };
+ 92C1151C0F8EBB830048CA8D /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115180F8EBB830048CA8D /* slider.cpp */; };
+ 92C115200F8EBBA90048CA8D /* emoteshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */; };
+ 92C115280F8EBBD50048CA8D /* inttextfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115220F8EBBD50048CA8D /* inttextfield.cpp */; };
+ 92C115290F8EBBD50048CA8D /* popup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115240F8EBBD50048CA8D /* popup.cpp */; };
+ 92C1152A0F8EBBD50048CA8D /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115260F8EBBD50048CA8D /* textfield.cpp */; };
+ 92C1152D0F8EBBE30048CA8D /* storagewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1152B0F8EBBE30048CA8D /* storagewindow.cpp */; };
+ 92C115310F8EBC2B0048CA8D /* serverselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1152F0F8EBC2B0048CA8D /* serverselectdialog.cpp */; };
+ 92C115360F8EBC450048CA8D /* browserbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */; };
+ 92C115370F8EBC450048CA8D /* windowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115340F8EBC450048CA8D /* windowcontainer.cpp */; };
+ 92C1153B0F8EBC730048CA8D /* chattab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115390F8EBC730048CA8D /* chattab.cpp */; };
+ 92C1153E0F8EBC830048CA8D /* shortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1153C0F8EBC830048CA8D /* shortcutcontainer.cpp */; };
+ 92C115430F8EBCB70048CA8D /* setuptab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115400F8EBCB70048CA8D /* setuptab.cpp */; };
+ 92C115440F8EBCB70048CA8D /* shortcutwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */; };
+ 92C115470F8EBCD00048CA8D /* passwordfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115450F8EBCD00048CA8D /* passwordfield.cpp */; };
+ 92C1154D0F8EBD000048CA8D /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115490F8EBD000048CA8D /* checkbox.cpp */; };
+ 92C1154E0F8EBD000048CA8D /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1154B0F8EBD000048CA8D /* textbox.cpp */; };
+ 92C115540F8EBD250048CA8D /* label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115500F8EBD250048CA8D /* label.cpp */; };
+ 92C115550F8EBD250048CA8D /* progressbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115520F8EBD250048CA8D /* progressbar.cpp */; };
+ 92C115590F8EBD490048CA8D /* net.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115570F8EBD490048CA8D /* net.cpp */; };
+ 92C115840F8EBD570048CA8D /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1155B0F8EBD570048CA8D /* adminhandler.cpp */; };
+ 92C115850F8EBD570048CA8D /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1155D0F8EBD570048CA8D /* beinghandler.cpp */; };
+ 92C115860F8EBD570048CA8D /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1155F0F8EBD570048CA8D /* buysellhandler.cpp */; };
+ 92C115870F8EBD570048CA8D /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115610F8EBD570048CA8D /* charserverhandler.cpp */; };
+ 92C115880F8EBD570048CA8D /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115630F8EBD570048CA8D /* chathandler.cpp */; };
+ 92C115890F8EBD570048CA8D /* equipmenthandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115650F8EBD570048CA8D /* equipmenthandler.cpp */; };
+ 92C1158A0F8EBD570048CA8D /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115670F8EBD570048CA8D /* generalhandler.cpp */; };
+ 92C1158B0F8EBD570048CA8D /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1156A0F8EBD570048CA8D /* partytab.cpp */; };
+ 92C1158C0F8EBD570048CA8D /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1156C0F8EBD570048CA8D /* inventoryhandler.cpp */; };
+ 92C1158D0F8EBD570048CA8D /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1156E0F8EBD570048CA8D /* itemhandler.cpp */; };
+ 92C1158E0F8EBD570048CA8D /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115700F8EBD570048CA8D /* loginhandler.cpp */; };
+ 92C1158F0F8EBD570048CA8D /* logouthandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115720F8EBD570048CA8D /* logouthandler.cpp */; };
+ 92C115900F8EBD570048CA8D /* maphandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115740F8EBD570048CA8D /* maphandler.cpp */; };
+ 92C115910F8EBD570048CA8D /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115760F8EBD570048CA8D /* network.cpp */; };
+ 92C115920F8EBD570048CA8D /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115780F8EBD570048CA8D /* npchandler.cpp */; };
+ 92C115930F8EBD570048CA8D /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1157A0F8EBD570048CA8D /* partyhandler.cpp */; };
+ 92C115940F8EBD570048CA8D /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1157C0F8EBD570048CA8D /* playerhandler.cpp */; };
+ 92C115950F8EBD570048CA8D /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1157E0F8EBD570048CA8D /* protocol.cpp */; };
+ 92C115960F8EBD570048CA8D /* skillhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115800F8EBD570048CA8D /* skillhandler.cpp */; };
+ 92C115970F8EBD570048CA8D /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115820F8EBD570048CA8D /* tradehandler.cpp */; };
+ 92C1159B0F8EBD900048CA8D /* emotedb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115990F8EBD900048CA8D /* emotedb.cpp */; };
+ 92C115A20F8EBDB20048CA8D /* commandhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */; };
+ 92C115A30F8EBDB20048CA8D /* effectmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */; };
+ 92C115A40F8EBDB20048CA8D /* units.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115A00F8EBDB20048CA8D /* units.cpp */; };
+ 92C115B70F8EBE450048CA8D /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115AD0F8EBE450048CA8D /* palette.cpp */; };
+ 92C115B80F8EBE450048CA8D /* partywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115AF0F8EBE450048CA8D /* partywindow.cpp */; };
+ 92C115B90F8EBE450048CA8D /* recorder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B10F8EBE450048CA8D /* recorder.cpp */; };
+ 92C115BA0F8EBE450048CA8D /* skin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B30F8EBE450048CA8D /* skin.cpp */; };
+ 92C115BB0F8EBE450048CA8D /* speechbubble.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B50F8EBE450048CA8D /* speechbubble.cpp */; };
+ 92C115BF0F8EBE5E0048CA8D /* channeltab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */; };
+ 92C115C60F8EBE950048CA8D /* whispertab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115C30F8EBE950048CA8D /* whispertab.cpp */; };
+ 92C115C90F8EBECE0048CA8D /* charcreatedialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */; };
+ 92C115CD0F8EBF090048CA8D /* channelmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115CB0F8EBF090048CA8D /* channelmanager.cpp */; };
+ 92C115D20F8EBF1C0048CA8D /* colordb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */; };
+ 92C115D30F8EBF1C0048CA8D /* wallpaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */; };
+ 92C115DB0F8EBF530048CA8D /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D50F8EBF530048CA8D /* button.cpp */; };
+ 92C115DC0F8EBF530048CA8D /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D70F8EBF530048CA8D /* icon.cpp */; };
+ 92C115DD0F8EBF530048CA8D /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D90F8EBF530048CA8D /* radiobutton.cpp */; };
+ 92C115E10F8EBF7C0048CA8D /* avatar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115DF0F8EBF7C0048CA8D /* avatar.cpp */; };
+ 92C115E60F8EBF9A0048CA8D /* emotewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E20F8EBF9A0048CA8D /* emotewindow.cpp */; };
+ 92C115E70F8EBF9A0048CA8D /* itemlinkhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E40F8EBF9A0048CA8D /* itemlinkhandler.cpp */; };
+ 92C115EA0F8EBFA60048CA8D /* stringutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */; };
+ 92C115EE0F8EBFC20048CA8D /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115EC0F8EBFC20048CA8D /* channel.cpp */; };
+ 92C115F30F8EBFD20048CA8D /* emotecontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115EF0F8EBFD20048CA8D /* emotecontainer.cpp */; };
+ 92C115F40F8EBFD20048CA8D /* emoteshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F10F8EBFD20048CA8D /* emoteshortcutcontainer.cpp */; };
+ 92C115F70F8EBFDD0048CA8D /* dropdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F50F8EBFDD0048CA8D /* dropdown.cpp */; };
+ 92C115FB0F8EBFF30048CA8D /* setup_colors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F90F8EBFF30048CA8D /* setup_colors.cpp */; };
+ 92C115FF0F8EC0150048CA8D /* textpreview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115FD0F8EC0150048CA8D /* textpreview.cpp */; };
+ 92C116130F8EC08F0048CA8D /* circle-gray.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116010F8EC0590048CA8D /* circle-gray.png */; };
+ 92C116140F8EC08F0048CA8D /* circle-green.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116020F8EC0590048CA8D /* circle-green.png */; };
+ 92C116150F8EC08F0048CA8D /* default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116030F8EC0590048CA8D /* default.png */; };
+ 92C116160F8EC08F0048CA8D /* equip_bg.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116040F8EC0590048CA8D /* equip_bg.png */; };
+ 92C116170F8EC08F0048CA8D /* gui.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116050F8EC0590048CA8D /* gui.xml */; };
+ 92C116180F8EC08F0048CA8D /* speech_bubble.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116060F8EC0590048CA8D /* speech_bubble.png */; };
+ 92C116190F8EC08F0048CA8D /* speechbubble.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116070F8EC0590048CA8D /* speechbubble.xml */; };
+ 92C1161A0F8EC08F0048CA8D /* sticky_button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116080F8EC0590048CA8D /* sticky_button.png */; };
+ 92C116370F8EC4F60048CA8D /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40910BAEE818000DAB7F /* SDL.framework */; };
+ 92C116380F8EC4F60048CA8D /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408E0BAEE818000DAB7F /* SDL_image.framework */; };
+ 92C116390F8EC4F60048CA8D /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */; };
+ 92C1163A0F8EC4F60048CA8D /* SDL_ttf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 926A29790F23C155005D6466 /* SDL_ttf.framework */; };
+ 92C116410F8EC5ED0048CA8D /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F790BAEE55B000DAB7F /* main.cpp */; };
+ 92C116420F8EC6070048CA8D /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */; };
+ 92C1164F0F8EC8080048CA8D /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FEA0BAEE55B000DAB7F /* sound.cpp */; };
+ 92C116500F8EC8150048CA8D /* resourcemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */; };
+ 92C116520F8EC82C0048CA8D /* configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ED20BAEE55A000DAB7F /* configuration.cpp */; };
+ 92C116530F8EC84A0048CA8D /* setup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F470BAEE55A000DAB7F /* setup.cpp */; };
+ 92C116540F8EC8750048CA8D /* resource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FDB0BAEE55B000DAB7F /* resource.cpp */; };
+ 92C116560F8EC8A80048CA8D /* guichan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 922CD9EC0E3D02C50074C50E /* guichan.framework */; };
+ 92C116C50F8EC8D80048CA8D /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1150C0F8EBB360048CA8D /* window.cpp */; };
+ 92C116C70F8EC92E0048CA8D /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F760BAEE55B000DAB7F /* log.cpp */; };
+ 92C116C80F8EC9570048CA8D /* physfs.c in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FAB0BAEE55B000DAB7F /* physfs.c */; };
+ 92C116C90F8EC9660048CA8D /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CCE70D1DA58D00CA28FB /* zip.c */; };
+ 92C116CB0F8EC99E0048CA8D /* wallpaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */; };
+ 92C116CC0F8EC9CD0048CA8D /* emoteshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */; };
+ 92C116CD0F8EC9D90048CA8D /* progressbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115520F8EBD250048CA8D /* progressbar.cpp */; };
+ 92C116CF0F8ECA030048CA8D /* skin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B30F8EBE450048CA8D /* skin.cpp */; };
+ 92C116D00F8ECA130048CA8D /* tabbedarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29480F23BD88005D6466 /* tabbedarea.cpp */; };
+ 92C116D10F8ECA300048CA8D /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0B0BAEE55A000DAB7F /* connection.cpp */; };
+ 92C116D30F8ECA420048CA8D /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D50F8EBF530048CA8D /* button.cpp */; };
+ 92C116D40F8ECA550048CA8D /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */; };
+ 92C116D60F8ECA770048CA8D /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FF40BAEE55B000DAB7F /* xml.cpp */; };
+ 92C116D70F8ECAB10048CA8D /* strprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19BF0DDCE6F700D14E5D /* strprintf.cpp */; };
+ 92C116D80F8ECAFF0048CA8D /* dye.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CC9D0D1C622E00CA28FB /* dye.cpp */; };
+ 92C116D90F8ECB0A0048CA8D /* itemdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */; };
+ 92C116DA0F8ECB380048CA8D /* monsterdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */; };
+ 92C116DB0F8ECB410048CA8D /* char_select.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EFD0BAEE55A000DAB7F /* char_select.cpp */; };
+ 92C116DC0F8ECB550048CA8D /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29440F23BD88005D6466 /* layout.cpp */; };
+ 92C116DE0F8ECB7F0048CA8D /* units.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115A00F8EBDB20048CA8D /* units.cpp */; };
+ 92C116DF0F8ECB970048CA8D /* buy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF90BAEE55A000DAB7F /* buy.cpp */; };
+ 92C116E00F8ECBBA0048CA8D /* emotedb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115990F8EBD900048CA8D /* emotedb.cpp */; };
+ 92C116E20F8ECBC80048CA8D /* monsterinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */; };
+ 92C116E30F8ECBD10048CA8D /* shoplistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F520BAEE55A000DAB7F /* shoplistbox.cpp */; };
+ 92C116E60F8ECBE80048CA8D /* changepassworddialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */; };
+ 92C116E80F8ECC230048CA8D /* setup_joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */; };
+ 92C116E90F8ECC430048CA8D /* windowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115340F8EBC450048CA8D /* windowcontainer.cpp */; };
+ 92C116EC0F8ECC5F0048CA8D /* passwordfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115450F8EBCD00048CA8D /* passwordfield.cpp */; };
+ 92C116ED0F8ECC6A0048CA8D /* label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115500F8EBD250048CA8D /* label.cpp */; };
+ 92C116EE0F8ECC8B0048CA8D /* layouthelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92DD76450F267B3600B2B519 /* layouthelper.cpp */; };
+ 92C116EF0F8ECCBF0048CA8D /* colordb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */; };
+ 92C116F10F8ECCD50048CA8D /* joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F710BAEE55B000DAB7F /* joystick.cpp */; };
+ 92C116F20F8ECCE10048CA8D /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115490F8EBD000048CA8D /* checkbox.cpp */; };
+ 92C116F30F8ECCE70048CA8D /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115260F8EBBD50048CA8D /* textfield.cpp */; };
+ 92C116F40F8ECD180048CA8D /* macosx.c in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CCF20D1DA5C600CA28FB /* macosx.c */; };
+ 92C116F50F8ECD320048CA8D /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115140F8EBB830048CA8D /* listbox.cpp */; };
+ 92C1172F0F8ECD850048CA8D /* itemshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */; };
+ 92C117300F8ECD970048CA8D /* setup_video.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */; };
+ 92C117310F8ECDA10048CA8D /* shop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F500BAEE55A000DAB7F /* shop.cpp */; };
+ 92C117330F8ECDB10048CA8D /* register.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F400BAEE55A000DAB7F /* register.cpp */; };
+ 92C117340F8ECDCF0048CA8D /* dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CCE00D1DA58D00CA28FB /* dir.c */; };
+ 92C117350F8ECDDF0048CA8D /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115180F8EBB830048CA8D /* slider.cpp */; };
+ 92C117360F8ECDF90048CA8D /* updatewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */; };
+ 92C117380F8ECE150048CA8D /* browserbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */; };
+ 92C117390F8ECE290048CA8D /* physfs_unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CCFB0D1DA89800CA28FB /* physfs_unicode.c */; };
+ 92C1173A0F8ECE2E0048CA8D /* physfs_byteorder.c in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FAD0BAEE55B000DAB7F /* physfs_byteorder.c */; };
+ 92C1173B0F8ECE3E0048CA8D /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC90BAEE55B000DAB7F /* image.cpp */; };
+ 92C1173D0F8ECE550048CA8D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */; };
+ 92C1174F0F8ECE6A0048CA8D /* posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FB50BAEE55B000DAB7F /* posix.c */; };
+ 92C117500F8ECE8A0048CA8D /* charcreatedialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */; };
+ 92C117510F8ECE9C0048CA8D /* imageset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 925350010BC12A3200115FD5 /* imageset.cpp */; };
+ 92C117550F8ECEEA0048CA8D /* skilldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */; };
+ 92C1175A0F8ECF0B0048CA8D /* statuswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117560F8ECF0B0048CA8D /* statuswindow.cpp */; };
+ 92C1175B0F8ECF0B0048CA8D /* unregisterdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */; };
+ 92C1175D0F8ECF430048CA8D /* localplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */; };
+ 92C117850F8ECF710048CA8D /* npcdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD9560E3D00900074C50E /* npcdb.cpp */; };
+ 92C117860F8ECF7E0048CA8D /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115160F8EBB830048CA8D /* scrollarea.cpp */; };
+ 92C1178E0F8ECFA00048CA8D /* being.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECC0BAEE55A000DAB7F /* being.cpp */; };
+ 92C1178F0F8ECFA20048CA8D /* animatedsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */; };
+ 92C117900F8ECFAE0048CA8D /* player.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FBA0BAEE55B000DAB7F /* player.cpp */; };
+ 92C117910F8ECFEA0048CA8D /* shopitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD95D0E3D01080074C50E /* shopitem.cpp */; };
+ 92C1179F0F8ED0340048CA8D /* particlecontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */; };
+ 92C117A00F8ED03B0048CA8D /* game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEC0BAEE55A000DAB7F /* game.cpp */; };
+ 92C117A20F8ED0510048CA8D /* item.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F6F0BAEE55B000DAB7F /* item.cpp */; };
+ 92C117A30F8ED05C0048CA8D /* spritedef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */; };
+ 92C117A40F8ED0660048CA8D /* inventorywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */; };
+ 92C117A50F8ED0800048CA8D /* npcintegerdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A294E0F23BD9E005D6466 /* npcintegerdialog.cpp */; };
+ 92C117A60F8ED08A0048CA8D /* keyboardconfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */; };
+ 92C117A80F8ED0990048CA8D /* beingmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */; };
+ 92C117A90F8ED0A30048CA8D /* chat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */; };
+ 92C117AA0F8ED0AE0048CA8D /* inttextfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115220F8EBBD50048CA8D /* inttextfield.cpp */; };
+ 92C117AB0F8ED0B90048CA8D /* simpleanimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */; };
+ 92C117AC0F8ED0BE0048CA8D /* imagewriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */; };
+ 92C117AE0F8ED0CF0048CA8D /* action.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FBE0BAEE55B000DAB7F /* action.cpp */; };
+ 92C117AF0F8ED0E80048CA8D /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115AD0F8EBE450048CA8D /* palette.cpp */; };
+ 92C117B00F8ED0ED0048CA8D /* particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EC0C0784280066885E /* particle.cpp */; };
+ 92C117B10F8ED0FA0048CA8D /* effectmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */; };
+ 92C117B20F8ED11A0048CA8D /* engine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EE40BAEE55A000DAB7F /* engine.cpp */; };
+ 92C117B40F8ED12E0048CA8D /* statuseffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9273BE060EF33FB3008E56E1 /* statuseffect.cpp */; };
+ 92C117B50F8ED1480048CA8D /* viewport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F660BAEE55B000DAB7F /* viewport.cpp */; };
+ 92C117B60F8ED16C0048CA8D /* speechbubble.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B50F8EBE450048CA8D /* speechbubble.cpp */; };
+ 92C117B80F8ED17E0048CA8D /* openglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */; };
+ 92C117B90F8ED19D0048CA8D /* animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC20BAEE55B000DAB7F /* animation.cpp */; };
+ 92C117BB0F8ED1C30048CA8D /* imageparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EA0C0784280066885E /* imageparticle.cpp */; };
+ 92C117BC0F8ED1D30048CA8D /* ministatus.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */; };
+ 92C117BD0F8ED1D50048CA8D /* minimap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */; };
+ 92C117BF0F8ED1EE0048CA8D /* map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F7C0BAEE55B000DAB7F /* map.cpp */; };
+ 92C117C00F8ED2020048CA8D /* animationparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39E80C0784280066885E /* animationparticle.cpp */; };
+ 92C117C10F8ED20F0048CA8D /* equipmentwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */; };
+ 92C117C30F8ED2340048CA8D /* itempopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115100F8EBB550048CA8D /* itempopup.cpp */; };
+ 92C117C40F8ED26A0048CA8D /* ambientoverlay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */; };
+ 92C117C50F8ED28F0048CA8D /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40D80BAEEED3000DAB7F /* IOKit.framework */; };
+ 92C118640F8ED2B00048CA8D /* inventory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */; };
+ 92C118650F8ED2C80048CA8D /* popup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115240F8EBBD50048CA8D /* popup.cpp */; };
+ 92C118660F8ED2D10048CA8D /* soundeffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */; };
+ 92C118680F8ED2E40048CA8D /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D90F8EBF530048CA8D /* radiobutton.cpp */; };
+ 92C118690F8ED2F20048CA8D /* npclistdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F320BAEE55A000DAB7F /* npclistdialog.cpp */; };
+ 92C1186A0F8ED2FD0048CA8D /* chattab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115390F8EBC730048CA8D /* chattab.cpp */; };
+ 92C1186B0F8ED3040048CA8D /* help.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F190BAEE55A000DAB7F /* help.cpp */; };
+ 92C1186D0F8ED3120048CA8D /* npcstringdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29500F23BD9E005D6466 /* npcstringdialog.cpp */; };
+ 92C1186E0F8ED31C0048CA8D /* popupmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */; };
+ 92C118710F8ED33F0048CA8D /* quitdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */; };
+ 92C118730F8ED3640048CA8D /* trade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F600BAEE55B000DAB7F /* trade.cpp */; };
+ 92C118740F8ED36B0048CA8D /* tab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29460F23BD88005D6466 /* tab.cpp */; };
+ 92C118750F8ED37A0048CA8D /* partywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115AF0F8EBE450048CA8D /* partywindow.cpp */; };
+ 92C118760F8ED3840048CA8D /* itemcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F210BAEE55A000DAB7F /* itemcontainer.cpp */; };
+ 92C118770F8ED38D0048CA8D /* whispertab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115C30F8EBE950048CA8D /* whispertab.cpp */; };
+ 92C118790F8ED3A80048CA8D /* emotewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E20F8EBF9A0048CA8D /* emotewindow.cpp */; };
+ 92C1187A0F8ED3BE0048CA8D /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1154B0F8EBD000048CA8D /* textbox.cpp */; };
+ 92C1187B0F8ED3C90048CA8D /* menuwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F280BAEE55A000DAB7F /* menuwindow.cpp */; };
+ 92C1187C0F8ED3E50048CA8D /* itemshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926F9D410DB00AFC00AACD26 /* itemshortcutcontainer.cpp */; };
+ 92C1187E0F8ED4000048CA8D /* iteminfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */; };
+ 92C1187F0F8ED40D0048CA8D /* player_relations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19AE0DDCE51000D14E5D /* player_relations.cpp */; };
+ 92C118800F8ED41B0048CA8D /* floor_item.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EE80BAEE55A000DAB7F /* floor_item.cpp */; };
+ 92C118810F8ED41F0048CA8D /* flooritemmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */; };
+ 92C118820F8ED4270048CA8D /* npc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA50BAEE55B000DAB7F /* npc.cpp */; };
+ 92C118840F8ED43C0048CA8D /* avatar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115DF0F8EBF7C0048CA8D /* avatar.cpp */; };
+ 92C118850F8ED44A0048CA8D /* particleemitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EE0C0784280066885E /* particleemitter.cpp */; };
+ 92C118860F8ED4590048CA8D /* textparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39F00C0784280066885E /* textparticle.cpp */; };
+ 92C118870F8ED4640048CA8D /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115EC0F8EBFC20048CA8D /* channel.cpp */; };
+ 92C118880F8ED4650048CA8D /* channelmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115CB0F8EBF090048CA8D /* channelmanager.cpp */; };
+ 92C118890F8ED46B0048CA8D /* commandhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */; };
+ 92C1188B0F8ED47F0048CA8D /* shortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1153C0F8EBC830048CA8D /* shortcutcontainer.cpp */; };
+ 92C1188C0F8ED4980048CA8D /* item_amount.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F1F0BAEE55A000DAB7F /* item_amount.cpp */; };
+ 92C1188D0F8ED49F0048CA8D /* mapreader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */; };
+ 92C118900F8ED4B30048CA8D /* guild.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1188E0F8ED4B30048CA8D /* guild.cpp */; };
+ 92C118920F8ED4D10048CA8D /* ok_dialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F340BAEE55A000DAB7F /* ok_dialog.cpp */; };
+ 92C118930F8ED4DC0048CA8D /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D70F8EBF530048CA8D /* icon.cpp */; };
+ 92C118940F8ED4E40048CA8D /* itemlinkhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E40F8EBF9A0048CA8D /* itemlinkhandler.cpp */; };
+ 92C118960F8ED4FE0048CA8D /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9294DAA00C17E73200FCEDE9 /* libpng.framework */; };
+ 92C1189A0F8ED50B0048CA8D /* equipment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EE60BAEE55A000DAB7F /* equipment.cpp */; };
+ 92C1189B0F8ED5140048CA8D /* setup_colors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F90F8EBFF30048CA8D /* setup_colors.cpp */; };
+ 92C1189C0F8ED5180048CA8D /* setup_keyboard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */; };
+ 92C1189D0F8ED5210048CA8D /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92037A1B0ED2037300D3712D /* text.cpp */; };
+ 92C1189E0F8ED5460048CA8D /* monster.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F7E0BAEE55B000DAB7F /* monster.cpp */; };
+ 92C1189F0F8ED54A0048CA8D /* channeltab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */; };
+ 92C118ED0F8ED5640048CA8D /* resizegrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A3A100C07A60B0066885E /* resizegrip.cpp */; };
+ 92C118EE0F8ED56A0048CA8D /* recorder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B10F8EBE450048CA8D /* recorder.cpp */; };
+ 92C118EF0F8ED5760048CA8D /* textmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92037A1D0ED2037300D3712D /* textmanager.cpp */; };
+ 92C118F00F8ED5870048CA8D /* emotecontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115EF0F8EBFD20048CA8D /* emotecontainer.cpp */; };
+ 92C118F10F8ED5A60048CA8D /* textpreview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115FD0F8EC0150048CA8D /* textpreview.cpp */; };
+ 92C118F40F8ED5DE0048CA8D /* textdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */; };
+ 92C118F60F8ED5F00048CA8D /* buddywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF50BAEE55A000DAB7F /* buddywindow.cpp */; };
+ 92C118F70F8ED60C0048CA8D /* stringutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */; };
+ 92C118F80F8ED6140048CA8D /* sell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F450BAEE55A000DAB7F /* sell.cpp */; };
+ 92C118F90F8ED6160048CA8D /* sdlinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29520F23BD9E005D6466 /* sdlinput.cpp */; };
+ 92C119030F8ED63F0048CA8D /* guildlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C118FB0F8ED63F0048CA8D /* guildlistbox.cpp */; };
+ 92C119040F8ED63F0048CA8D /* guildwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C118FD0F8ED63F0048CA8D /* guildwindow.cpp */; };
+ 92C119050F8ED63F0048CA8D /* magic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C118FF0F8ED63F0048CA8D /* magic.cpp */; };
+ 92C119060F8ED63F0048CA8D /* npcpostdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */; };
+ 92C119080F8ED6890048CA8D /* setup_players.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19B30DDCE53400D14E5D /* setup_players.cpp */; };
+ 92C119090F8ED6920048CA8D /* debugwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */; };
+ 92C1190A0F8ED6970048CA8D /* confirm_dialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F090BAEE55A000DAB7F /* confirm_dialog.cpp */; };
+ 92C1190D0F8ED6C70048CA8D /* dropdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F50F8EBFDD0048CA8D /* dropdown.cpp */; };
+ 92C1190E0F8ED6F80048CA8D /* npc_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F300BAEE55A000DAB7F /* npc_text.cpp */; };
+ 92C1190F0F8ED7010048CA8D /* net.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115570F8EBD490048CA8D /* net.cpp */; };
+ 92C119100F8ED7200048CA8D /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F150BAEE55A000DAB7F /* gui.cpp */; };
+ 92C119110F8ED7370048CA8D /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FEF0BAEE55B000DAB7F /* base64.cpp */; };
+ 92C119130F8ED7480048CA8D /* truetypefont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29540F23BD9E005D6466 /* truetypefont.cpp */; };
+ 92C119140F8ED74D0048CA8D /* table_model.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19B70DDCE53400D14E5D /* table_model.cpp */; };
+ 92C119150F8ED7650048CA8D /* login.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F260BAEE55A000DAB7F /* login.cpp */; };
+ 92C119170F8ED7700048CA8D /* music.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD70BAEE55B000DAB7F /* music.cpp */; };
+ 92C119180F8ED77D0048CA8D /* serverselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1152F0F8EBC2B0048CA8D /* serverselectdialog.cpp */; };
+ 92C119190F8ED7860048CA8D /* table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19B50DDCE53400D14E5D /* table.cpp */; };
+ 92C1191D0F8ED79A0048CA8D /* changeemaildialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */; };
+ 92C1191E0F8ED7A70048CA8D /* shortcutwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */; };
+ 92C119630F8ED7C20048CA8D /* account.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119220F8ED7C20048CA8D /* account.cpp */; };
+ 92C119640F8ED7C20048CA8D /* accountserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119240F8ED7C20048CA8D /* accountserver.cpp */; };
+ 92C119650F8ED7C20048CA8D /* internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119260F8ED7C20048CA8D /* internal.cpp */; };
+ 92C119660F8ED7C20048CA8D /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119280F8ED7C20048CA8D /* adminhandler.cpp */; };
+ 92C119670F8ED7C20048CA8D /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1192A0F8ED7C20048CA8D /* beinghandler.cpp */; };
+ 92C119680F8ED7C20048CA8D /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1192C0F8ED7C20048CA8D /* buysellhandler.cpp */; };
+ 92C119690F8ED7C20048CA8D /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1192E0F8ED7C20048CA8D /* charserverhandler.cpp */; };
+ 92C1196A0F8ED7C20048CA8D /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119300F8ED7C20048CA8D /* chathandler.cpp */; };
+ 92C1196B0F8ED7C20048CA8D /* chatserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119330F8ED7C20048CA8D /* chatserver.cpp */; };
+ 92C1196C0F8ED7C20048CA8D /* guild.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119350F8ED7C20048CA8D /* guild.cpp */; };
+ 92C1196D0F8ED7C20048CA8D /* internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119370F8ED7C20048CA8D /* internal.cpp */; };
+ 92C1196E0F8ED7C20048CA8D /* party.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119390F8ED7C20048CA8D /* party.cpp */; };
+ 92C1196F0F8ED7C20048CA8D /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1193B0F8ED7C20048CA8D /* connection.cpp */; };
+ 92C119700F8ED7C20048CA8D /* effecthandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1193D0F8ED7C20048CA8D /* effecthandler.cpp */; };
+ 92C119710F8ED7C20048CA8D /* gameserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119400F8ED7C20048CA8D /* gameserver.cpp */; };
+ 92C119720F8ED7C20048CA8D /* internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119420F8ED7C20048CA8D /* internal.cpp */; };
+ 92C119730F8ED7C20048CA8D /* player.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119440F8ED7C20048CA8D /* player.cpp */; };
+ 92C119740F8ED7C20048CA8D /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119460F8ED7C20048CA8D /* generalhandler.cpp */; };
+ 92C119750F8ED7C20048CA8D /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119480F8ED7C20048CA8D /* guildhandler.cpp */; };
+ 92C119760F8ED7C20048CA8D /* internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1194A0F8ED7C20048CA8D /* internal.cpp */; };
+ 92C119770F8ED7C20048CA8D /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1194C0F8ED7C20048CA8D /* inventoryhandler.cpp */; };
+ 92C119780F8ED7C20048CA8D /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1194E0F8ED7C20048CA8D /* itemhandler.cpp */; };
+ 92C119790F8ED7C20048CA8D /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119500F8ED7C20048CA8D /* loginhandler.cpp */; };
+ 92C1197A0F8ED7C20048CA8D /* logouthandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119520F8ED7C20048CA8D /* logouthandler.cpp */; };
+ 92C1197B0F8ED7C20048CA8D /* maphandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119540F8ED7C20048CA8D /* maphandler.cpp */; };
+ 92C1197C0F8ED7C20048CA8D /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119560F8ED7C20048CA8D /* network.cpp */; };
+ 92C1197D0F8ED7C20048CA8D /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119580F8ED7C20048CA8D /* npchandler.cpp */; };
+ 92C1197E0F8ED7C20048CA8D /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1195A0F8ED7C20048CA8D /* partyhandler.cpp */; };
+ 92C1197F0F8ED7C20048CA8D /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1195C0F8ED7C20048CA8D /* playerhandler.cpp */; };
+ 92C119800F8ED7C20048CA8D /* skillhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1195F0F8ED7C20048CA8D /* skillhandler.cpp */; };
+ 92C119810F8ED7C20048CA8D /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119610F8ED7C20048CA8D /* tradehandler.cpp */; };
+ 92C119850F8ED80E0048CA8D /* serverdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119830F8ED80E0048CA8D /* serverdialog.cpp */; };
+ 92C119870F8ED8250048CA8D /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F930BAEE55B000DAB7F /* messagehandler.cpp */; };
+ 92C119880F8ED8250048CA8D /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F950BAEE55B000DAB7F /* messagein.cpp */; };
+ 92C119890F8ED8270048CA8D /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F970BAEE55B000DAB7F /* messageout.cpp */; };
+ 92C1198B0F8ED83A0048CA8D /* setuptab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115400F8EBCB70048CA8D /* setuptab.cpp */; };
+ 92C1198C0F8ED8420048CA8D /* playerbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F380BAEE55A000DAB7F /* playerbox.cpp */; };
+ 92C119900F8ED85E0048CA8D /* sha256.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1198E0F8ED85E0048CA8D /* sha256.cpp */; };
+ 92C119920F8ED86F0048CA8D /* emoteshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F10F8EBFD20048CA8D /* emoteshortcutcontainer.cpp */; };
+ 92C119930F8ED87A0048CA8D /* setup_audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */; };
+ 92C119940F8ED8850048CA8D /* imageloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024E740CF1DCF6006B55CB /* imageloader.cpp */; };
+ 92C119960F8ED8920048CA8D /* focushandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F110BAEE55A000DAB7F /* focushandler.cpp */; };
+ 92C119990F8ED8B00048CA8D /* position.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119980F8ED8B00048CA8D /* position.cpp */; };
+ 92C1199B0F8ED90C0048CA8D /* circle-gray.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116010F8EC0590048CA8D /* circle-gray.png */; };
+ 92C1199C0F8ED90C0048CA8D /* circle-green.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116020F8EC0590048CA8D /* circle-green.png */; };
+ 92C1199D0F8ED90C0048CA8D /* default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116030F8EC0590048CA8D /* default.png */; };
+ 92C1199E0F8ED90C0048CA8D /* equip_bg.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116040F8EC0590048CA8D /* equip_bg.png */; };
+ 92C1199F0F8ED90C0048CA8D /* gui.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116050F8EC0590048CA8D /* gui.xml */; };
+ 92C119A00F8ED90C0048CA8D /* speech_bubble.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116060F8EC0590048CA8D /* speech_bubble.png */; };
+ 92C119A10F8ED90C0048CA8D /* speechbubble.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116070F8EC0590048CA8D /* speechbubble.xml */; };
+ 92C119A20F8ED90C0048CA8D /* sticky_button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116080F8EC0590048CA8D /* sticky_button.png */; };
+ 92C119A30F8ED90C0048CA8D /* bubble.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 928B50E40F2FB5430011C755 /* bubble.png */; };
+ 92C119A40F8ED90C0048CA8D /* tab.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297E0F23C18E005D6466 /* tab.png */; };
+ 92C119A50F8ED90C0048CA8D /* tabselected.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297F0F23C18E005D6466 /* tabselected.png */; };
+ 92C119A60F8ED90C0048CA8D /* close_button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5B0CF1BE5C006B55CB /* close_button.png */; };
+ 92C119A70F8ED90C0048CA8D /* unknown-item.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5D0CF1BE5C006B55CB /* unknown-item.png */; };
+ 92C119A80F8ED90C0048CA8D /* item_shortcut_bgr.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */; };
+ 92C119A90F8ED90C0048CA8D /* bg_quad_dis.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E600C085ED70066885E /* bg_quad_dis.png */; };
+ 92C119AA0F8ED90C0048CA8D /* button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E620C085ED70066885E /* button.png */; };
+ 92C119AB0F8ED90C0048CA8D /* button_disabled.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E630C085ED70066885E /* button_disabled.png */; };
+ 92C119AC0F8ED90C0048CA8D /* buttonhi.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E640C085ED70066885E /* buttonhi.png */; };
+ 92C119AD0F8ED90C0048CA8D /* buttonpress.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E650C085ED70066885E /* buttonpress.png */; };
+ 92C119AE0F8ED90C0048CA8D /* checkbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E660C085ED70066885E /* checkbox.png */; };
+ 92C119AF0F8ED90C0048CA8D /* deepbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E680C085ED70066885E /* deepbox.png */; };
+ 92C119B00F8ED90C0048CA8D /* hscroll_left_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6D0C085ED70066885E /* hscroll_left_default.png */; };
+ 92C119B10F8ED90C0048CA8D /* hscroll_left_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */; };
+ 92C119B20F8ED90C0048CA8D /* hscroll_left_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */; };
+ 92C119B30F8ED90C0048CA8D /* hscroll_right_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E700C085ED70066885E /* hscroll_right_default.png */; };
+ 92C119B40F8ED90C0048CA8D /* hscroll_right_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E710C085ED70066885E /* hscroll_right_highlight.png */; };
+ 92C119B50F8ED90C0048CA8D /* hscroll_right_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E720C085ED70066885E /* hscroll_right_pressed.png */; };
+ 92C119B60F8ED90C0048CA8D /* mouse.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E780C085ED70066885E /* mouse.png */; };
+ 92C119B70F8ED90C0048CA8D /* radioin.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E790C085ED70066885E /* radioin.png */; };
+ 92C119B80F8ED90C0048CA8D /* radioout.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7A0C085ED70066885E /* radioout.png */; };
+ 92C119B90F8ED90C0048CA8D /* resize.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7B0C085ED70066885E /* resize.png */; };
+ 92C119BA0F8ED90C0048CA8D /* selection.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7E0C085ED70066885E /* selection.png */; };
+ 92C119BB0F8ED90C0048CA8D /* slider.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7F0C085ED70066885E /* slider.png */; };
+ 92C119BC0F8ED90C0048CA8D /* target-cursor-blue-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E800C085ED70066885E /* target-cursor-blue-l.png */; };
+ 92C119BD0F8ED90C0048CA8D /* target-cursor-blue-m.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E810C085ED70066885E /* target-cursor-blue-m.png */; };
+ 92C119BE0F8ED90C0048CA8D /* target-cursor-blue-s.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E820C085ED70066885E /* target-cursor-blue-s.png */; };
+ 92C119BF0F8ED90C0048CA8D /* target-cursor-red-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E830C085ED70066885E /* target-cursor-red-l.png */; };
+ 92C119C00F8ED90C0048CA8D /* target-cursor-red-m.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E840C085ED70066885E /* target-cursor-red-m.png */; };
+ 92C119C10F8ED90C0048CA8D /* target-cursor-red-s.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E850C085ED70066885E /* target-cursor-red-s.png */; };
+ 92C119C20F8ED90C0048CA8D /* vscroll_blue.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E870C085ED70066885E /* vscroll_blue.png */; };
+ 92C119C30F8ED90C0048CA8D /* vscroll_down_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E880C085ED70066885E /* vscroll_down_default.png */; };
+ 92C119C40F8ED90C0048CA8D /* vscroll_down_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E890C085ED70066885E /* vscroll_down_highlight.png */; };
+ 92C119C50F8ED90C0048CA8D /* vscroll_down_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */; };
+ 92C119C60F8ED90C0048CA8D /* vscroll_grey.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8B0C085ED70066885E /* vscroll_grey.png */; };
+ 92C119C70F8ED90C0048CA8D /* vscroll_red.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8C0C085ED70066885E /* vscroll_red.png */; };
+ 92C119C80F8ED90C0048CA8D /* vscroll_up_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8D0C085ED70066885E /* vscroll_up_default.png */; };
+ 92C119C90F8ED90C0048CA8D /* vscroll_up_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */; };
+ 92C119CA0F8ED90C0048CA8D /* vscroll_up_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */; };
+ 92C119CC0F8ED9470048CA8D /* dejavusans.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 926A29980F23C988005D6466 /* dejavusans.ttf */; };
+ 92C119CF0F8ED9890048CA8D /* SDL_ttf.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 926A29790F23C155005D6466 /* SDL_ttf.framework */; };
+ 92C119D20F8ED98C0048CA8D /* guichan.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922CD9EC0E3D02C50074C50E /* guichan.framework */; };
+ 92C119D30F8ED98F0048CA8D /* libpng.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9294DAA00C17E73200FCEDE9 /* libpng.framework */; };
+ 92C119D40F8ED9950048CA8D /* SDL_image.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408E0BAEE818000DAB7F /* SDL_image.framework */; };
+ 92C119D70F8ED9A90048CA8D /* SDL_mixer.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */; };
+ 92C119DB0F8ED9BE0048CA8D /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40910BAEE818000DAB7F /* SDL.framework */; };
+ 92C11A050F8ED9E70048CA8D /* error.png in Copy Image Files */ = {isa = PBXBuildFile; fileRef = 924A3E990C085ED70066885E /* error.png */; };
+ 92C11A060F8ED9E70048CA8D /* login_wallpaper.png in Copy Image Files */ = {isa = PBXBuildFile; fileRef = 924A3E9A0C085ED70066885E /* login_wallpaper.png */; };
+ 92C11A1C0F8EDAB30048CA8D /* items.xsd in Copy Data Files */ = {isa = PBXBuildFile; fileRef = 924A401C0C085ED80066885E /* items.xsd */; };
+ 92C11A380F8EDAE50048CA8D /* The Mana World.icns in Resources */ = {isa = PBXBuildFile; fileRef = 924A42590C0871EC0066885E /* The Mana World.icns */; };
+ 92DD76470F267B3600B2B519 /* layouthelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92DD76450F267B3600B2B519 /* layouthelper.cpp */; };
92EEA0030D2E20B300DDE300 /* libpng.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9294DAA00C17E73200FCEDE9 /* libpng.framework */; };
92EEA0050D2E20B300DDE300 /* SDL_image.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408E0BAEE818000DAB7F /* SDL_image.framework */; };
92EEA0060D2E20B300DDE300 /* SDL_mixer.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */; };
@@ -254,7 +572,6 @@
92FD19BB0DDCE53400D14E5D /* table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19B50DDCE53400D14E5D /* table.cpp */; };
92FD19BC0DDCE53400D14E5D /* table_model.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19B70DDCE53400D14E5D /* table_model.cpp */; };
92FD19C10DDCE6F700D14E5D /* strprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19BF0DDCE6F700D14E5D /* strprintf.cpp */; };
- 92FD19C80DDCEBA500D14E5D /* emotions.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92FD19C60DDCEB8500D14E5D /* emotions.png */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
@@ -275,7 +592,17 @@
dstPath = data/graphics/gui;
dstSubfolderSpec = 7;
files = (
- 92FD19C80DDCEBA500D14E5D /* emotions.png in Copy GUI Files */,
+ 928B50E60F2FB56D0011C755 /* bubble.png in Copy GUI Files */,
+ 926A299A0F23C9F4005D6466 /* tab.png in Copy GUI Files */,
+ 92C116130F8EC08F0048CA8D /* circle-gray.png in Copy GUI Files */,
+ 92C116140F8EC08F0048CA8D /* circle-green.png in Copy GUI Files */,
+ 92C116150F8EC08F0048CA8D /* default.png in Copy GUI Files */,
+ 92C116160F8EC08F0048CA8D /* equip_bg.png in Copy GUI Files */,
+ 92C116170F8EC08F0048CA8D /* gui.xml in Copy GUI Files */,
+ 92C116180F8EC08F0048CA8D /* speech_bubble.png in Copy GUI Files */,
+ 92C116190F8EC08F0048CA8D /* speechbubble.xml in Copy GUI Files */,
+ 92C1161A0F8EC08F0048CA8D /* sticky_button.png in Copy GUI Files */,
+ 926A299B0F23C9F4005D6466 /* tabselected.png in Copy GUI Files */,
92024E170CF1C11D006B55CB /* item_shortcut_bgr.png in Copy GUI Files */,
92024E150CF1C0DA006B55CB /* close_button.png in Copy GUI Files */,
924A405A0C085F950066885E /* bg_quad_dis.png in Copy GUI Files */,
@@ -286,25 +613,16 @@
924A405F0C085F950066885E /* buttonpress.png in Copy GUI Files */,
924A40600C085F950066885E /* checkbox.png in Copy GUI Files */,
924A40610C085F950066885E /* deepbox.png in Copy GUI Files */,
- 924A40620C085F950066885E /* fixedfont.png in Copy GUI Files */,
- 924A40630C085F950066885E /* hits_blue.png in Copy GUI Files */,
- 924A40640C085F950066885E /* hits_red.png in Copy GUI Files */,
- 924A40650C085F950066885E /* hits_yellow.png in Copy GUI Files */,
924A40660C085F950066885E /* hscroll_left_default.png in Copy GUI Files */,
924A40670C085F950066885E /* hscroll_left_highlight.png in Copy GUI Files */,
924A40680C085F950066885E /* hscroll_left_pressed.png in Copy GUI Files */,
924A40690C085F950066885E /* hscroll_right_default.png in Copy GUI Files */,
924A406A0C085F950066885E /* hscroll_right_highlight.png in Copy GUI Files */,
924A406B0C085F950066885E /* hscroll_right_pressed.png in Copy GUI Files */,
- 924A406C0C085F950066885E /* menuitemD.png in Copy GUI Files */,
- 924A406D0C085F950066885E /* menuitemF.png in Copy GUI Files */,
- 924A406E0C085F950066885E /* menuitemN.png in Copy GUI Files */,
- 924A406F0C085F950066885E /* menuitemP.png in Copy GUI Files */,
924A40700C085F950066885E /* mouse.png in Copy GUI Files */,
924A40710C085F950066885E /* radioin.png in Copy GUI Files */,
924A40720C085F950066885E /* radioout.png in Copy GUI Files */,
924A40730C085F950066885E /* resize.png in Copy GUI Files */,
- 924A40740C085F950066885E /* rpgfont_wider.png in Copy GUI Files */,
924A40760C085F950066885E /* selection.png in Copy GUI Files */,
924A40770C085F950066885E /* slider.png in Copy GUI Files */,
924A40780C085F950066885E /* target-cursor-blue-l.png in Copy GUI Files */,
@@ -313,7 +631,6 @@
924A407B0C085F950066885E /* target-cursor-red-l.png in Copy GUI Files */,
924A407C0C085F950066885E /* target-cursor-red-m.png in Copy GUI Files */,
924A407D0C085F950066885E /* target-cursor-red-s.png in Copy GUI Files */,
- 924A407E0C085F950066885E /* thickborder.png in Copy GUI Files */,
924A407F0C085F950066885E /* vscroll_blue.png in Copy GUI Files */,
924A40800C085F950066885E /* vscroll_down_default.png in Copy GUI Files */,
924A40810C085F950066885E /* vscroll_down_highlight.png in Copy GUI Files */,
@@ -345,6 +662,7 @@
dstPath = data/help;
dstSubfolderSpec = 7;
files = (
+ 926A299C0F23CA27005D6466 /* windows.txt in Copy Help Files */,
924A42020C0861EC0066885E /* about.txt in Copy Help Files */,
924A42030C0861EC0066885E /* changes.txt in Copy Help Files */,
924A42040C0861EC0066885E /* commands.txt in Copy Help Files */,
@@ -357,28 +675,142 @@
name = "Copy Help Files";
runOnlyForDeploymentPostprocessing = 0;
};
+ 926A29AA0F23CA6D005D6466 /* Copy Font Files */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = data/fonts;
+ dstSubfolderSpec = 7;
+ files = (
+ 926A299E0F23CA5A005D6466 /* dejavusans.ttf in Copy Font Files */,
+ );
+ name = "Copy Font Files";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
9273BE3C0EF34050008E56E1 /* Copy Music Files */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = data/music;
dstSubfolderSpec = 7;
files = (
- 9273BE2D0EF3403E008E56E1 /* Clouds Calling.ogg in Copy Music Files */,
- 9273BE2E0EF3403E008E56E1 /* Faith.ogg in Copy Music Files */,
- 9273BE2F0EF3403E008E56E1 /* finalman_and_yakslem-cavesong.ogg in Copy Music Files */,
- 9273BE300EF3403E008E56E1 /* Magick - Real.ogg in Copy Music Files */,
- 9273BE310EF3403E008E56E1 /* The Mana World - Snow Village.ogg in Copy Music Files */,
- 9273BE320EF3403E008E56E1 /* The Mana World - The Forest.ogg in Copy Music Files */,
);
name = "Copy Music Files";
runOnlyForDeploymentPostprocessing = 0;
};
+ 92C116320F8EC4720048CA8D /* Copy GUI Files */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = data/graphics/gui;
+ dstSubfolderSpec = 7;
+ files = (
+ 92C1199B0F8ED90C0048CA8D /* circle-gray.png in Copy GUI Files */,
+ 92C1199C0F8ED90C0048CA8D /* circle-green.png in Copy GUI Files */,
+ 92C1199D0F8ED90C0048CA8D /* default.png in Copy GUI Files */,
+ 92C1199E0F8ED90C0048CA8D /* equip_bg.png in Copy GUI Files */,
+ 92C1199F0F8ED90C0048CA8D /* gui.xml in Copy GUI Files */,
+ 92C119A00F8ED90C0048CA8D /* speech_bubble.png in Copy GUI Files */,
+ 92C119A10F8ED90C0048CA8D /* speechbubble.xml in Copy GUI Files */,
+ 92C119A20F8ED90C0048CA8D /* sticky_button.png in Copy GUI Files */,
+ 92C119A30F8ED90C0048CA8D /* bubble.png in Copy GUI Files */,
+ 92C119A40F8ED90C0048CA8D /* tab.png in Copy GUI Files */,
+ 92C119A50F8ED90C0048CA8D /* tabselected.png in Copy GUI Files */,
+ 92C119A60F8ED90C0048CA8D /* close_button.png in Copy GUI Files */,
+ 92C119A70F8ED90C0048CA8D /* unknown-item.png in Copy GUI Files */,
+ 92C119A80F8ED90C0048CA8D /* item_shortcut_bgr.png in Copy GUI Files */,
+ 92C119A90F8ED90C0048CA8D /* bg_quad_dis.png in Copy GUI Files */,
+ 92C119AA0F8ED90C0048CA8D /* button.png in Copy GUI Files */,
+ 92C119AB0F8ED90C0048CA8D /* button_disabled.png in Copy GUI Files */,
+ 92C119AC0F8ED90C0048CA8D /* buttonhi.png in Copy GUI Files */,
+ 92C119AD0F8ED90C0048CA8D /* buttonpress.png in Copy GUI Files */,
+ 92C119AE0F8ED90C0048CA8D /* checkbox.png in Copy GUI Files */,
+ 92C119AF0F8ED90C0048CA8D /* deepbox.png in Copy GUI Files */,
+ 92C119B00F8ED90C0048CA8D /* hscroll_left_default.png in Copy GUI Files */,
+ 92C119B10F8ED90C0048CA8D /* hscroll_left_highlight.png in Copy GUI Files */,
+ 92C119B20F8ED90C0048CA8D /* hscroll_left_pressed.png in Copy GUI Files */,
+ 92C119B30F8ED90C0048CA8D /* hscroll_right_default.png in Copy GUI Files */,
+ 92C119B40F8ED90C0048CA8D /* hscroll_right_highlight.png in Copy GUI Files */,
+ 92C119B50F8ED90C0048CA8D /* hscroll_right_pressed.png in Copy GUI Files */,
+ 92C119B60F8ED90C0048CA8D /* mouse.png in Copy GUI Files */,
+ 92C119B70F8ED90C0048CA8D /* radioin.png in Copy GUI Files */,
+ 92C119B80F8ED90C0048CA8D /* radioout.png in Copy GUI Files */,
+ 92C119B90F8ED90C0048CA8D /* resize.png in Copy GUI Files */,
+ 92C119BA0F8ED90C0048CA8D /* selection.png in Copy GUI Files */,
+ 92C119BB0F8ED90C0048CA8D /* slider.png in Copy GUI Files */,
+ 92C119BC0F8ED90C0048CA8D /* target-cursor-blue-l.png in Copy GUI Files */,
+ 92C119BD0F8ED90C0048CA8D /* target-cursor-blue-m.png in Copy GUI Files */,
+ 92C119BE0F8ED90C0048CA8D /* target-cursor-blue-s.png in Copy GUI Files */,
+ 92C119BF0F8ED90C0048CA8D /* target-cursor-red-l.png in Copy GUI Files */,
+ 92C119C00F8ED90C0048CA8D /* target-cursor-red-m.png in Copy GUI Files */,
+ 92C119C10F8ED90C0048CA8D /* target-cursor-red-s.png in Copy GUI Files */,
+ 92C119C20F8ED90C0048CA8D /* vscroll_blue.png in Copy GUI Files */,
+ 92C119C30F8ED90C0048CA8D /* vscroll_down_default.png in Copy GUI Files */,
+ 92C119C40F8ED90C0048CA8D /* vscroll_down_highlight.png in Copy GUI Files */,
+ 92C119C50F8ED90C0048CA8D /* vscroll_down_pressed.png in Copy GUI Files */,
+ 92C119C60F8ED90C0048CA8D /* vscroll_grey.png in Copy GUI Files */,
+ 92C119C70F8ED90C0048CA8D /* vscroll_red.png in Copy GUI Files */,
+ 92C119C80F8ED90C0048CA8D /* vscroll_up_default.png in Copy GUI Files */,
+ 92C119C90F8ED90C0048CA8D /* vscroll_up_highlight.png in Copy GUI Files */,
+ 92C119CA0F8ED90C0048CA8D /* vscroll_up_pressed.png in Copy GUI Files */,
+ );
+ name = "Copy GUI Files";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 92C119CD0F8ED96C0048CA8D /* Copy Font Files */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = data/fonts;
+ dstSubfolderSpec = 7;
+ files = (
+ 92C119CC0F8ED9470048CA8D /* dejavusans.ttf in Copy Font Files */,
+ );
+ name = "Copy Font Files";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 92C11A130F8ED9F50048CA8D /* Copy Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ 92C119DB0F8ED9BE0048CA8D /* SDL.framework in Copy Frameworks */,
+ 92C119D70F8ED9A90048CA8D /* SDL_mixer.framework in Copy Frameworks */,
+ 92C119D40F8ED9950048CA8D /* SDL_image.framework in Copy Frameworks */,
+ 92C119D30F8ED98F0048CA8D /* libpng.framework in Copy Frameworks */,
+ 92C119D20F8ED98C0048CA8D /* guichan.framework in Copy Frameworks */,
+ 92C119CF0F8ED9890048CA8D /* SDL_ttf.framework in Copy Frameworks */,
+ );
+ name = "Copy Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 92C11A140F8ED9F50048CA8D /* Copy Image Files */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = data/graphics/images;
+ dstSubfolderSpec = 7;
+ files = (
+ 92C11A050F8ED9E70048CA8D /* error.png in Copy Image Files */,
+ 92C11A060F8ED9E70048CA8D /* login_wallpaper.png in Copy Image Files */,
+ );
+ name = "Copy Image Files";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 92C11A370F8EDAB80048CA8D /* Copy Data Files */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = data;
+ dstSubfolderSpec = 7;
+ files = (
+ 92C11A1C0F8EDAB30048CA8D /* items.xsd in Copy Data Files */,
+ );
+ name = "Copy Data Files";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
92EEA0090D2E20D100DDE300 /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
+ 920C631F0F37D0EF001DD274 /* SDL_ttf.framework in Copy Frameworks */,
922CDA6A0E3D07150074C50E /* guichan.framework in Copy Frameworks */,
92EEA0030D2E20B300DDE300 /* libpng.framework in Copy Frameworks */,
92EEA0050D2E20B300DDE300 /* SDL_image.framework in Copy Frameworks */,
@@ -400,7 +832,6 @@
92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_keyboard.cpp; sourceTree = "<group>"; };
92024D370CF1BDF7006B55CB /* setup_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_keyboard.h; sourceTree = "<group>"; };
92024D400CF1BE22006B55CB /* fastsqrt.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = fastsqrt.h; sourceTree = "<group>"; };
- 92024D420CF1BE22006B55CB /* trim.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = trim.h; sourceTree = "<group>"; };
92024D5B0CF1BE5C006B55CB /* close_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = close_button.png; sourceTree = "<group>"; };
92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = item_shortcut_bgr.png; sourceTree = "<group>"; };
92024D5D0CF1BE5C006B55CB /* unknown-item.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unknown-item.png"; sourceTree = "<group>"; };
@@ -437,25 +868,16 @@
924A3E650C085ED70066885E /* buttonpress.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonpress.png; sourceTree = "<group>"; };
924A3E660C085ED70066885E /* checkbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = checkbox.png; sourceTree = "<group>"; };
924A3E680C085ED70066885E /* deepbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = deepbox.png; sourceTree = "<group>"; };
- 924A3E690C085ED70066885E /* fixedfont.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = fixedfont.png; sourceTree = "<group>"; };
- 924A3E6A0C085ED70066885E /* hits_blue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hits_blue.png; sourceTree = "<group>"; };
- 924A3E6B0C085ED70066885E /* hits_red.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hits_red.png; sourceTree = "<group>"; };
- 924A3E6C0C085ED70066885E /* hits_yellow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hits_yellow.png; sourceTree = "<group>"; };
924A3E6D0C085ED70066885E /* hscroll_left_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_default.png; sourceTree = "<group>"; };
924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_highlight.png; sourceTree = "<group>"; };
924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_pressed.png; sourceTree = "<group>"; };
924A3E700C085ED70066885E /* hscroll_right_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_default.png; sourceTree = "<group>"; };
924A3E710C085ED70066885E /* hscroll_right_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_highlight.png; sourceTree = "<group>"; };
924A3E720C085ED70066885E /* hscroll_right_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_pressed.png; sourceTree = "<group>"; };
- 924A3E740C085ED70066885E /* menuitemD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuitemD.png; sourceTree = "<group>"; };
- 924A3E750C085ED70066885E /* menuitemF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuitemF.png; sourceTree = "<group>"; };
- 924A3E760C085ED70066885E /* menuitemN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuitemN.png; sourceTree = "<group>"; };
- 924A3E770C085ED70066885E /* menuitemP.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuitemP.png; sourceTree = "<group>"; };
924A3E780C085ED70066885E /* mouse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mouse.png; sourceTree = "<group>"; };
924A3E790C085ED70066885E /* radioin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioin.png; sourceTree = "<group>"; };
924A3E7A0C085ED70066885E /* radioout.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioout.png; sourceTree = "<group>"; };
924A3E7B0C085ED70066885E /* resize.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = resize.png; sourceTree = "<group>"; };
- 924A3E7C0C085ED70066885E /* rpgfont_wider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = rpgfont_wider.png; sourceTree = "<group>"; };
924A3E7E0C085ED70066885E /* selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = selection.png; sourceTree = "<group>"; };
924A3E7F0C085ED70066885E /* slider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slider.png; sourceTree = "<group>"; };
924A3E800C085ED70066885E /* target-cursor-blue-l.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-l.png"; sourceTree = "<group>"; };
@@ -464,7 +886,6 @@
924A3E830C085ED70066885E /* target-cursor-red-l.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-l.png"; sourceTree = "<group>"; };
924A3E840C085ED70066885E /* target-cursor-red-m.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-m.png"; sourceTree = "<group>"; };
924A3E850C085ED70066885E /* target-cursor-red-s.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-s.png"; sourceTree = "<group>"; };
- 924A3E860C085ED70066885E /* thickborder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thickborder.png; sourceTree = "<group>"; };
924A3E870C085ED70066885E /* vscroll_blue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_blue.png; sourceTree = "<group>"; };
924A3E880C085ED70066885E /* vscroll_down_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_default.png; sourceTree = "<group>"; };
924A3E890C085ED70066885E /* vscroll_down_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_highlight.png; sourceTree = "<group>"; };
@@ -492,6 +913,8 @@
924A42600C0874D00066885E /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
925350010BC12A3200115FD5 /* imageset.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imageset.cpp; sourceTree = "<group>"; };
925350020BC12A3200115FD5 /* imageset.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imageset.h; sourceTree = "<group>"; };
+ 925468FA0F8EB65C00B4C3A3 /* The Mana World (tmwserv).app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "The Mana World (tmwserv).app"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 925468FC0F8EB65C00B4C3A3 /* tmwserv-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "tmwserv-Info.plist"; sourceTree = "<group>"; };
926A29440F23BD88005D6466 /* layout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layout.cpp; sourceTree = "<group>"; };
926A29450F23BD88005D6466 /* layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layout.h; sourceTree = "<group>"; };
926A29460F23BD88005D6466 /* tab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab.cpp; sourceTree = "<group>"; };
@@ -512,6 +935,7 @@
926A297E0F23C18E005D6466 /* tab.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tab.png; sourceTree = "<group>"; };
926A297F0F23C18E005D6466 /* tabselected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tabselected.png; sourceTree = "<group>"; };
926A29840F23C1C8005D6466 /* windows.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = windows.txt; sourceTree = "<group>"; };
+ 926A29980F23C988005D6466 /* dejavusans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = dejavusans.ttf; path = fonts/dejavusans.ttf; sourceTree = "<group>"; };
926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = itemshortcut.cpp; path = src/itemshortcut.cpp; sourceTree = "<group>"; };
926F9CF70DB005FA00AACD26 /* itemshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemshortcut.h; path = src/itemshortcut.h; sourceTree = "<group>"; };
926F9D410DB00AFC00AACD26 /* itemshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemshortcutcontainer.cpp; sourceTree = "<group>"; };
@@ -525,14 +949,13 @@
9273BE050EF33FB3008E56E1 /* particlecontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particlecontainer.h; path = src/particlecontainer.h; sourceTree = "<group>"; };
9273BE060EF33FB3008E56E1 /* statuseffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = statuseffect.cpp; path = src/statuseffect.cpp; sourceTree = "<group>"; };
9273BE070EF33FB3008E56E1 /* statuseffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = statuseffect.h; path = src/statuseffect.h; sourceTree = "<group>"; };
- 9273BE0B0EF33FFF008E56E1 /* Clouds Calling.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Clouds Calling.ogg"; sourceTree = "<group>"; };
- 9273BE0C0EF33FFF008E56E1 /* Faith.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = Faith.ogg; sourceTree = "<group>"; };
- 9273BE0D0EF33FFF008E56E1 /* finalman_and_yakslem-cavesong.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = "finalman_and_yakslem-cavesong.ogg"; sourceTree = "<group>"; };
- 9273BE0E0EF33FFF008E56E1 /* Magick - Real.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Magick - Real.ogg"; sourceTree = "<group>"; };
- 9273BE0F0EF33FFF008E56E1 /* The Mana World - Snow Village.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = "The Mana World - Snow Village.ogg"; sourceTree = "<group>"; };
- 9273BE100EF33FFF008E56E1 /* The Mana World - The Forest.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = "The Mana World - The Forest.ogg"; sourceTree = "<group>"; };
+ 928B50E40F2FB5430011C755 /* bubble.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bubble.png; sourceTree = "<group>"; };
9294DAA00C17E73200FCEDE9 /* libpng.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = libpng.framework; path = /Library/Frameworks/libpng.framework; sourceTree = "<absolute>"; };
- 92A4CC9D0D1C622E00CA28FB /* dye.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = dye.cpp; path = src/resources/dye.cpp; sourceTree = "<group>"; };
+ 92A244B50F935FB400B7719B /* container.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = container.cpp; sourceTree = "<group>"; };
+ 92A244B60F935FB400B7719B /* container.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = container.h; sourceTree = "<group>"; };
+ 92A245C20F93626900B7719B /* desktop.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = desktop.cpp; sourceTree = "<group>"; };
+ 92A245C30F93626900B7719B /* desktop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = desktop.h; sourceTree = "<group>"; };
+ 92A4CC9D0D1C622E00CA28FB /* dye.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dye.cpp; sourceTree = "<group>"; };
92A4CCE00D1DA58D00CA28FB /* dir.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dir.c; sourceTree = "<group>"; };
92A4CCE10D1DA58D00CA28FB /* grp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grp.c; sourceTree = "<group>"; };
92A4CCE20D1DA58D00CA28FB /* hog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hog.c; sourceTree = "<group>"; };
@@ -566,26 +989,16 @@
92BC3EED0BAEE55A000DAB7F /* game.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = game.h; path = src/game.h; sourceTree = "<group>"; };
92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = src/graphics.cpp; sourceTree = "<group>"; };
92BC3EEF0BAEE55A000DAB7F /* graphics.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = graphics.h; path = src/graphics.h; sourceTree = "<group>"; };
- 92BC3EF30BAEE55A000DAB7F /* browserbox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = browserbox.cpp; sourceTree = "<group>"; };
- 92BC3EF40BAEE55A000DAB7F /* browserbox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = browserbox.h; sourceTree = "<group>"; };
92BC3EF50BAEE55A000DAB7F /* buddywindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buddywindow.cpp; sourceTree = "<group>"; };
92BC3EF60BAEE55A000DAB7F /* buddywindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buddywindow.h; sourceTree = "<group>"; };
- 92BC3EF70BAEE55A000DAB7F /* button.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = button.cpp; sourceTree = "<group>"; };
- 92BC3EF80BAEE55A000DAB7F /* button.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = button.h; sourceTree = "<group>"; };
92BC3EF90BAEE55A000DAB7F /* buy.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buy.cpp; sourceTree = "<group>"; };
92BC3EFA0BAEE55A000DAB7F /* buy.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buy.h; sourceTree = "<group>"; };
92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buysell.cpp; sourceTree = "<group>"; };
92BC3EFC0BAEE55A000DAB7F /* buysell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buysell.h; sourceTree = "<group>"; };
92BC3EFD0BAEE55A000DAB7F /* char_select.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = char_select.cpp; sourceTree = "<group>"; };
92BC3EFE0BAEE55A000DAB7F /* char_select.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = char_select.h; sourceTree = "<group>"; };
- 92BC3EFF0BAEE55A000DAB7F /* char_server.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = char_server.cpp; sourceTree = "<group>"; };
- 92BC3F000BAEE55A000DAB7F /* char_server.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = char_server.h; sourceTree = "<group>"; };
92BC3F030BAEE55A000DAB7F /* chat.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = chat.cpp; sourceTree = "<group>"; };
92BC3F040BAEE55A000DAB7F /* chat.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chat.h; sourceTree = "<group>"; };
- 92BC3F050BAEE55A000DAB7F /* chatinput.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = chatinput.cpp; sourceTree = "<group>"; };
- 92BC3F060BAEE55A000DAB7F /* chatinput.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chatinput.h; sourceTree = "<group>"; };
- 92BC3F070BAEE55A000DAB7F /* checkbox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = checkbox.cpp; sourceTree = "<group>"; };
- 92BC3F080BAEE55A000DAB7F /* checkbox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = checkbox.h; sourceTree = "<group>"; };
92BC3F090BAEE55A000DAB7F /* confirm_dialog.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = confirm_dialog.cpp; sourceTree = "<group>"; };
92BC3F0A0BAEE55A000DAB7F /* confirm_dialog.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = confirm_dialog.h; sourceTree = "<group>"; };
92BC3F0B0BAEE55A000DAB7F /* connection.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = connection.cpp; sourceTree = "<group>"; };
@@ -596,14 +1009,10 @@
92BC3F100BAEE55A000DAB7F /* equipmentwindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = equipmentwindow.h; sourceTree = "<group>"; };
92BC3F110BAEE55A000DAB7F /* focushandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = focushandler.cpp; sourceTree = "<group>"; };
92BC3F120BAEE55A000DAB7F /* focushandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = focushandler.h; sourceTree = "<group>"; };
- 92BC3F130BAEE55A000DAB7F /* gccontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = gccontainer.cpp; sourceTree = "<group>"; };
- 92BC3F140BAEE55A000DAB7F /* gccontainer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = gccontainer.h; sourceTree = "<group>"; };
92BC3F150BAEE55A000DAB7F /* gui.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = gui.cpp; sourceTree = "<group>"; };
92BC3F160BAEE55A000DAB7F /* gui.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = gui.h; sourceTree = "<group>"; };
92BC3F190BAEE55A000DAB7F /* help.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = help.cpp; sourceTree = "<group>"; };
92BC3F1A0BAEE55A000DAB7F /* help.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = help.h; sourceTree = "<group>"; };
- 92BC3F1B0BAEE55A000DAB7F /* inttextbox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = inttextbox.cpp; sourceTree = "<group>"; };
- 92BC3F1C0BAEE55A000DAB7F /* inttextbox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inttextbox.h; sourceTree = "<group>"; };
92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = inventorywindow.cpp; sourceTree = "<group>"; };
92BC3F1E0BAEE55A000DAB7F /* inventorywindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inventorywindow.h; sourceTree = "<group>"; };
92BC3F1F0BAEE55A000DAB7F /* item_amount.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = item_amount.cpp; sourceTree = "<group>"; };
@@ -611,8 +1020,6 @@
92BC3F210BAEE55A000DAB7F /* itemcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = itemcontainer.cpp; sourceTree = "<group>"; };
92BC3F220BAEE55A000DAB7F /* itemcontainer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = itemcontainer.h; sourceTree = "<group>"; };
92BC3F230BAEE55A000DAB7F /* linkhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = linkhandler.h; sourceTree = "<group>"; };
- 92BC3F240BAEE55A000DAB7F /* listbox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = listbox.cpp; sourceTree = "<group>"; };
- 92BC3F250BAEE55A000DAB7F /* listbox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = listbox.h; sourceTree = "<group>"; };
92BC3F260BAEE55A000DAB7F /* login.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = login.cpp; sourceTree = "<group>"; };
92BC3F270BAEE55A000DAB7F /* login.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = login.h; sourceTree = "<group>"; };
92BC3F280BAEE55A000DAB7F /* menuwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = menuwindow.cpp; sourceTree = "<group>"; };
@@ -627,20 +1034,12 @@
92BC3F330BAEE55A000DAB7F /* npclistdialog.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = npclistdialog.h; sourceTree = "<group>"; };
92BC3F340BAEE55A000DAB7F /* ok_dialog.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ok_dialog.cpp; sourceTree = "<group>"; };
92BC3F350BAEE55A000DAB7F /* ok_dialog.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ok_dialog.h; sourceTree = "<group>"; };
- 92BC3F360BAEE55A000DAB7F /* passwordfield.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = passwordfield.cpp; sourceTree = "<group>"; };
- 92BC3F370BAEE55A000DAB7F /* passwordfield.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = passwordfield.h; sourceTree = "<group>"; };
92BC3F380BAEE55A000DAB7F /* playerbox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = playerbox.cpp; sourceTree = "<group>"; };
92BC3F390BAEE55A000DAB7F /* playerbox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = playerbox.h; sourceTree = "<group>"; };
92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = popupmenu.cpp; sourceTree = "<group>"; };
92BC3F3B0BAEE55A000DAB7F /* popupmenu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = popupmenu.h; sourceTree = "<group>"; };
- 92BC3F3C0BAEE55A000DAB7F /* progressbar.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = progressbar.cpp; sourceTree = "<group>"; };
- 92BC3F3D0BAEE55A000DAB7F /* progressbar.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = progressbar.h; sourceTree = "<group>"; };
- 92BC3F3E0BAEE55A000DAB7F /* radiobutton.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = radiobutton.cpp; sourceTree = "<group>"; };
- 92BC3F3F0BAEE55A000DAB7F /* radiobutton.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = radiobutton.h; sourceTree = "<group>"; };
92BC3F400BAEE55A000DAB7F /* register.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = register.cpp; sourceTree = "<group>"; };
92BC3F410BAEE55A000DAB7F /* register.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = register.h; sourceTree = "<group>"; };
- 92BC3F420BAEE55A000DAB7F /* scrollarea.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = scrollarea.cpp; sourceTree = "<group>"; };
- 92BC3F430BAEE55A000DAB7F /* scrollarea.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = scrollarea.h; sourceTree = "<group>"; };
92BC3F450BAEE55A000DAB7F /* sell.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = sell.cpp; sourceTree = "<group>"; };
92BC3F460BAEE55A000DAB7F /* sell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = sell.h; sourceTree = "<group>"; };
92BC3F470BAEE55A000DAB7F /* setup.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup.cpp; sourceTree = "<group>"; };
@@ -658,24 +1057,14 @@
92BC3F530BAEE55A000DAB7F /* shoplistbox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = shoplistbox.h; sourceTree = "<group>"; };
92BC3F540BAEE55A000DAB7F /* skill.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = skill.cpp; sourceTree = "<group>"; };
92BC3F550BAEE55A000DAB7F /* skill.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = skill.h; sourceTree = "<group>"; };
- 92BC3F560BAEE55A000DAB7F /* slider.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = slider.cpp; sourceTree = "<group>"; };
- 92BC3F570BAEE55A000DAB7F /* slider.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = slider.h; sourceTree = "<group>"; };
92BC3F580BAEE55A000DAB7F /* status.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = status.cpp; sourceTree = "<group>"; };
92BC3F590BAEE55B000DAB7F /* status.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = status.h; sourceTree = "<group>"; };
- 92BC3F5C0BAEE55B000DAB7F /* textbox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = textbox.cpp; sourceTree = "<group>"; };
- 92BC3F5D0BAEE55B000DAB7F /* textbox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = textbox.h; sourceTree = "<group>"; };
- 92BC3F5E0BAEE55B000DAB7F /* textfield.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = textfield.cpp; sourceTree = "<group>"; };
- 92BC3F5F0BAEE55B000DAB7F /* textfield.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = textfield.h; sourceTree = "<group>"; };
92BC3F600BAEE55B000DAB7F /* trade.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = trade.cpp; sourceTree = "<group>"; };
92BC3F610BAEE55B000DAB7F /* trade.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = trade.h; sourceTree = "<group>"; };
92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = updatewindow.cpp; sourceTree = "<group>"; };
92BC3F630BAEE55B000DAB7F /* updatewindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = updatewindow.h; sourceTree = "<group>"; };
92BC3F660BAEE55B000DAB7F /* viewport.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = viewport.cpp; sourceTree = "<group>"; };
92BC3F670BAEE55B000DAB7F /* viewport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = viewport.h; sourceTree = "<group>"; };
- 92BC3F680BAEE55B000DAB7F /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = window.cpp; sourceTree = "<group>"; };
- 92BC3F690BAEE55B000DAB7F /* window.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = "<group>"; };
- 92BC3F6A0BAEE55B000DAB7F /* windowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = windowcontainer.cpp; sourceTree = "<group>"; };
- 92BC3F6B0BAEE55B000DAB7F /* windowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = windowcontainer.h; sourceTree = "<group>"; };
92BC3F6C0BAEE55B000DAB7F /* guichanfwd.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = guichanfwd.h; path = src/guichanfwd.h; sourceTree = "<group>"; };
92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = inventory.cpp; path = src/inventory.cpp; sourceTree = "<group>"; };
92BC3F6E0BAEE55B000DAB7F /* inventory.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = inventory.h; path = src/inventory.h; sourceTree = "<group>"; };
@@ -695,41 +1084,18 @@
92BC3F7D0BAEE55B000DAB7F /* map.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/map.h; sourceTree = "<group>"; };
92BC3F7E0BAEE55B000DAB7F /* monster.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = monster.cpp; path = src/monster.cpp; sourceTree = "<group>"; };
92BC3F7F0BAEE55B000DAB7F /* monster.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = monster.h; path = src/monster.h; sourceTree = "<group>"; };
- 92BC3F810BAEE55B000DAB7F /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
- 92BC3F820BAEE55B000DAB7F /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
- 92BC3F830BAEE55B000DAB7F /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
- 92BC3F840BAEE55B000DAB7F /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
- 92BC3F850BAEE55B000DAB7F /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
- 92BC3F860BAEE55B000DAB7F /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
- 92BC3F870BAEE55B000DAB7F /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
92BC3F880BAEE55B000DAB7F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
- 92BC3F890BAEE55B000DAB7F /* equipmenthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = equipmenthandler.cpp; sourceTree = "<group>"; };
- 92BC3F8A0BAEE55B000DAB7F /* equipmenthandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = equipmenthandler.h; sourceTree = "<group>"; };
- 92BC3F8B0BAEE55B000DAB7F /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
92BC3F8C0BAEE55B000DAB7F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
- 92BC3F8D0BAEE55B000DAB7F /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
- 92BC3F8E0BAEE55B000DAB7F /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
- 92BC3F8F0BAEE55B000DAB7F /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
92BC3F900BAEE55B000DAB7F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
- 92BC3F910BAEE55B000DAB7F /* maploginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = maploginhandler.cpp; sourceTree = "<group>"; };
- 92BC3F920BAEE55B000DAB7F /* maploginhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = maploginhandler.h; sourceTree = "<group>"; };
92BC3F930BAEE55B000DAB7F /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = "<group>"; };
92BC3F940BAEE55B000DAB7F /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
92BC3F950BAEE55B000DAB7F /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
92BC3F960BAEE55B000DAB7F /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
92BC3F970BAEE55B000DAB7F /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
92BC3F980BAEE55B000DAB7F /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
- 92BC3F990BAEE55B000DAB7F /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
- 92BC3F9A0BAEE55B000DAB7F /* network.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
- 92BC3F9B0BAEE55B000DAB7F /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
92BC3F9C0BAEE55B000DAB7F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
- 92BC3F9D0BAEE55B000DAB7F /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
92BC3F9E0BAEE55B000DAB7F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
- 92BC3F9F0BAEE55B000DAB7F /* protocol.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = protocol.cpp; sourceTree = "<group>"; };
- 92BC3FA00BAEE55B000DAB7F /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
- 92BC3FA10BAEE55B000DAB7F /* skillhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = skillhandler.cpp; sourceTree = "<group>"; };
92BC3FA20BAEE55B000DAB7F /* skillhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = skillhandler.h; sourceTree = "<group>"; };
- 92BC3FA30BAEE55B000DAB7F /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
92BC3FA40BAEE55B000DAB7F /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
92BC3FA50BAEE55B000DAB7F /* npc.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = npc.cpp; path = src/npc.cpp; sourceTree = "<group>"; };
92BC3FA60BAEE55B000DAB7F /* npc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = npc.h; path = src/npc.h; sourceTree = "<group>"; };
@@ -750,8 +1116,6 @@
92BC3FC10BAEE55B000DAB7F /* ambientoverlay.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ambientoverlay.h; sourceTree = "<group>"; };
92BC3FC20BAEE55B000DAB7F /* animation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = animation.cpp; sourceTree = "<group>"; };
92BC3FC30BAEE55B000DAB7F /* animation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = animation.h; sourceTree = "<group>"; };
- 92BC3FC40BAEE55B000DAB7F /* buddylist.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buddylist.cpp; sourceTree = "<group>"; };
- 92BC3FC50BAEE55B000DAB7F /* buddylist.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buddylist.h; sourceTree = "<group>"; };
92BC3FC90BAEE55B000DAB7F /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = image.cpp; sourceTree = "<group>"; };
92BC3FCA0BAEE55B000DAB7F /* image.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = image.h; sourceTree = "<group>"; };
92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imagewriter.cpp; sourceTree = "<group>"; };
@@ -786,7 +1150,6 @@
92BC3FEF0BAEE55B000DAB7F /* base64.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = base64.cpp; sourceTree = "<group>"; };
92BC3FF00BAEE55B000DAB7F /* base64.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = base64.h; sourceTree = "<group>"; };
92BC3FF10BAEE55B000DAB7F /* dtor.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = dtor.h; sourceTree = "<group>"; };
- 92BC3FF20BAEE55B000DAB7F /* tostring.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = tostring.h; sourceTree = "<group>"; };
92BC3FF40BAEE55B000DAB7F /* xml.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = xml.cpp; sourceTree = "<group>"; };
92BC3FF50BAEE55B000DAB7F /* xml.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = "<group>"; };
92BC408E0BAEE818000DAB7F /* SDL_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_image.framework; path = /Library/Frameworks/SDL_image.framework; sourceTree = "<absolute>"; };
@@ -797,6 +1160,249 @@
92BC40D80BAEEED3000DAB7F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
92BC40E50BAEF54B000DAB7F /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = SDLMain.m; path = src/SDLMain.m; sourceTree = "<group>"; };
92BC40E80BAEF57D000DAB7F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
+ 92C1150C0F8EBB360048CA8D /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = window.cpp; sourceTree = "<group>"; };
+ 92C1150D0F8EBB360048CA8D /* window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = "<group>"; };
+ 92C115100F8EBB550048CA8D /* itempopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itempopup.cpp; sourceTree = "<group>"; };
+ 92C115110F8EBB550048CA8D /* itempopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itempopup.h; sourceTree = "<group>"; };
+ 92C115140F8EBB830048CA8D /* listbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = listbox.cpp; sourceTree = "<group>"; };
+ 92C115150F8EBB830048CA8D /* listbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = listbox.h; sourceTree = "<group>"; };
+ 92C115160F8EBB830048CA8D /* scrollarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scrollarea.cpp; sourceTree = "<group>"; };
+ 92C115170F8EBB830048CA8D /* scrollarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scrollarea.h; sourceTree = "<group>"; };
+ 92C115180F8EBB830048CA8D /* slider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slider.cpp; sourceTree = "<group>"; };
+ 92C115190F8EBB830048CA8D /* slider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slider.h; sourceTree = "<group>"; };
+ 92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = emoteshortcut.cpp; path = src/emoteshortcut.cpp; sourceTree = "<group>"; };
+ 92C1151F0F8EBBA90048CA8D /* emoteshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = emoteshortcut.h; path = src/emoteshortcut.h; sourceTree = "<group>"; };
+ 92C115220F8EBBD50048CA8D /* inttextfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inttextfield.cpp; sourceTree = "<group>"; };
+ 92C115230F8EBBD50048CA8D /* inttextfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inttextfield.h; sourceTree = "<group>"; };
+ 92C115240F8EBBD50048CA8D /* popup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = popup.cpp; sourceTree = "<group>"; };
+ 92C115250F8EBBD50048CA8D /* popup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = popup.h; sourceTree = "<group>"; };
+ 92C115260F8EBBD50048CA8D /* textfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textfield.cpp; sourceTree = "<group>"; };
+ 92C115270F8EBBD50048CA8D /* textfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textfield.h; sourceTree = "<group>"; };
+ 92C1152B0F8EBBE30048CA8D /* storagewindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = storagewindow.cpp; sourceTree = "<group>"; };
+ 92C1152C0F8EBBE30048CA8D /* storagewindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = storagewindow.h; sourceTree = "<group>"; };
+ 92C1152F0F8EBC2B0048CA8D /* serverselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = serverselectdialog.cpp; sourceTree = "<group>"; };
+ 92C115300F8EBC2B0048CA8D /* serverselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverselectdialog.h; sourceTree = "<group>"; };
+ 92C115320F8EBC450048CA8D /* browserbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browserbox.cpp; sourceTree = "<group>"; };
+ 92C115330F8EBC450048CA8D /* browserbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browserbox.h; sourceTree = "<group>"; };
+ 92C115340F8EBC450048CA8D /* windowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowcontainer.cpp; sourceTree = "<group>"; };
+ 92C115350F8EBC450048CA8D /* windowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowcontainer.h; sourceTree = "<group>"; };
+ 92C115390F8EBC730048CA8D /* chattab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chattab.cpp; sourceTree = "<group>"; };
+ 92C1153A0F8EBC730048CA8D /* chattab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chattab.h; sourceTree = "<group>"; };
+ 92C1153C0F8EBC830048CA8D /* shortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutcontainer.cpp; sourceTree = "<group>"; };
+ 92C1153D0F8EBC830048CA8D /* shortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutcontainer.h; sourceTree = "<group>"; };
+ 92C115400F8EBCB70048CA8D /* setuptab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setuptab.cpp; sourceTree = "<group>"; };
+ 92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutwindow.cpp; sourceTree = "<group>"; };
+ 92C115420F8EBCB70048CA8D /* shortcutwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutwindow.h; sourceTree = "<group>"; };
+ 92C115450F8EBCD00048CA8D /* passwordfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = passwordfield.cpp; sourceTree = "<group>"; };
+ 92C115460F8EBCD00048CA8D /* passwordfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = passwordfield.h; sourceTree = "<group>"; };
+ 92C115490F8EBD000048CA8D /* checkbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkbox.cpp; sourceTree = "<group>"; };
+ 92C1154A0F8EBD000048CA8D /* checkbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkbox.h; sourceTree = "<group>"; };
+ 92C1154B0F8EBD000048CA8D /* textbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textbox.cpp; sourceTree = "<group>"; };
+ 92C1154C0F8EBD000048CA8D /* textbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textbox.h; sourceTree = "<group>"; };
+ 92C115500F8EBD250048CA8D /* label.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = label.cpp; sourceTree = "<group>"; };
+ 92C115510F8EBD250048CA8D /* label.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = label.h; sourceTree = "<group>"; };
+ 92C115520F8EBD250048CA8D /* progressbar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressbar.cpp; sourceTree = "<group>"; };
+ 92C115530F8EBD250048CA8D /* progressbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressbar.h; sourceTree = "<group>"; };
+ 92C115570F8EBD490048CA8D /* net.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net.cpp; sourceTree = "<group>"; };
+ 92C115580F8EBD490048CA8D /* net.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net.h; sourceTree = "<group>"; };
+ 92C1155B0F8EBD570048CA8D /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
+ 92C1155C0F8EBD570048CA8D /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
+ 92C1155D0F8EBD570048CA8D /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
+ 92C1155E0F8EBD570048CA8D /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
+ 92C1155F0F8EBD570048CA8D /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
+ 92C115600F8EBD570048CA8D /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
+ 92C115610F8EBD570048CA8D /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
+ 92C115620F8EBD570048CA8D /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
+ 92C115630F8EBD570048CA8D /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
+ 92C115640F8EBD570048CA8D /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
+ 92C115650F8EBD570048CA8D /* equipmenthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = equipmenthandler.cpp; sourceTree = "<group>"; };
+ 92C115660F8EBD570048CA8D /* equipmenthandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = equipmenthandler.h; sourceTree = "<group>"; };
+ 92C115670F8EBD570048CA8D /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
+ 92C115680F8EBD570048CA8D /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
+ 92C1156A0F8EBD570048CA8D /* partytab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partytab.cpp; sourceTree = "<group>"; };
+ 92C1156B0F8EBD570048CA8D /* partytab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partytab.h; sourceTree = "<group>"; };
+ 92C1156C0F8EBD570048CA8D /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
+ 92C1156D0F8EBD570048CA8D /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
+ 92C1156E0F8EBD570048CA8D /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
+ 92C1156F0F8EBD570048CA8D /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
+ 92C115700F8EBD570048CA8D /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
+ 92C115710F8EBD570048CA8D /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
+ 92C115720F8EBD570048CA8D /* logouthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = logouthandler.cpp; sourceTree = "<group>"; };
+ 92C115730F8EBD570048CA8D /* logouthandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logouthandler.h; sourceTree = "<group>"; };
+ 92C115740F8EBD570048CA8D /* maphandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = maphandler.cpp; sourceTree = "<group>"; };
+ 92C115750F8EBD570048CA8D /* maphandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = maphandler.h; sourceTree = "<group>"; };
+ 92C115760F8EBD570048CA8D /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
+ 92C115770F8EBD570048CA8D /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
+ 92C115780F8EBD570048CA8D /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
+ 92C115790F8EBD570048CA8D /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
+ 92C1157A0F8EBD570048CA8D /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
+ 92C1157B0F8EBD570048CA8D /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
+ 92C1157C0F8EBD570048CA8D /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
+ 92C1157D0F8EBD570048CA8D /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
+ 92C1157E0F8EBD570048CA8D /* protocol.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = protocol.cpp; sourceTree = "<group>"; };
+ 92C1157F0F8EBD570048CA8D /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
+ 92C115800F8EBD570048CA8D /* skillhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skillhandler.cpp; sourceTree = "<group>"; };
+ 92C115810F8EBD570048CA8D /* skillhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skillhandler.h; sourceTree = "<group>"; };
+ 92C115820F8EBD570048CA8D /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
+ 92C115830F8EBD570048CA8D /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
+ 92C115990F8EBD900048CA8D /* emotedb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotedb.cpp; sourceTree = "<group>"; };
+ 92C1159A0F8EBD900048CA8D /* emotedb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotedb.h; sourceTree = "<group>"; };
+ 92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = commandhandler.cpp; path = src/commandhandler.cpp; sourceTree = "<group>"; };
+ 92C1159D0F8EBDB20048CA8D /* commandhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = commandhandler.h; path = src/commandhandler.h; sourceTree = "<group>"; };
+ 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = effectmanager.cpp; path = src/effectmanager.cpp; sourceTree = "<group>"; };
+ 92C1159F0F8EBDB20048CA8D /* effectmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = effectmanager.h; path = src/effectmanager.h; sourceTree = "<group>"; };
+ 92C115A00F8EBDB20048CA8D /* units.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = units.cpp; path = src/units.cpp; sourceTree = "<group>"; };
+ 92C115A10F8EBDB20048CA8D /* units.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = units.h; path = src/units.h; sourceTree = "<group>"; };
+ 92C115AD0F8EBE450048CA8D /* palette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = palette.cpp; sourceTree = "<group>"; };
+ 92C115AE0F8EBE450048CA8D /* palette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = palette.h; sourceTree = "<group>"; };
+ 92C115AF0F8EBE450048CA8D /* partywindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partywindow.cpp; sourceTree = "<group>"; };
+ 92C115B00F8EBE450048CA8D /* partywindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partywindow.h; sourceTree = "<group>"; };
+ 92C115B10F8EBE450048CA8D /* recorder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = recorder.cpp; sourceTree = "<group>"; };
+ 92C115B20F8EBE450048CA8D /* recorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = recorder.h; sourceTree = "<group>"; };
+ 92C115B30F8EBE450048CA8D /* skin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skin.cpp; sourceTree = "<group>"; };
+ 92C115B40F8EBE450048CA8D /* skin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skin.h; sourceTree = "<group>"; };
+ 92C115B50F8EBE450048CA8D /* speechbubble.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = speechbubble.cpp; sourceTree = "<group>"; };
+ 92C115B60F8EBE450048CA8D /* speechbubble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = speechbubble.h; sourceTree = "<group>"; };
+ 92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = channeltab.cpp; sourceTree = "<group>"; };
+ 92C115BE0F8EBE5E0048CA8D /* channeltab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = channeltab.h; sourceTree = "<group>"; };
+ 92C115C30F8EBE950048CA8D /* whispertab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = whispertab.cpp; sourceTree = "<group>"; };
+ 92C115C40F8EBE950048CA8D /* whispertab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whispertab.h; sourceTree = "<group>"; };
+ 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charcreatedialog.cpp; sourceTree = "<group>"; };
+ 92C115C80F8EBECE0048CA8D /* charcreatedialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charcreatedialog.h; sourceTree = "<group>"; };
+ 92C115CB0F8EBF090048CA8D /* channelmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channelmanager.cpp; path = src/channelmanager.cpp; sourceTree = "<group>"; };
+ 92C115CC0F8EBF090048CA8D /* channelmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channelmanager.h; path = src/channelmanager.h; sourceTree = "<group>"; };
+ 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = colordb.cpp; sourceTree = "<group>"; };
+ 92C115CF0F8EBF1C0048CA8D /* colordb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = colordb.h; sourceTree = "<group>"; };
+ 92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wallpaper.cpp; sourceTree = "<group>"; };
+ 92C115D10F8EBF1C0048CA8D /* wallpaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wallpaper.h; sourceTree = "<group>"; };
+ 92C115D50F8EBF530048CA8D /* button.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = button.cpp; sourceTree = "<group>"; };
+ 92C115D60F8EBF530048CA8D /* button.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = button.h; sourceTree = "<group>"; };
+ 92C115D70F8EBF530048CA8D /* icon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon.cpp; sourceTree = "<group>"; };
+ 92C115D80F8EBF530048CA8D /* icon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icon.h; sourceTree = "<group>"; };
+ 92C115D90F8EBF530048CA8D /* radiobutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radiobutton.cpp; sourceTree = "<group>"; };
+ 92C115DA0F8EBF530048CA8D /* radiobutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = radiobutton.h; sourceTree = "<group>"; };
+ 92C115DF0F8EBF7C0048CA8D /* avatar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = avatar.cpp; sourceTree = "<group>"; };
+ 92C115E00F8EBF7C0048CA8D /* avatar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avatar.h; sourceTree = "<group>"; };
+ 92C115E20F8EBF9A0048CA8D /* emotewindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotewindow.cpp; sourceTree = "<group>"; };
+ 92C115E30F8EBF9A0048CA8D /* emotewindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotewindow.h; sourceTree = "<group>"; };
+ 92C115E40F8EBF9A0048CA8D /* itemlinkhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemlinkhandler.cpp; sourceTree = "<group>"; };
+ 92C115E50F8EBF9A0048CA8D /* itemlinkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemlinkhandler.h; sourceTree = "<group>"; };
+ 92C115E80F8EBFA60048CA8D /* stringutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringutils.cpp; sourceTree = "<group>"; };
+ 92C115E90F8EBFA60048CA8D /* stringutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringutils.h; sourceTree = "<group>"; };
+ 92C115EC0F8EBFC20048CA8D /* channel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cpp; path = src/channel.cpp; sourceTree = "<group>"; };
+ 92C115ED0F8EBFC20048CA8D /* channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/channel.h; sourceTree = "<group>"; };
+ 92C115EF0F8EBFD20048CA8D /* emotecontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotecontainer.cpp; sourceTree = "<group>"; };
+ 92C115F00F8EBFD20048CA8D /* emotecontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotecontainer.h; sourceTree = "<group>"; };
+ 92C115F10F8EBFD20048CA8D /* emoteshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emoteshortcutcontainer.cpp; sourceTree = "<group>"; };
+ 92C115F20F8EBFD20048CA8D /* emoteshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emoteshortcutcontainer.h; sourceTree = "<group>"; };
+ 92C115F50F8EBFDD0048CA8D /* dropdown.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dropdown.cpp; sourceTree = "<group>"; };
+ 92C115F60F8EBFDD0048CA8D /* dropdown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dropdown.h; sourceTree = "<group>"; };
+ 92C115F90F8EBFF30048CA8D /* setup_colors.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_colors.cpp; sourceTree = "<group>"; };
+ 92C115FA0F8EBFF30048CA8D /* setup_colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_colors.h; sourceTree = "<group>"; };
+ 92C115FD0F8EC0150048CA8D /* textpreview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpreview.cpp; sourceTree = "<group>"; };
+ 92C115FE0F8EC0150048CA8D /* textpreview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpreview.h; sourceTree = "<group>"; };
+ 92C116010F8EC0590048CA8D /* circle-gray.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "circle-gray.png"; sourceTree = "<group>"; };
+ 92C116020F8EC0590048CA8D /* circle-green.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "circle-green.png"; sourceTree = "<group>"; };
+ 92C116030F8EC0590048CA8D /* default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = default.png; sourceTree = "<group>"; };
+ 92C116040F8EC0590048CA8D /* equip_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = equip_bg.png; sourceTree = "<group>"; };
+ 92C116050F8EC0590048CA8D /* gui.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = gui.xml; sourceTree = "<group>"; };
+ 92C116060F8EC0590048CA8D /* speech_bubble.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = speech_bubble.png; sourceTree = "<group>"; };
+ 92C116070F8EC0590048CA8D /* speechbubble.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = speechbubble.xml; sourceTree = "<group>"; };
+ 92C116080F8EC0590048CA8D /* sticky_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticky_button.png; sourceTree = "<group>"; };
+ 92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changepassworddialog.cpp; sourceTree = "<group>"; };
+ 92C116E50F8ECBE80048CA8D /* changepassworddialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changepassworddialog.h; sourceTree = "<group>"; };
+ 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skilldialog.cpp; sourceTree = "<group>"; };
+ 92C117540F8ECEEA0048CA8D /* skilldialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skilldialog.h; sourceTree = "<group>"; };
+ 92C117560F8ECF0B0048CA8D /* statuswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = statuswindow.cpp; sourceTree = "<group>"; };
+ 92C117570F8ECF0B0048CA8D /* statuswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = statuswindow.h; sourceTree = "<group>"; };
+ 92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unregisterdialog.cpp; sourceTree = "<group>"; };
+ 92C117590F8ECF0B0048CA8D /* unregisterdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unregisterdialog.h; sourceTree = "<group>"; };
+ 92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quitdialog.cpp; sourceTree = "<group>"; };
+ 92C118700F8ED33F0048CA8D /* quitdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quitdialog.h; sourceTree = "<group>"; };
+ 92C1188E0F8ED4B30048CA8D /* guild.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = guild.cpp; path = src/guild.cpp; sourceTree = "<group>"; };
+ 92C1188F0F8ED4B30048CA8D /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = src/guild.h; sourceTree = "<group>"; };
+ 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textdialog.cpp; sourceTree = "<group>"; };
+ 92C118F30F8ED5DE0048CA8D /* textdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textdialog.h; sourceTree = "<group>"; };
+ 92C118FB0F8ED63F0048CA8D /* guildlistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildlistbox.cpp; sourceTree = "<group>"; };
+ 92C118FC0F8ED63F0048CA8D /* guildlistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildlistbox.h; sourceTree = "<group>"; };
+ 92C118FD0F8ED63F0048CA8D /* guildwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildwindow.cpp; sourceTree = "<group>"; };
+ 92C118FE0F8ED63F0048CA8D /* guildwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildwindow.h; sourceTree = "<group>"; };
+ 92C118FF0F8ED63F0048CA8D /* magic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = magic.cpp; sourceTree = "<group>"; };
+ 92C119000F8ED63F0048CA8D /* magic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = magic.h; sourceTree = "<group>"; };
+ 92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcpostdialog.cpp; sourceTree = "<group>"; };
+ 92C119020F8ED63F0048CA8D /* npcpostdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcpostdialog.h; sourceTree = "<group>"; };
+ 92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changeemaildialog.cpp; sourceTree = "<group>"; };
+ 92C1191C0F8ED79A0048CA8D /* changeemaildialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changeemaildialog.h; sourceTree = "<group>"; };
+ 92C119220F8ED7C20048CA8D /* account.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = account.cpp; sourceTree = "<group>"; };
+ 92C119230F8ED7C20048CA8D /* account.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = account.h; sourceTree = "<group>"; };
+ 92C119240F8ED7C20048CA8D /* accountserver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = accountserver.cpp; sourceTree = "<group>"; };
+ 92C119250F8ED7C20048CA8D /* accountserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = accountserver.h; sourceTree = "<group>"; };
+ 92C119260F8ED7C20048CA8D /* internal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internal.cpp; sourceTree = "<group>"; };
+ 92C119270F8ED7C20048CA8D /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = "<group>"; };
+ 92C119280F8ED7C20048CA8D /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
+ 92C119290F8ED7C20048CA8D /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
+ 92C1192A0F8ED7C20048CA8D /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
+ 92C1192B0F8ED7C20048CA8D /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
+ 92C1192C0F8ED7C20048CA8D /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
+ 92C1192D0F8ED7C20048CA8D /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
+ 92C1192E0F8ED7C20048CA8D /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
+ 92C1192F0F8ED7C20048CA8D /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
+ 92C119300F8ED7C20048CA8D /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
+ 92C119310F8ED7C20048CA8D /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
+ 92C119330F8ED7C20048CA8D /* chatserver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chatserver.cpp; sourceTree = "<group>"; };
+ 92C119340F8ED7C20048CA8D /* chatserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chatserver.h; sourceTree = "<group>"; };
+ 92C119350F8ED7C20048CA8D /* guild.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guild.cpp; sourceTree = "<group>"; };
+ 92C119360F8ED7C20048CA8D /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guild.h; sourceTree = "<group>"; };
+ 92C119370F8ED7C20048CA8D /* internal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internal.cpp; sourceTree = "<group>"; };
+ 92C119380F8ED7C20048CA8D /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = "<group>"; };
+ 92C119390F8ED7C20048CA8D /* party.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = party.cpp; sourceTree = "<group>"; };
+ 92C1193A0F8ED7C20048CA8D /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = party.h; sourceTree = "<group>"; };
+ 92C1193B0F8ED7C20048CA8D /* connection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connection.cpp; sourceTree = "<group>"; };
+ 92C1193C0F8ED7C20048CA8D /* connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connection.h; sourceTree = "<group>"; };
+ 92C1193D0F8ED7C20048CA8D /* effecthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effecthandler.cpp; sourceTree = "<group>"; };
+ 92C1193E0F8ED7C20048CA8D /* effecthandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effecthandler.h; sourceTree = "<group>"; };
+ 92C119400F8ED7C20048CA8D /* gameserver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gameserver.cpp; sourceTree = "<group>"; };
+ 92C119410F8ED7C20048CA8D /* gameserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gameserver.h; sourceTree = "<group>"; };
+ 92C119420F8ED7C20048CA8D /* internal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internal.cpp; sourceTree = "<group>"; };
+ 92C119430F8ED7C20048CA8D /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = "<group>"; };
+ 92C119440F8ED7C20048CA8D /* player.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = player.cpp; sourceTree = "<group>"; };
+ 92C119450F8ED7C20048CA8D /* player.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = player.h; sourceTree = "<group>"; };
+ 92C119460F8ED7C20048CA8D /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
+ 92C119470F8ED7C20048CA8D /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
+ 92C119480F8ED7C20048CA8D /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
+ 92C119490F8ED7C20048CA8D /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
+ 92C1194A0F8ED7C20048CA8D /* internal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internal.cpp; sourceTree = "<group>"; };
+ 92C1194B0F8ED7C20048CA8D /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = "<group>"; };
+ 92C1194C0F8ED7C20048CA8D /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
+ 92C1194D0F8ED7C20048CA8D /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
+ 92C1194E0F8ED7C20048CA8D /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
+ 92C1194F0F8ED7C20048CA8D /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
+ 92C119500F8ED7C20048CA8D /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
+ 92C119510F8ED7C20048CA8D /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
+ 92C119520F8ED7C20048CA8D /* logouthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = logouthandler.cpp; sourceTree = "<group>"; };
+ 92C119530F8ED7C20048CA8D /* logouthandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logouthandler.h; sourceTree = "<group>"; };
+ 92C119540F8ED7C20048CA8D /* maphandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = maphandler.cpp; sourceTree = "<group>"; };
+ 92C119550F8ED7C20048CA8D /* maphandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = maphandler.h; sourceTree = "<group>"; };
+ 92C119560F8ED7C20048CA8D /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
+ 92C119570F8ED7C20048CA8D /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
+ 92C119580F8ED7C20048CA8D /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
+ 92C119590F8ED7C20048CA8D /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
+ 92C1195A0F8ED7C20048CA8D /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
+ 92C1195B0F8ED7C20048CA8D /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
+ 92C1195C0F8ED7C20048CA8D /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
+ 92C1195D0F8ED7C20048CA8D /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
+ 92C1195E0F8ED7C20048CA8D /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
+ 92C1195F0F8ED7C20048CA8D /* skillhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skillhandler.cpp; sourceTree = "<group>"; };
+ 92C119600F8ED7C20048CA8D /* skillhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skillhandler.h; sourceTree = "<group>"; };
+ 92C119610F8ED7C20048CA8D /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
+ 92C119620F8ED7C20048CA8D /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
+ 92C119830F8ED80E0048CA8D /* serverdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = serverdialog.cpp; sourceTree = "<group>"; };
+ 92C119840F8ED80E0048CA8D /* serverdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverdialog.h; sourceTree = "<group>"; };
+ 92C1198E0F8ED85E0048CA8D /* sha256.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sha256.cpp; sourceTree = "<group>"; };
+ 92C1198F0F8ED85E0048CA8D /* sha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha256.h; sourceTree = "<group>"; };
+ 92C119980F8ED8B00048CA8D /* position.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = position.cpp; path = src/position.cpp; sourceTree = "<group>"; };
+ 92DD76450F267B3600B2B519 /* layouthelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layouthelper.cpp; sourceTree = "<group>"; };
+ 92DD76460F267B3600B2B519 /* layouthelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layouthelper.h; sourceTree = "<group>"; };
92FD19AE0DDCE51000D14E5D /* player_relations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = player_relations.cpp; path = src/player_relations.cpp; sourceTree = "<group>"; };
92FD19AF0DDCE51000D14E5D /* player_relations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = player_relations.h; path = src/player_relations.h; sourceTree = "<group>"; };
92FD19B30DDCE53400D14E5D /* setup_players.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_players.cpp; sourceTree = "<group>"; };
@@ -808,7 +1414,6 @@
92FD19BD0DDCE56A00D14E5D /* dye.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dye.h; sourceTree = "<group>"; };
92FD19BF0DDCE6F700D14E5D /* strprintf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strprintf.cpp; sourceTree = "<group>"; };
92FD19C00DDCE6F700D14E5D /* strprintf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strprintf.h; sourceTree = "<group>"; };
- 92FD19C60DDCEB8500D14E5D /* emotions.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = emotions.png; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -830,6 +1435,21 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
+ 925468F80F8EB65C00B4C3A3 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 92C118960F8ED4FE0048CA8D /* libpng.framework in Frameworks */,
+ 92C117C50F8ED28F0048CA8D /* IOKit.framework in Frameworks */,
+ 92C1173D0F8ECE550048CA8D /* OpenGL.framework in Frameworks */,
+ 92C116560F8EC8A80048CA8D /* guichan.framework in Frameworks */,
+ 92C116370F8EC4F60048CA8D /* SDL.framework in Frameworks */,
+ 92C116380F8EC4F60048CA8D /* SDL_image.framework in Frameworks */,
+ 92C116390F8EC4F60048CA8D /* SDL_mixer.framework in Frameworks */,
+ 92C1163A0F8EC4F60048CA8D /* SDL_ttf.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
@@ -837,6 +1457,7 @@
isa = PBXGroup;
children = (
508344B209E5C41E0093A071 /* The Mana World.app */,
+ 925468FA0F8EB65C00B4C3A3 /* The Mana World (tmwserv).app */,
);
name = Products;
sourceTree = "<group>";
@@ -850,6 +1471,7 @@
20286C2CFDCF999611CA2CEA /* Resources */,
20286C32FDCF999611CA2CEA /* External Frameworks and Libraries */,
195DF8CFFE9D517E11CA2CBB /* Products */,
+ 925468FC0F8EB65C00B4C3A3 /* tmwserv-Info.plist */,
);
name = themanaworld;
sourceTree = "<group>";
@@ -857,6 +1479,21 @@
20286C2AFDCF999611CA2CEA /* Sources */ = {
isa = PBXGroup;
children = (
+ 92C119980F8ED8B00048CA8D /* position.cpp */,
+ 92C1188E0F8ED4B30048CA8D /* guild.cpp */,
+ 92C1188F0F8ED4B30048CA8D /* guild.h */,
+ 92C115EC0F8EBFC20048CA8D /* channel.cpp */,
+ 92C115ED0F8EBFC20048CA8D /* channel.h */,
+ 92C115CB0F8EBF090048CA8D /* channelmanager.cpp */,
+ 92C115CC0F8EBF090048CA8D /* channelmanager.h */,
+ 92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */,
+ 92C1159D0F8EBDB20048CA8D /* commandhandler.h */,
+ 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */,
+ 92C1159F0F8EBDB20048CA8D /* effectmanager.h */,
+ 92C115A00F8EBDB20048CA8D /* units.cpp */,
+ 92C115A10F8EBDB20048CA8D /* units.h */,
+ 92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */,
+ 92C1151F0F8EBBA90048CA8D /* emoteshortcut.h */,
9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */,
9273BE050EF33FB3008E56E1 /* particlecontainer.h */,
9273BE060EF33FB3008E56E1 /* statuseffect.cpp */,
@@ -872,7 +1509,6 @@
92FD19AF0DDCE51000D14E5D /* player_relations.h */,
926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */,
926F9CF70DB005FA00AACD26 /* itemshortcut.h */,
- 92A4CC9D0D1C622E00CA28FB /* dye.cpp */,
92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */,
92024D2B0CF1BD9E006B55CB /* keyboardconfig.h */,
92024D2C0CF1BD9E006B55CB /* vector.h */,
@@ -991,6 +1627,58 @@
924A3A0F0C07A60B0066885E /* widgets */ = {
isa = PBXGroup;
children = (
+ 92A245C20F93626900B7719B /* desktop.cpp */,
+ 92A245C30F93626900B7719B /* desktop.h */,
+ 92A244B50F935FB400B7719B /* container.cpp */,
+ 92A244B60F935FB400B7719B /* container.h */,
+ 92C115FD0F8EC0150048CA8D /* textpreview.cpp */,
+ 92C115FE0F8EC0150048CA8D /* textpreview.h */,
+ 92C115F50F8EBFDD0048CA8D /* dropdown.cpp */,
+ 92C115F60F8EBFDD0048CA8D /* dropdown.h */,
+ 92C115DF0F8EBF7C0048CA8D /* avatar.cpp */,
+ 92C115E00F8EBF7C0048CA8D /* avatar.h */,
+ 92C115D50F8EBF530048CA8D /* button.cpp */,
+ 92C115D60F8EBF530048CA8D /* button.h */,
+ 92C115D70F8EBF530048CA8D /* icon.cpp */,
+ 92C115D80F8EBF530048CA8D /* icon.h */,
+ 92C115D90F8EBF530048CA8D /* radiobutton.cpp */,
+ 92C115DA0F8EBF530048CA8D /* radiobutton.h */,
+ 92C115C30F8EBE950048CA8D /* whispertab.cpp */,
+ 92C115C40F8EBE950048CA8D /* whispertab.h */,
+ 92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */,
+ 92C115BE0F8EBE5E0048CA8D /* channeltab.h */,
+ 92C115500F8EBD250048CA8D /* label.cpp */,
+ 92C115510F8EBD250048CA8D /* label.h */,
+ 92C115520F8EBD250048CA8D /* progressbar.cpp */,
+ 92C115530F8EBD250048CA8D /* progressbar.h */,
+ 92C115490F8EBD000048CA8D /* checkbox.cpp */,
+ 92C1154A0F8EBD000048CA8D /* checkbox.h */,
+ 92C1154B0F8EBD000048CA8D /* textbox.cpp */,
+ 92C1154C0F8EBD000048CA8D /* textbox.h */,
+ 92C115450F8EBCD00048CA8D /* passwordfield.cpp */,
+ 92C115460F8EBCD00048CA8D /* passwordfield.h */,
+ 92C115390F8EBC730048CA8D /* chattab.cpp */,
+ 92C1153A0F8EBC730048CA8D /* chattab.h */,
+ 92C115320F8EBC450048CA8D /* browserbox.cpp */,
+ 92C115330F8EBC450048CA8D /* browserbox.h */,
+ 92C115340F8EBC450048CA8D /* windowcontainer.cpp */,
+ 92C115350F8EBC450048CA8D /* windowcontainer.h */,
+ 92C115220F8EBBD50048CA8D /* inttextfield.cpp */,
+ 92C115230F8EBBD50048CA8D /* inttextfield.h */,
+ 92C115240F8EBBD50048CA8D /* popup.cpp */,
+ 92C115250F8EBBD50048CA8D /* popup.h */,
+ 92C115260F8EBBD50048CA8D /* textfield.cpp */,
+ 92C115270F8EBBD50048CA8D /* textfield.h */,
+ 92C115140F8EBB830048CA8D /* listbox.cpp */,
+ 92C115150F8EBB830048CA8D /* listbox.h */,
+ 92C115160F8EBB830048CA8D /* scrollarea.cpp */,
+ 92C115170F8EBB830048CA8D /* scrollarea.h */,
+ 92C115180F8EBB830048CA8D /* slider.cpp */,
+ 92C115190F8EBB830048CA8D /* slider.h */,
+ 92C1150C0F8EBB360048CA8D /* window.cpp */,
+ 92C1150D0F8EBB360048CA8D /* window.h */,
+ 92DD76450F267B3600B2B519 /* layouthelper.cpp */,
+ 92DD76460F267B3600B2B519 /* layouthelper.h */,
926A29440F23BD88005D6466 /* layout.cpp */,
926A29450F23BD88005D6466 /* layout.h */,
926A29460F23BD88005D6466 /* tab.cpp */,
@@ -1006,7 +1694,7 @@
924A3E590C085ED70066885E /* data */ = {
isa = PBXGroup;
children = (
- 9273BE0A0EF33FFF008E56E1 /* music */,
+ 926A29970F23C97C005D6466 /* fonts */,
924A3E5C0C085ED70066885E /* graphics */,
924A40090C085ED80066885E /* help */,
924A40140C085ED80066885E /* icons */,
@@ -1027,9 +1715,17 @@
924A3E5E0C085ED70066885E /* gui */ = {
isa = PBXGroup;
children = (
+ 92C116010F8EC0590048CA8D /* circle-gray.png */,
+ 92C116020F8EC0590048CA8D /* circle-green.png */,
+ 92C116030F8EC0590048CA8D /* default.png */,
+ 92C116040F8EC0590048CA8D /* equip_bg.png */,
+ 92C116050F8EC0590048CA8D /* gui.xml */,
+ 92C116060F8EC0590048CA8D /* speech_bubble.png */,
+ 92C116070F8EC0590048CA8D /* speechbubble.xml */,
+ 92C116080F8EC0590048CA8D /* sticky_button.png */,
+ 928B50E40F2FB5430011C755 /* bubble.png */,
926A297E0F23C18E005D6466 /* tab.png */,
926A297F0F23C18E005D6466 /* tabselected.png */,
- 92FD19C60DDCEB8500D14E5D /* emotions.png */,
92024D5B0CF1BE5C006B55CB /* close_button.png */,
92024D5D0CF1BE5C006B55CB /* unknown-item.png */,
92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */,
@@ -1040,25 +1736,16 @@
924A3E650C085ED70066885E /* buttonpress.png */,
924A3E660C085ED70066885E /* checkbox.png */,
924A3E680C085ED70066885E /* deepbox.png */,
- 924A3E690C085ED70066885E /* fixedfont.png */,
- 924A3E6A0C085ED70066885E /* hits_blue.png */,
- 924A3E6B0C085ED70066885E /* hits_red.png */,
- 924A3E6C0C085ED70066885E /* hits_yellow.png */,
924A3E6D0C085ED70066885E /* hscroll_left_default.png */,
924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */,
924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */,
924A3E700C085ED70066885E /* hscroll_right_default.png */,
924A3E710C085ED70066885E /* hscroll_right_highlight.png */,
924A3E720C085ED70066885E /* hscroll_right_pressed.png */,
- 924A3E740C085ED70066885E /* menuitemD.png */,
- 924A3E750C085ED70066885E /* menuitemF.png */,
- 924A3E760C085ED70066885E /* menuitemN.png */,
- 924A3E770C085ED70066885E /* menuitemP.png */,
924A3E780C085ED70066885E /* mouse.png */,
924A3E790C085ED70066885E /* radioin.png */,
924A3E7A0C085ED70066885E /* radioout.png */,
924A3E7B0C085ED70066885E /* resize.png */,
- 924A3E7C0C085ED70066885E /* rpgfont_wider.png */,
924A3E7E0C085ED70066885E /* selection.png */,
924A3E7F0C085ED70066885E /* slider.png */,
924A3E800C085ED70066885E /* target-cursor-blue-l.png */,
@@ -1067,7 +1754,6 @@
924A3E830C085ED70066885E /* target-cursor-red-l.png */,
924A3E840C085ED70066885E /* target-cursor-red-m.png */,
924A3E850C085ED70066885E /* target-cursor-red-s.png */,
- 924A3E860C085ED70066885E /* thickborder.png */,
924A3E870C085ED70066885E /* vscroll_blue.png */,
924A3E880C085ED70066885E /* vscroll_down_default.png */,
924A3E890C085ED70066885E /* vscroll_down_highlight.png */,
@@ -1117,17 +1803,12 @@
path = icons;
sourceTree = "<group>";
};
- 9273BE0A0EF33FFF008E56E1 /* music */ = {
+ 926A29970F23C97C005D6466 /* fonts */ = {
isa = PBXGroup;
children = (
- 9273BE0B0EF33FFF008E56E1 /* Clouds Calling.ogg */,
- 9273BE0C0EF33FFF008E56E1 /* Faith.ogg */,
- 9273BE0D0EF33FFF008E56E1 /* finalman_and_yakslem-cavesong.ogg */,
- 9273BE0E0EF33FFF008E56E1 /* Magick - Real.ogg */,
- 9273BE0F0EF33FFF008E56E1 /* The Mana World - Snow Village.ogg */,
- 9273BE100EF33FFF008E56E1 /* The Mana World - The Forest.ogg */,
+ 926A29980F23C988005D6466 /* dejavusans.ttf */,
);
- path = music;
+ name = fonts;
sourceTree = "<group>";
};
92A4CCDF0D1DA58D00CA28FB /* archivers */ = {
@@ -1148,6 +1829,63 @@
92BC3EF00BAEE55A000DAB7F /* gui */ = {
isa = PBXGroup;
children = (
+ 92C119830F8ED80E0048CA8D /* serverdialog.cpp */,
+ 92C119840F8ED80E0048CA8D /* serverdialog.h */,
+ 92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */,
+ 92C1191C0F8ED79A0048CA8D /* changeemaildialog.h */,
+ 92C118FB0F8ED63F0048CA8D /* guildlistbox.cpp */,
+ 92C118FC0F8ED63F0048CA8D /* guildlistbox.h */,
+ 92C118FD0F8ED63F0048CA8D /* guildwindow.cpp */,
+ 92C118FE0F8ED63F0048CA8D /* guildwindow.h */,
+ 92C118FF0F8ED63F0048CA8D /* magic.cpp */,
+ 92C119000F8ED63F0048CA8D /* magic.h */,
+ 92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */,
+ 92C119020F8ED63F0048CA8D /* npcpostdialog.h */,
+ 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */,
+ 92C118F30F8ED5DE0048CA8D /* textdialog.h */,
+ 92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */,
+ 92C118700F8ED33F0048CA8D /* quitdialog.h */,
+ 92C117560F8ECF0B0048CA8D /* statuswindow.cpp */,
+ 92C117570F8ECF0B0048CA8D /* statuswindow.h */,
+ 92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */,
+ 92C117590F8ECF0B0048CA8D /* unregisterdialog.h */,
+ 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */,
+ 92C117540F8ECEEA0048CA8D /* skilldialog.h */,
+ 92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */,
+ 92C116E50F8ECBE80048CA8D /* changepassworddialog.h */,
+ 92C115F90F8EBFF30048CA8D /* setup_colors.cpp */,
+ 92C115FA0F8EBFF30048CA8D /* setup_colors.h */,
+ 92C115EF0F8EBFD20048CA8D /* emotecontainer.cpp */,
+ 92C115F00F8EBFD20048CA8D /* emotecontainer.h */,
+ 92C115F10F8EBFD20048CA8D /* emoteshortcutcontainer.cpp */,
+ 92C115F20F8EBFD20048CA8D /* emoteshortcutcontainer.h */,
+ 92C115E20F8EBF9A0048CA8D /* emotewindow.cpp */,
+ 92C115E30F8EBF9A0048CA8D /* emotewindow.h */,
+ 92C115E40F8EBF9A0048CA8D /* itemlinkhandler.cpp */,
+ 92C115E50F8EBF9A0048CA8D /* itemlinkhandler.h */,
+ 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */,
+ 92C115C80F8EBECE0048CA8D /* charcreatedialog.h */,
+ 92C115AD0F8EBE450048CA8D /* palette.cpp */,
+ 92C115AE0F8EBE450048CA8D /* palette.h */,
+ 92C115AF0F8EBE450048CA8D /* partywindow.cpp */,
+ 92C115B00F8EBE450048CA8D /* partywindow.h */,
+ 92C115B10F8EBE450048CA8D /* recorder.cpp */,
+ 92C115B20F8EBE450048CA8D /* recorder.h */,
+ 92C115B30F8EBE450048CA8D /* skin.cpp */,
+ 92C115B40F8EBE450048CA8D /* skin.h */,
+ 92C115B50F8EBE450048CA8D /* speechbubble.cpp */,
+ 92C115B60F8EBE450048CA8D /* speechbubble.h */,
+ 92C115400F8EBCB70048CA8D /* setuptab.cpp */,
+ 92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */,
+ 92C115420F8EBCB70048CA8D /* shortcutwindow.h */,
+ 92C1153C0F8EBC830048CA8D /* shortcutcontainer.cpp */,
+ 92C1153D0F8EBC830048CA8D /* shortcutcontainer.h */,
+ 92C1152F0F8EBC2B0048CA8D /* serverselectdialog.cpp */,
+ 92C115300F8EBC2B0048CA8D /* serverselectdialog.h */,
+ 92C1152B0F8EBBE30048CA8D /* storagewindow.cpp */,
+ 92C1152C0F8EBBE30048CA8D /* storagewindow.h */,
+ 92C115100F8EBB550048CA8D /* itempopup.cpp */,
+ 92C115110F8EBB550048CA8D /* itempopup.h */,
926A294E0F23BD9E005D6466 /* npcintegerdialog.cpp */,
926A294F0F23BD9E005D6466 /* npcintegerdialog.h */,
926A29500F23BD9E005D6466 /* npcstringdialog.cpp */,
@@ -1169,26 +1907,16 @@
92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */,
92024D370CF1BDF7006B55CB /* setup_keyboard.h */,
924A3A0F0C07A60B0066885E /* widgets */,
- 92BC3EF30BAEE55A000DAB7F /* browserbox.cpp */,
- 92BC3EF40BAEE55A000DAB7F /* browserbox.h */,
92BC3EF50BAEE55A000DAB7F /* buddywindow.cpp */,
92BC3EF60BAEE55A000DAB7F /* buddywindow.h */,
- 92BC3EF70BAEE55A000DAB7F /* button.cpp */,
- 92BC3EF80BAEE55A000DAB7F /* button.h */,
92BC3EF90BAEE55A000DAB7F /* buy.cpp */,
92BC3EFA0BAEE55A000DAB7F /* buy.h */,
92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */,
92BC3EFC0BAEE55A000DAB7F /* buysell.h */,
92BC3EFD0BAEE55A000DAB7F /* char_select.cpp */,
92BC3EFE0BAEE55A000DAB7F /* char_select.h */,
- 92BC3EFF0BAEE55A000DAB7F /* char_server.cpp */,
- 92BC3F000BAEE55A000DAB7F /* char_server.h */,
92BC3F030BAEE55A000DAB7F /* chat.cpp */,
92BC3F040BAEE55A000DAB7F /* chat.h */,
- 92BC3F050BAEE55A000DAB7F /* chatinput.cpp */,
- 92BC3F060BAEE55A000DAB7F /* chatinput.h */,
- 92BC3F070BAEE55A000DAB7F /* checkbox.cpp */,
- 92BC3F080BAEE55A000DAB7F /* checkbox.h */,
92BC3F090BAEE55A000DAB7F /* confirm_dialog.cpp */,
92BC3F0A0BAEE55A000DAB7F /* confirm_dialog.h */,
92BC3F0B0BAEE55A000DAB7F /* connection.cpp */,
@@ -1199,14 +1927,10 @@
92BC3F100BAEE55A000DAB7F /* equipmentwindow.h */,
92BC3F110BAEE55A000DAB7F /* focushandler.cpp */,
92BC3F120BAEE55A000DAB7F /* focushandler.h */,
- 92BC3F130BAEE55A000DAB7F /* gccontainer.cpp */,
- 92BC3F140BAEE55A000DAB7F /* gccontainer.h */,
92BC3F150BAEE55A000DAB7F /* gui.cpp */,
92BC3F160BAEE55A000DAB7F /* gui.h */,
92BC3F190BAEE55A000DAB7F /* help.cpp */,
92BC3F1A0BAEE55A000DAB7F /* help.h */,
- 92BC3F1B0BAEE55A000DAB7F /* inttextbox.cpp */,
- 92BC3F1C0BAEE55A000DAB7F /* inttextbox.h */,
92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */,
92BC3F1E0BAEE55A000DAB7F /* inventorywindow.h */,
92BC3F1F0BAEE55A000DAB7F /* item_amount.cpp */,
@@ -1214,8 +1938,6 @@
92BC3F210BAEE55A000DAB7F /* itemcontainer.cpp */,
92BC3F220BAEE55A000DAB7F /* itemcontainer.h */,
92BC3F230BAEE55A000DAB7F /* linkhandler.h */,
- 92BC3F240BAEE55A000DAB7F /* listbox.cpp */,
- 92BC3F250BAEE55A000DAB7F /* listbox.h */,
92BC3F260BAEE55A000DAB7F /* login.cpp */,
92BC3F270BAEE55A000DAB7F /* login.h */,
92BC3F280BAEE55A000DAB7F /* menuwindow.cpp */,
@@ -1230,20 +1952,12 @@
92BC3F330BAEE55A000DAB7F /* npclistdialog.h */,
92BC3F340BAEE55A000DAB7F /* ok_dialog.cpp */,
92BC3F350BAEE55A000DAB7F /* ok_dialog.h */,
- 92BC3F360BAEE55A000DAB7F /* passwordfield.cpp */,
- 92BC3F370BAEE55A000DAB7F /* passwordfield.h */,
92BC3F380BAEE55A000DAB7F /* playerbox.cpp */,
92BC3F390BAEE55A000DAB7F /* playerbox.h */,
92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */,
92BC3F3B0BAEE55A000DAB7F /* popupmenu.h */,
- 92BC3F3C0BAEE55A000DAB7F /* progressbar.cpp */,
- 92BC3F3D0BAEE55A000DAB7F /* progressbar.h */,
- 92BC3F3E0BAEE55A000DAB7F /* radiobutton.cpp */,
- 92BC3F3F0BAEE55A000DAB7F /* radiobutton.h */,
92BC3F400BAEE55A000DAB7F /* register.cpp */,
92BC3F410BAEE55A000DAB7F /* register.h */,
- 92BC3F420BAEE55A000DAB7F /* scrollarea.cpp */,
- 92BC3F430BAEE55A000DAB7F /* scrollarea.h */,
92BC3F450BAEE55A000DAB7F /* sell.cpp */,
92BC3F460BAEE55A000DAB7F /* sell.h */,
92BC3F470BAEE55A000DAB7F /* setup.cpp */,
@@ -1261,24 +1975,14 @@
92BC3F530BAEE55A000DAB7F /* shoplistbox.h */,
92BC3F540BAEE55A000DAB7F /* skill.cpp */,
92BC3F550BAEE55A000DAB7F /* skill.h */,
- 92BC3F560BAEE55A000DAB7F /* slider.cpp */,
- 92BC3F570BAEE55A000DAB7F /* slider.h */,
92BC3F580BAEE55A000DAB7F /* status.cpp */,
92BC3F590BAEE55B000DAB7F /* status.h */,
- 92BC3F5C0BAEE55B000DAB7F /* textbox.cpp */,
- 92BC3F5D0BAEE55B000DAB7F /* textbox.h */,
- 92BC3F5E0BAEE55B000DAB7F /* textfield.cpp */,
- 92BC3F5F0BAEE55B000DAB7F /* textfield.h */,
92BC3F600BAEE55B000DAB7F /* trade.cpp */,
92BC3F610BAEE55B000DAB7F /* trade.h */,
92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */,
92BC3F630BAEE55B000DAB7F /* updatewindow.h */,
92BC3F660BAEE55B000DAB7F /* viewport.cpp */,
92BC3F670BAEE55B000DAB7F /* viewport.h */,
- 92BC3F680BAEE55B000DAB7F /* window.cpp */,
- 92BC3F690BAEE55B000DAB7F /* window.h */,
- 92BC3F6A0BAEE55B000DAB7F /* windowcontainer.cpp */,
- 92BC3F6B0BAEE55B000DAB7F /* windowcontainer.h */,
);
name = gui;
path = src/gui;
@@ -1287,41 +1991,22 @@
92BC3F800BAEE55B000DAB7F /* net */ = {
isa = PBXGroup;
children = (
- 92BC3F810BAEE55B000DAB7F /* beinghandler.cpp */,
- 92BC3F820BAEE55B000DAB7F /* beinghandler.h */,
- 92BC3F830BAEE55B000DAB7F /* buysellhandler.cpp */,
- 92BC3F840BAEE55B000DAB7F /* buysellhandler.h */,
- 92BC3F850BAEE55B000DAB7F /* charserverhandler.cpp */,
- 92BC3F860BAEE55B000DAB7F /* charserverhandler.h */,
- 92BC3F870BAEE55B000DAB7F /* chathandler.cpp */,
+ 92C119200F8ED7C20048CA8D /* tmwserv */,
+ 92C1155A0F8EBD570048CA8D /* ea */,
+ 92C115570F8EBD490048CA8D /* net.cpp */,
+ 92C115580F8EBD490048CA8D /* net.h */,
92BC3F880BAEE55B000DAB7F /* chathandler.h */,
- 92BC3F890BAEE55B000DAB7F /* equipmenthandler.cpp */,
- 92BC3F8A0BAEE55B000DAB7F /* equipmenthandler.h */,
- 92BC3F8B0BAEE55B000DAB7F /* inventoryhandler.cpp */,
92BC3F8C0BAEE55B000DAB7F /* inventoryhandler.h */,
- 92BC3F8D0BAEE55B000DAB7F /* itemhandler.cpp */,
- 92BC3F8E0BAEE55B000DAB7F /* itemhandler.h */,
- 92BC3F8F0BAEE55B000DAB7F /* loginhandler.cpp */,
92BC3F900BAEE55B000DAB7F /* loginhandler.h */,
- 92BC3F910BAEE55B000DAB7F /* maploginhandler.cpp */,
- 92BC3F920BAEE55B000DAB7F /* maploginhandler.h */,
92BC3F930BAEE55B000DAB7F /* messagehandler.cpp */,
92BC3F940BAEE55B000DAB7F /* messagehandler.h */,
92BC3F950BAEE55B000DAB7F /* messagein.cpp */,
92BC3F960BAEE55B000DAB7F /* messagein.h */,
92BC3F970BAEE55B000DAB7F /* messageout.cpp */,
92BC3F980BAEE55B000DAB7F /* messageout.h */,
- 92BC3F990BAEE55B000DAB7F /* network.cpp */,
- 92BC3F9A0BAEE55B000DAB7F /* network.h */,
- 92BC3F9B0BAEE55B000DAB7F /* npchandler.cpp */,
92BC3F9C0BAEE55B000DAB7F /* npchandler.h */,
- 92BC3F9D0BAEE55B000DAB7F /* playerhandler.cpp */,
92BC3F9E0BAEE55B000DAB7F /* playerhandler.h */,
- 92BC3F9F0BAEE55B000DAB7F /* protocol.cpp */,
- 92BC3FA00BAEE55B000DAB7F /* protocol.h */,
- 92BC3FA10BAEE55B000DAB7F /* skillhandler.cpp */,
92BC3FA20BAEE55B000DAB7F /* skillhandler.h */,
- 92BC3FA30BAEE55B000DAB7F /* tradehandler.cpp */,
92BC3FA40BAEE55B000DAB7F /* tradehandler.h */,
);
name = net;
@@ -1358,8 +2043,15 @@
92BC3FBD0BAEE55B000DAB7F /* resources */ = {
isa = PBXGroup;
children = (
+ 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */,
+ 92C115CF0F8EBF1C0048CA8D /* colordb.h */,
+ 92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */,
+ 92C115D10F8EBF1C0048CA8D /* wallpaper.h */,
+ 92C115990F8EBD900048CA8D /* emotedb.cpp */,
+ 92C1159A0F8EBD900048CA8D /* emotedb.h */,
922CD9560E3D00900074C50E /* npcdb.cpp */,
922CD9570E3D00900074C50E /* npcdb.h */,
+ 92A4CC9D0D1C622E00CA28FB /* dye.cpp */,
92FD19BD0DDCE56A00D14E5D /* dye.h */,
92024E740CF1DCF6006B55CB /* imageloader.cpp */,
92024E750CF1DCF6006B55CB /* imageloader.h */,
@@ -1371,8 +2063,6 @@
92BC3FC10BAEE55B000DAB7F /* ambientoverlay.h */,
92BC3FC20BAEE55B000DAB7F /* animation.cpp */,
92BC3FC30BAEE55B000DAB7F /* animation.h */,
- 92BC3FC40BAEE55B000DAB7F /* buddylist.cpp */,
- 92BC3FC50BAEE55B000DAB7F /* buddylist.h */,
92BC3FC90BAEE55B000DAB7F /* image.cpp */,
92BC3FCA0BAEE55B000DAB7F /* image.h */,
92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */,
@@ -1405,16 +2095,18 @@
92BC3FEE0BAEE55B000DAB7F /* utils */ = {
isa = PBXGroup;
children = (
+ 92C1198E0F8ED85E0048CA8D /* sha256.cpp */,
+ 92C1198F0F8ED85E0048CA8D /* sha256.h */,
+ 92C115E80F8EBFA60048CA8D /* stringutils.cpp */,
+ 92C115E90F8EBFA60048CA8D /* stringutils.h */,
926A295A0F23BDB1005D6466 /* gettext.h */,
926A295B0F23BDB1005D6466 /* mutex.h */,
92FD19BF0DDCE6F700D14E5D /* strprintf.cpp */,
92FD19C00DDCE6F700D14E5D /* strprintf.h */,
92024D400CF1BE22006B55CB /* fastsqrt.h */,
- 92024D420CF1BE22006B55CB /* trim.h */,
92BC3FEF0BAEE55B000DAB7F /* base64.cpp */,
92BC3FF00BAEE55B000DAB7F /* base64.h */,
92BC3FF10BAEE55B000DAB7F /* dtor.h */,
- 92BC3FF20BAEE55B000DAB7F /* tostring.h */,
92BC3FF40BAEE55B000DAB7F /* xml.cpp */,
92BC3FF50BAEE55B000DAB7F /* xml.h */,
);
@@ -1422,12 +2114,161 @@
path = src/utils;
sourceTree = "<group>";
};
+ 92C1155A0F8EBD570048CA8D /* ea */ = {
+ isa = PBXGroup;
+ children = (
+ 92C1155B0F8EBD570048CA8D /* adminhandler.cpp */,
+ 92C1155C0F8EBD570048CA8D /* adminhandler.h */,
+ 92C1155D0F8EBD570048CA8D /* beinghandler.cpp */,
+ 92C1155E0F8EBD570048CA8D /* beinghandler.h */,
+ 92C1155F0F8EBD570048CA8D /* buysellhandler.cpp */,
+ 92C115600F8EBD570048CA8D /* buysellhandler.h */,
+ 92C115610F8EBD570048CA8D /* charserverhandler.cpp */,
+ 92C115620F8EBD570048CA8D /* charserverhandler.h */,
+ 92C115630F8EBD570048CA8D /* chathandler.cpp */,
+ 92C115640F8EBD570048CA8D /* chathandler.h */,
+ 92C115650F8EBD570048CA8D /* equipmenthandler.cpp */,
+ 92C115660F8EBD570048CA8D /* equipmenthandler.h */,
+ 92C115670F8EBD570048CA8D /* generalhandler.cpp */,
+ 92C115680F8EBD570048CA8D /* generalhandler.h */,
+ 92C115690F8EBD570048CA8D /* gui */,
+ 92C1156C0F8EBD570048CA8D /* inventoryhandler.cpp */,
+ 92C1156D0F8EBD570048CA8D /* inventoryhandler.h */,
+ 92C1156E0F8EBD570048CA8D /* itemhandler.cpp */,
+ 92C1156F0F8EBD570048CA8D /* itemhandler.h */,
+ 92C115700F8EBD570048CA8D /* loginhandler.cpp */,
+ 92C115710F8EBD570048CA8D /* loginhandler.h */,
+ 92C115720F8EBD570048CA8D /* logouthandler.cpp */,
+ 92C115730F8EBD570048CA8D /* logouthandler.h */,
+ 92C115740F8EBD570048CA8D /* maphandler.cpp */,
+ 92C115750F8EBD570048CA8D /* maphandler.h */,
+ 92C115760F8EBD570048CA8D /* network.cpp */,
+ 92C115770F8EBD570048CA8D /* network.h */,
+ 92C115780F8EBD570048CA8D /* npchandler.cpp */,
+ 92C115790F8EBD570048CA8D /* npchandler.h */,
+ 92C1157A0F8EBD570048CA8D /* partyhandler.cpp */,
+ 92C1157B0F8EBD570048CA8D /* partyhandler.h */,
+ 92C1157C0F8EBD570048CA8D /* playerhandler.cpp */,
+ 92C1157D0F8EBD570048CA8D /* playerhandler.h */,
+ 92C1157E0F8EBD570048CA8D /* protocol.cpp */,
+ 92C1157F0F8EBD570048CA8D /* protocol.h */,
+ 92C115800F8EBD570048CA8D /* skillhandler.cpp */,
+ 92C115810F8EBD570048CA8D /* skillhandler.h */,
+ 92C115820F8EBD570048CA8D /* tradehandler.cpp */,
+ 92C115830F8EBD570048CA8D /* tradehandler.h */,
+ );
+ path = ea;
+ sourceTree = "<group>";
+ };
+ 92C115690F8EBD570048CA8D /* gui */ = {
+ isa = PBXGroup;
+ children = (
+ 92C1156A0F8EBD570048CA8D /* partytab.cpp */,
+ 92C1156B0F8EBD570048CA8D /* partytab.h */,
+ );
+ path = gui;
+ sourceTree = "<group>";
+ };
+ 92C119200F8ED7C20048CA8D /* tmwserv */ = {
+ isa = PBXGroup;
+ children = (
+ 92C119210F8ED7C20048CA8D /* accountserver */,
+ 92C119280F8ED7C20048CA8D /* adminhandler.cpp */,
+ 92C119290F8ED7C20048CA8D /* adminhandler.h */,
+ 92C1192A0F8ED7C20048CA8D /* beinghandler.cpp */,
+ 92C1192B0F8ED7C20048CA8D /* beinghandler.h */,
+ 92C1192C0F8ED7C20048CA8D /* buysellhandler.cpp */,
+ 92C1192D0F8ED7C20048CA8D /* buysellhandler.h */,
+ 92C1192E0F8ED7C20048CA8D /* charserverhandler.cpp */,
+ 92C1192F0F8ED7C20048CA8D /* charserverhandler.h */,
+ 92C119300F8ED7C20048CA8D /* chathandler.cpp */,
+ 92C119310F8ED7C20048CA8D /* chathandler.h */,
+ 92C119320F8ED7C20048CA8D /* chatserver */,
+ 92C1193B0F8ED7C20048CA8D /* connection.cpp */,
+ 92C1193C0F8ED7C20048CA8D /* connection.h */,
+ 92C1193D0F8ED7C20048CA8D /* effecthandler.cpp */,
+ 92C1193E0F8ED7C20048CA8D /* effecthandler.h */,
+ 92C1193F0F8ED7C20048CA8D /* gameserver */,
+ 92C119460F8ED7C20048CA8D /* generalhandler.cpp */,
+ 92C119470F8ED7C20048CA8D /* generalhandler.h */,
+ 92C119480F8ED7C20048CA8D /* guildhandler.cpp */,
+ 92C119490F8ED7C20048CA8D /* guildhandler.h */,
+ 92C1194A0F8ED7C20048CA8D /* internal.cpp */,
+ 92C1194B0F8ED7C20048CA8D /* internal.h */,
+ 92C1194C0F8ED7C20048CA8D /* inventoryhandler.cpp */,
+ 92C1194D0F8ED7C20048CA8D /* inventoryhandler.h */,
+ 92C1194E0F8ED7C20048CA8D /* itemhandler.cpp */,
+ 92C1194F0F8ED7C20048CA8D /* itemhandler.h */,
+ 92C119500F8ED7C20048CA8D /* loginhandler.cpp */,
+ 92C119510F8ED7C20048CA8D /* loginhandler.h */,
+ 92C119520F8ED7C20048CA8D /* logouthandler.cpp */,
+ 92C119530F8ED7C20048CA8D /* logouthandler.h */,
+ 92C119540F8ED7C20048CA8D /* maphandler.cpp */,
+ 92C119550F8ED7C20048CA8D /* maphandler.h */,
+ 92C119560F8ED7C20048CA8D /* network.cpp */,
+ 92C119570F8ED7C20048CA8D /* network.h */,
+ 92C119580F8ED7C20048CA8D /* npchandler.cpp */,
+ 92C119590F8ED7C20048CA8D /* npchandler.h */,
+ 92C1195A0F8ED7C20048CA8D /* partyhandler.cpp */,
+ 92C1195B0F8ED7C20048CA8D /* partyhandler.h */,
+ 92C1195C0F8ED7C20048CA8D /* playerhandler.cpp */,
+ 92C1195D0F8ED7C20048CA8D /* playerhandler.h */,
+ 92C1195E0F8ED7C20048CA8D /* protocol.h */,
+ 92C1195F0F8ED7C20048CA8D /* skillhandler.cpp */,
+ 92C119600F8ED7C20048CA8D /* skillhandler.h */,
+ 92C119610F8ED7C20048CA8D /* tradehandler.cpp */,
+ 92C119620F8ED7C20048CA8D /* tradehandler.h */,
+ );
+ path = tmwserv;
+ sourceTree = "<group>";
+ };
+ 92C119210F8ED7C20048CA8D /* accountserver */ = {
+ isa = PBXGroup;
+ children = (
+ 92C119220F8ED7C20048CA8D /* account.cpp */,
+ 92C119230F8ED7C20048CA8D /* account.h */,
+ 92C119240F8ED7C20048CA8D /* accountserver.cpp */,
+ 92C119250F8ED7C20048CA8D /* accountserver.h */,
+ 92C119260F8ED7C20048CA8D /* internal.cpp */,
+ 92C119270F8ED7C20048CA8D /* internal.h */,
+ );
+ path = accountserver;
+ sourceTree = "<group>";
+ };
+ 92C119320F8ED7C20048CA8D /* chatserver */ = {
+ isa = PBXGroup;
+ children = (
+ 92C119330F8ED7C20048CA8D /* chatserver.cpp */,
+ 92C119340F8ED7C20048CA8D /* chatserver.h */,
+ 92C119350F8ED7C20048CA8D /* guild.cpp */,
+ 92C119360F8ED7C20048CA8D /* guild.h */,
+ 92C119370F8ED7C20048CA8D /* internal.cpp */,
+ 92C119380F8ED7C20048CA8D /* internal.h */,
+ 92C119390F8ED7C20048CA8D /* party.cpp */,
+ 92C1193A0F8ED7C20048CA8D /* party.h */,
+ );
+ path = chatserver;
+ sourceTree = "<group>";
+ };
+ 92C1193F0F8ED7C20048CA8D /* gameserver */ = {
+ isa = PBXGroup;
+ children = (
+ 92C119400F8ED7C20048CA8D /* gameserver.cpp */,
+ 92C119410F8ED7C20048CA8D /* gameserver.h */,
+ 92C119420F8ED7C20048CA8D /* internal.cpp */,
+ 92C119430F8ED7C20048CA8D /* internal.h */,
+ 92C119440F8ED7C20048CA8D /* player.cpp */,
+ 92C119450F8ED7C20048CA8D /* player.h */,
+ );
+ path = gameserver;
+ sourceTree = "<group>";
+ };
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- 8D0C4E890486CD37000505A6 /* themanaworld */ = {
+ 8D0C4E890486CD37000505A6 /* themanaworld-eathena */ = {
isa = PBXNativeTarget;
- buildConfigurationList = C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld" */;
+ buildConfigurationList = C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld-eathena" */;
buildPhases = (
8D0C4E8C0486CD37000505A6 /* Resources */,
8D0C4E8F0486CD37000505A6 /* Sources */,
@@ -1438,17 +2279,40 @@
924A42000C0861C70066885E /* Copy Help Files */,
92EEA0090D2E20D100DDE300 /* Copy Frameworks */,
9273BE3C0EF34050008E56E1 /* Copy Music Files */,
+ 926A29AA0F23CA6D005D6466 /* Copy Font Files */,
);
buildRules = (
);
dependencies = (
);
- name = themanaworld;
+ name = "themanaworld-eathena";
productInstallPath = "$(HOME)/Applications";
productName = themanaworld;
productReference = 508344B209E5C41E0093A071 /* The Mana World.app */;
productType = "com.apple.product-type.application";
};
+ 925468F90F8EB65C00B4C3A3 /* themanaworld-tmwserv */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 925468FF0F8EB65D00B4C3A3 /* Build configuration list for PBXNativeTarget "themanaworld-tmwserv" */;
+ buildPhases = (
+ 925468F60F8EB65C00B4C3A3 /* Resources */,
+ 925468F70F8EB65C00B4C3A3 /* Sources */,
+ 925468F80F8EB65C00B4C3A3 /* Frameworks */,
+ 92C116320F8EC4720048CA8D /* Copy GUI Files */,
+ 92C119CD0F8ED96C0048CA8D /* Copy Font Files */,
+ 92C11A130F8ED9F50048CA8D /* Copy Frameworks */,
+ 92C11A140F8ED9F50048CA8D /* Copy Image Files */,
+ 92C11A370F8EDAB80048CA8D /* Copy Data Files */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = "themanaworld-tmwserv";
+ productName = tmwserv;
+ productReference = 925468FA0F8EB65C00B4C3A3 /* The Mana World (tmwserv).app */;
+ productType = "com.apple.product-type.application";
+ };
/* End PBXNativeTarget section */
/* Begin PBXProject section */
@@ -1461,7 +2325,8 @@
projectDirPath = "";
projectRoot = "";
targets = (
- 8D0C4E890486CD37000505A6 /* themanaworld */,
+ 8D0C4E890486CD37000505A6 /* themanaworld-eathena */,
+ 925468F90F8EB65C00B4C3A3 /* themanaworld-tmwserv */,
);
};
/* End PBXProject section */
@@ -1475,9 +2340,14 @@
9273BDFC0EF33DFD008E56E1 /* COPYING in Resources */,
9273BDFF0EF33E1A008E56E1 /* AUTHORS in Resources */,
9273BE000EF33E1A008E56E1 /* README in Resources */,
- 926A29800F23C18E005D6466 /* tab.png in Resources */,
- 926A29810F23C18E005D6466 /* tabselected.png in Resources */,
- 926A29850F23C1C8005D6466 /* windows.txt in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 925468F60F8EB65C00B4C3A3 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 92C11A380F8EDAE50048CA8D /* The Mana World.icns in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1498,29 +2368,21 @@
92BC40050BAEE55B000DAB7F /* flooritemmanager.cpp in Sources */,
92BC40060BAEE55B000DAB7F /* game.cpp in Sources */,
92BC40070BAEE55B000DAB7F /* graphics.cpp in Sources */,
- 92BC40090BAEE55B000DAB7F /* browserbox.cpp in Sources */,
92BC400A0BAEE55B000DAB7F /* buddywindow.cpp in Sources */,
- 92BC400B0BAEE55B000DAB7F /* button.cpp in Sources */,
92BC400C0BAEE55B000DAB7F /* buy.cpp in Sources */,
92BC400D0BAEE55B000DAB7F /* buysell.cpp in Sources */,
92BC400E0BAEE55B000DAB7F /* char_select.cpp in Sources */,
- 92BC400F0BAEE55B000DAB7F /* char_server.cpp in Sources */,
92BC40110BAEE55B000DAB7F /* chat.cpp in Sources */,
- 92BC40120BAEE55B000DAB7F /* chatinput.cpp in Sources */,
- 92BC40130BAEE55B000DAB7F /* checkbox.cpp in Sources */,
92BC40140BAEE55B000DAB7F /* confirm_dialog.cpp in Sources */,
92BC40150BAEE55B000DAB7F /* connection.cpp in Sources */,
92BC40160BAEE55B000DAB7F /* debugwindow.cpp in Sources */,
92BC40170BAEE55B000DAB7F /* equipmentwindow.cpp in Sources */,
92BC40180BAEE55B000DAB7F /* focushandler.cpp in Sources */,
- 92BC40190BAEE55B000DAB7F /* gccontainer.cpp in Sources */,
92BC401A0BAEE55B000DAB7F /* gui.cpp in Sources */,
92BC401C0BAEE55B000DAB7F /* help.cpp in Sources */,
- 92BC401D0BAEE55B000DAB7F /* inttextbox.cpp in Sources */,
92BC401E0BAEE55B000DAB7F /* inventorywindow.cpp in Sources */,
92BC401F0BAEE55B000DAB7F /* item_amount.cpp in Sources */,
92BC40200BAEE55B000DAB7F /* itemcontainer.cpp in Sources */,
- 92BC40210BAEE55B000DAB7F /* listbox.cpp in Sources */,
92BC40220BAEE55B000DAB7F /* login.cpp in Sources */,
92BC40230BAEE55B000DAB7F /* menuwindow.cpp in Sources */,
92BC40240BAEE55B000DAB7F /* minimap.cpp in Sources */,
@@ -1528,13 +2390,9 @@
92BC40270BAEE55B000DAB7F /* npc_text.cpp in Sources */,
92BC40280BAEE55B000DAB7F /* npclistdialog.cpp in Sources */,
92BC40290BAEE55B000DAB7F /* ok_dialog.cpp in Sources */,
- 92BC402A0BAEE55B000DAB7F /* passwordfield.cpp in Sources */,
92BC402B0BAEE55B000DAB7F /* playerbox.cpp in Sources */,
92BC402C0BAEE55B000DAB7F /* popupmenu.cpp in Sources */,
- 92BC402D0BAEE55B000DAB7F /* progressbar.cpp in Sources */,
- 92BC402E0BAEE55B000DAB7F /* radiobutton.cpp in Sources */,
92BC402F0BAEE55B000DAB7F /* register.cpp in Sources */,
- 92BC40300BAEE55B000DAB7F /* scrollarea.cpp in Sources */,
92BC40310BAEE55B000DAB7F /* sell.cpp in Sources */,
92BC40320BAEE55B000DAB7F /* setup.cpp in Sources */,
92BC40330BAEE55B000DAB7F /* setup_audio.cpp in Sources */,
@@ -1543,15 +2401,10 @@
92BC40360BAEE55B000DAB7F /* shop.cpp in Sources */,
92BC40370BAEE55B000DAB7F /* shoplistbox.cpp in Sources */,
92BC40380BAEE55B000DAB7F /* skill.cpp in Sources */,
- 92BC40390BAEE55B000DAB7F /* slider.cpp in Sources */,
92BC403A0BAEE55B000DAB7F /* status.cpp in Sources */,
- 92BC403C0BAEE55B000DAB7F /* textbox.cpp in Sources */,
- 92BC403D0BAEE55B000DAB7F /* textfield.cpp in Sources */,
92BC403E0BAEE55B000DAB7F /* trade.cpp in Sources */,
92BC403F0BAEE55B000DAB7F /* updatewindow.cpp in Sources */,
92BC40410BAEE55B000DAB7F /* viewport.cpp in Sources */,
- 92BC40420BAEE55B000DAB7F /* window.cpp in Sources */,
- 92BC40430BAEE55B000DAB7F /* windowcontainer.cpp in Sources */,
92BC40440BAEE55B000DAB7F /* inventory.cpp in Sources */,
92BC40450BAEE55B000DAB7F /* item.cpp in Sources */,
92BC40460BAEE55B000DAB7F /* joystick.cpp in Sources */,
@@ -1560,31 +2413,15 @@
92BC40490BAEE55B000DAB7F /* main.cpp in Sources */,
92BC404B0BAEE55B000DAB7F /* map.cpp in Sources */,
92BC404C0BAEE55B000DAB7F /* monster.cpp in Sources */,
- 92BC404D0BAEE55B000DAB7F /* beinghandler.cpp in Sources */,
- 92BC404E0BAEE55B000DAB7F /* buysellhandler.cpp in Sources */,
- 92BC404F0BAEE55B000DAB7F /* charserverhandler.cpp in Sources */,
- 92BC40500BAEE55B000DAB7F /* chathandler.cpp in Sources */,
- 92BC40510BAEE55B000DAB7F /* equipmenthandler.cpp in Sources */,
- 92BC40520BAEE55B000DAB7F /* inventoryhandler.cpp in Sources */,
- 92BC40530BAEE55B000DAB7F /* itemhandler.cpp in Sources */,
- 92BC40540BAEE55B000DAB7F /* loginhandler.cpp in Sources */,
- 92BC40550BAEE55B000DAB7F /* maploginhandler.cpp in Sources */,
92BC40560BAEE55B000DAB7F /* messagehandler.cpp in Sources */,
92BC40570BAEE55B000DAB7F /* messagein.cpp in Sources */,
92BC40580BAEE55B000DAB7F /* messageout.cpp in Sources */,
- 92BC40590BAEE55B000DAB7F /* network.cpp in Sources */,
- 92BC405A0BAEE55B000DAB7F /* npchandler.cpp in Sources */,
- 92BC405B0BAEE55B000DAB7F /* playerhandler.cpp in Sources */,
- 92BC405C0BAEE55B000DAB7F /* protocol.cpp in Sources */,
- 92BC405D0BAEE55B000DAB7F /* skillhandler.cpp in Sources */,
- 92BC405E0BAEE55B000DAB7F /* tradehandler.cpp in Sources */,
92BC405F0BAEE55B000DAB7F /* npc.cpp in Sources */,
92BC40600BAEE55B000DAB7F /* openglgraphics.cpp in Sources */,
92BC406E0BAEE55B000DAB7F /* player.cpp in Sources */,
92BC406F0BAEE55B000DAB7F /* action.cpp in Sources */,
92BC40700BAEE55B000DAB7F /* ambientoverlay.cpp in Sources */,
92BC40710BAEE55B000DAB7F /* animation.cpp in Sources */,
- 92BC40720BAEE55B000DAB7F /* buddylist.cpp in Sources */,
92BC40740BAEE55B000DAB7F /* image.cpp in Sources */,
92BC40750BAEE55B000DAB7F /* imagewriter.cpp in Sources */,
92BC40760BAEE55B000DAB7F /* itemdb.cpp in Sources */,
@@ -1647,12 +2484,408 @@
926A29570F23BD9E005D6466 /* npcstringdialog.cpp in Sources */,
926A29580F23BD9E005D6466 /* sdlinput.cpp in Sources */,
926A29590F23BD9E005D6466 /* truetypefont.cpp in Sources */,
+ 92DD76470F267B3600B2B519 /* layouthelper.cpp in Sources */,
+ 92C1150E0F8EBB360048CA8D /* window.cpp in Sources */,
+ 92C115120F8EBB550048CA8D /* itempopup.cpp in Sources */,
+ 92C1151A0F8EBB830048CA8D /* listbox.cpp in Sources */,
+ 92C1151B0F8EBB830048CA8D /* scrollarea.cpp in Sources */,
+ 92C1151C0F8EBB830048CA8D /* slider.cpp in Sources */,
+ 92C115200F8EBBA90048CA8D /* emoteshortcut.cpp in Sources */,
+ 92C115280F8EBBD50048CA8D /* inttextfield.cpp in Sources */,
+ 92C115290F8EBBD50048CA8D /* popup.cpp in Sources */,
+ 92C1152A0F8EBBD50048CA8D /* textfield.cpp in Sources */,
+ 92C1152D0F8EBBE30048CA8D /* storagewindow.cpp in Sources */,
+ 92C115310F8EBC2B0048CA8D /* serverselectdialog.cpp in Sources */,
+ 92C115360F8EBC450048CA8D /* browserbox.cpp in Sources */,
+ 92C115370F8EBC450048CA8D /* windowcontainer.cpp in Sources */,
+ 92C1153B0F8EBC730048CA8D /* chattab.cpp in Sources */,
+ 92C1153E0F8EBC830048CA8D /* shortcutcontainer.cpp in Sources */,
+ 92C115430F8EBCB70048CA8D /* setuptab.cpp in Sources */,
+ 92C115440F8EBCB70048CA8D /* shortcutwindow.cpp in Sources */,
+ 92C115470F8EBCD00048CA8D /* passwordfield.cpp in Sources */,
+ 92C1154D0F8EBD000048CA8D /* checkbox.cpp in Sources */,
+ 92C1154E0F8EBD000048CA8D /* textbox.cpp in Sources */,
+ 92C115540F8EBD250048CA8D /* label.cpp in Sources */,
+ 92C115550F8EBD250048CA8D /* progressbar.cpp in Sources */,
+ 92C115590F8EBD490048CA8D /* net.cpp in Sources */,
+ 92C115840F8EBD570048CA8D /* adminhandler.cpp in Sources */,
+ 92C115850F8EBD570048CA8D /* beinghandler.cpp in Sources */,
+ 92C115860F8EBD570048CA8D /* buysellhandler.cpp in Sources */,
+ 92C115870F8EBD570048CA8D /* charserverhandler.cpp in Sources */,
+ 92C115880F8EBD570048CA8D /* chathandler.cpp in Sources */,
+ 92C115890F8EBD570048CA8D /* equipmenthandler.cpp in Sources */,
+ 92C1158A0F8EBD570048CA8D /* generalhandler.cpp in Sources */,
+ 92C1158B0F8EBD570048CA8D /* partytab.cpp in Sources */,
+ 92C1158C0F8EBD570048CA8D /* inventoryhandler.cpp in Sources */,
+ 92C1158D0F8EBD570048CA8D /* itemhandler.cpp in Sources */,
+ 92C1158E0F8EBD570048CA8D /* loginhandler.cpp in Sources */,
+ 92C1158F0F8EBD570048CA8D /* logouthandler.cpp in Sources */,
+ 92C115900F8EBD570048CA8D /* maphandler.cpp in Sources */,
+ 92C115910F8EBD570048CA8D /* network.cpp in Sources */,
+ 92C115920F8EBD570048CA8D /* npchandler.cpp in Sources */,
+ 92C115930F8EBD570048CA8D /* partyhandler.cpp in Sources */,
+ 92C115940F8EBD570048CA8D /* playerhandler.cpp in Sources */,
+ 92C115950F8EBD570048CA8D /* protocol.cpp in Sources */,
+ 92C115960F8EBD570048CA8D /* skillhandler.cpp in Sources */,
+ 92C115970F8EBD570048CA8D /* tradehandler.cpp in Sources */,
+ 92C1159B0F8EBD900048CA8D /* emotedb.cpp in Sources */,
+ 92C115A20F8EBDB20048CA8D /* commandhandler.cpp in Sources */,
+ 92C115A30F8EBDB20048CA8D /* effectmanager.cpp in Sources */,
+ 92C115A40F8EBDB20048CA8D /* units.cpp in Sources */,
+ 92C115B70F8EBE450048CA8D /* palette.cpp in Sources */,
+ 92C115B80F8EBE450048CA8D /* partywindow.cpp in Sources */,
+ 92C115B90F8EBE450048CA8D /* recorder.cpp in Sources */,
+ 92C115BA0F8EBE450048CA8D /* skin.cpp in Sources */,
+ 92C115BB0F8EBE450048CA8D /* speechbubble.cpp in Sources */,
+ 92C115BF0F8EBE5E0048CA8D /* channeltab.cpp in Sources */,
+ 92C115C60F8EBE950048CA8D /* whispertab.cpp in Sources */,
+ 92C115C90F8EBECE0048CA8D /* charcreatedialog.cpp in Sources */,
+ 92C115CD0F8EBF090048CA8D /* channelmanager.cpp in Sources */,
+ 92C115D20F8EBF1C0048CA8D /* colordb.cpp in Sources */,
+ 92C115D30F8EBF1C0048CA8D /* wallpaper.cpp in Sources */,
+ 92C115DB0F8EBF530048CA8D /* button.cpp in Sources */,
+ 92C115DC0F8EBF530048CA8D /* icon.cpp in Sources */,
+ 92C115DD0F8EBF530048CA8D /* radiobutton.cpp in Sources */,
+ 92C115E10F8EBF7C0048CA8D /* avatar.cpp in Sources */,
+ 92C115E60F8EBF9A0048CA8D /* emotewindow.cpp in Sources */,
+ 92C115E70F8EBF9A0048CA8D /* itemlinkhandler.cpp in Sources */,
+ 92C115EA0F8EBFA60048CA8D /* stringutils.cpp in Sources */,
+ 92C115EE0F8EBFC20048CA8D /* channel.cpp in Sources */,
+ 92C115F30F8EBFD20048CA8D /* emotecontainer.cpp in Sources */,
+ 92C115F40F8EBFD20048CA8D /* emoteshortcutcontainer.cpp in Sources */,
+ 92C115F70F8EBFDD0048CA8D /* dropdown.cpp in Sources */,
+ 92C115FB0F8EBFF30048CA8D /* setup_colors.cpp in Sources */,
+ 92C115FF0F8EC0150048CA8D /* textpreview.cpp in Sources */,
+ 92A245C40F93626900B7719B /* desktop.cpp in Sources */,
+ 92A245C50F93626C00B7719B /* container.cpp in Sources */,
+ 92A245CC0F93635800B7719B /* npcpostdialog.cpp in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 925468F70F8EB65C00B4C3A3 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 92C116C90F8EC9660048CA8D /* zip.c in Sources */,
+ 92C116CF0F8ECA030048CA8D /* skin.cpp in Sources */,
+ 92C116C80F8EC9570048CA8D /* physfs.c in Sources */,
+ 92C117340F8ECDCF0048CA8D /* dir.c in Sources */,
+ 92C116F40F8ECD180048CA8D /* macosx.c in Sources */,
+ 92C1164F0F8EC8080048CA8D /* sound.cpp in Sources */,
+ 92C116C70F8EC92E0048CA8D /* log.cpp in Sources */,
+ 92C116C50F8EC8D80048CA8D /* window.cpp in Sources */,
+ 92C116520F8EC82C0048CA8D /* configuration.cpp in Sources */,
+ 92C116CC0F8EC9CD0048CA8D /* emoteshortcut.cpp in Sources */,
+ 92C116530F8EC84A0048CA8D /* setup.cpp in Sources */,
+ 92C116D10F8ECA300048CA8D /* connection.cpp in Sources */,
+ 92C116D40F8ECA550048CA8D /* graphics.cpp in Sources */,
+ 92C116D00F8ECA130048CA8D /* tabbedarea.cpp in Sources */,
+ 92C116CB0F8EC99E0048CA8D /* wallpaper.cpp in Sources */,
+ 92C116D30F8ECA420048CA8D /* button.cpp in Sources */,
+ 92C116CD0F8EC9D90048CA8D /* progressbar.cpp in Sources */,
+ 92C116420F8EC6070048CA8D /* SDLMain.m in Sources */,
+ 92C116540F8EC8750048CA8D /* resource.cpp in Sources */,
+ 92C116500F8EC8150048CA8D /* resourcemanager.cpp in Sources */,
+ 92C116410F8EC5ED0048CA8D /* main.cpp in Sources */,
+ 92C116D60F8ECA770048CA8D /* xml.cpp in Sources */,
+ 92C116D70F8ECAB10048CA8D /* strprintf.cpp in Sources */,
+ 92C116D80F8ECAFF0048CA8D /* dye.cpp in Sources */,
+ 92C116D90F8ECB0A0048CA8D /* itemdb.cpp in Sources */,
+ 92C116DA0F8ECB380048CA8D /* monsterdb.cpp in Sources */,
+ 92C116DB0F8ECB410048CA8D /* char_select.cpp in Sources */,
+ 92C116DC0F8ECB550048CA8D /* layout.cpp in Sources */,
+ 92C116DE0F8ECB7F0048CA8D /* units.cpp in Sources */,
+ 92C116DF0F8ECB970048CA8D /* buy.cpp in Sources */,
+ 92C116E00F8ECBBA0048CA8D /* emotedb.cpp in Sources */,
+ 92C116E20F8ECBC80048CA8D /* monsterinfo.cpp in Sources */,
+ 92C116E30F8ECBD10048CA8D /* shoplistbox.cpp in Sources */,
+ 92C116E60F8ECBE80048CA8D /* changepassworddialog.cpp in Sources */,
+ 92C116E80F8ECC230048CA8D /* setup_joystick.cpp in Sources */,
+ 92C116E90F8ECC430048CA8D /* windowcontainer.cpp in Sources */,
+ 92C116EC0F8ECC5F0048CA8D /* passwordfield.cpp in Sources */,
+ 92C116ED0F8ECC6A0048CA8D /* label.cpp in Sources */,
+ 92C116EE0F8ECC8B0048CA8D /* layouthelper.cpp in Sources */,
+ 92C116EF0F8ECCBF0048CA8D /* colordb.cpp in Sources */,
+ 92C116F10F8ECCD50048CA8D /* joystick.cpp in Sources */,
+ 92C116F20F8ECCE10048CA8D /* checkbox.cpp in Sources */,
+ 92C116F30F8ECCE70048CA8D /* textfield.cpp in Sources */,
+ 92C116F50F8ECD320048CA8D /* listbox.cpp in Sources */,
+ 92C1172F0F8ECD850048CA8D /* itemshortcut.cpp in Sources */,
+ 92C117300F8ECD970048CA8D /* setup_video.cpp in Sources */,
+ 92C117310F8ECDA10048CA8D /* shop.cpp in Sources */,
+ 92C117330F8ECDB10048CA8D /* register.cpp in Sources */,
+ 92C117350F8ECDDF0048CA8D /* slider.cpp in Sources */,
+ 92C117360F8ECDF90048CA8D /* updatewindow.cpp in Sources */,
+ 92C117380F8ECE150048CA8D /* browserbox.cpp in Sources */,
+ 92C117390F8ECE290048CA8D /* physfs_unicode.c in Sources */,
+ 92C1173A0F8ECE2E0048CA8D /* physfs_byteorder.c in Sources */,
+ 92C1173B0F8ECE3E0048CA8D /* image.cpp in Sources */,
+ 92C1174F0F8ECE6A0048CA8D /* posix.c in Sources */,
+ 92C117500F8ECE8A0048CA8D /* charcreatedialog.cpp in Sources */,
+ 92C117510F8ECE9C0048CA8D /* imageset.cpp in Sources */,
+ 92C117550F8ECEEA0048CA8D /* skilldialog.cpp in Sources */,
+ 92C1175A0F8ECF0B0048CA8D /* statuswindow.cpp in Sources */,
+ 92C1175B0F8ECF0B0048CA8D /* unregisterdialog.cpp in Sources */,
+ 92C1175D0F8ECF430048CA8D /* localplayer.cpp in Sources */,
+ 92C117850F8ECF710048CA8D /* npcdb.cpp in Sources */,
+ 92C117860F8ECF7E0048CA8D /* scrollarea.cpp in Sources */,
+ 92C1178E0F8ECFA00048CA8D /* being.cpp in Sources */,
+ 92C1178F0F8ECFA20048CA8D /* animatedsprite.cpp in Sources */,
+ 92C117900F8ECFAE0048CA8D /* player.cpp in Sources */,
+ 92C117910F8ECFEA0048CA8D /* shopitem.cpp in Sources */,
+ 92C1179F0F8ED0340048CA8D /* particlecontainer.cpp in Sources */,
+ 92C117A00F8ED03B0048CA8D /* game.cpp in Sources */,
+ 92C117A20F8ED0510048CA8D /* item.cpp in Sources */,
+ 92C117A30F8ED05C0048CA8D /* spritedef.cpp in Sources */,
+ 92C117A40F8ED0660048CA8D /* inventorywindow.cpp in Sources */,
+ 92C117A50F8ED0800048CA8D /* npcintegerdialog.cpp in Sources */,
+ 92C117A60F8ED08A0048CA8D /* keyboardconfig.cpp in Sources */,
+ 92C117A80F8ED0990048CA8D /* beingmanager.cpp in Sources */,
+ 92C117A90F8ED0A30048CA8D /* chat.cpp in Sources */,
+ 92C117AA0F8ED0AE0048CA8D /* inttextfield.cpp in Sources */,
+ 92C117AB0F8ED0B90048CA8D /* simpleanimation.cpp in Sources */,
+ 92C117AC0F8ED0BE0048CA8D /* imagewriter.cpp in Sources */,
+ 92C117AE0F8ED0CF0048CA8D /* action.cpp in Sources */,
+ 92C117AF0F8ED0E80048CA8D /* palette.cpp in Sources */,
+ 92C117B00F8ED0ED0048CA8D /* particle.cpp in Sources */,
+ 92C117B10F8ED0FA0048CA8D /* effectmanager.cpp in Sources */,
+ 92C117B20F8ED11A0048CA8D /* engine.cpp in Sources */,
+ 92C117B40F8ED12E0048CA8D /* statuseffect.cpp in Sources */,
+ 92C117B50F8ED1480048CA8D /* viewport.cpp in Sources */,
+ 92C117B60F8ED16C0048CA8D /* speechbubble.cpp in Sources */,
+ 92C117B80F8ED17E0048CA8D /* openglgraphics.cpp in Sources */,
+ 92C117B90F8ED19D0048CA8D /* animation.cpp in Sources */,
+ 92C117BB0F8ED1C30048CA8D /* imageparticle.cpp in Sources */,
+ 92C117BC0F8ED1D30048CA8D /* ministatus.cpp in Sources */,
+ 92C117BD0F8ED1D50048CA8D /* minimap.cpp in Sources */,
+ 92C117BF0F8ED1EE0048CA8D /* map.cpp in Sources */,
+ 92C117C00F8ED2020048CA8D /* animationparticle.cpp in Sources */,
+ 92C117C10F8ED20F0048CA8D /* equipmentwindow.cpp in Sources */,
+ 92C117C30F8ED2340048CA8D /* itempopup.cpp in Sources */,
+ 92C117C40F8ED26A0048CA8D /* ambientoverlay.cpp in Sources */,
+ 92C118640F8ED2B00048CA8D /* inventory.cpp in Sources */,
+ 92C118650F8ED2C80048CA8D /* popup.cpp in Sources */,
+ 92C118660F8ED2D10048CA8D /* soundeffect.cpp in Sources */,
+ 92C118680F8ED2E40048CA8D /* radiobutton.cpp in Sources */,
+ 92C118690F8ED2F20048CA8D /* npclistdialog.cpp in Sources */,
+ 92C1186A0F8ED2FD0048CA8D /* chattab.cpp in Sources */,
+ 92C1186B0F8ED3040048CA8D /* help.cpp in Sources */,
+ 92C1186D0F8ED3120048CA8D /* npcstringdialog.cpp in Sources */,
+ 92C1186E0F8ED31C0048CA8D /* popupmenu.cpp in Sources */,
+ 92C118710F8ED33F0048CA8D /* quitdialog.cpp in Sources */,
+ 92C118730F8ED3640048CA8D /* trade.cpp in Sources */,
+ 92C118740F8ED36B0048CA8D /* tab.cpp in Sources */,
+ 92C118750F8ED37A0048CA8D /* partywindow.cpp in Sources */,
+ 92C118760F8ED3840048CA8D /* itemcontainer.cpp in Sources */,
+ 92C118770F8ED38D0048CA8D /* whispertab.cpp in Sources */,
+ 92C118790F8ED3A80048CA8D /* emotewindow.cpp in Sources */,
+ 92C1187A0F8ED3BE0048CA8D /* textbox.cpp in Sources */,
+ 92C1187B0F8ED3C90048CA8D /* menuwindow.cpp in Sources */,
+ 92C1187C0F8ED3E50048CA8D /* itemshortcutcontainer.cpp in Sources */,
+ 92C1187E0F8ED4000048CA8D /* iteminfo.cpp in Sources */,
+ 92C1187F0F8ED40D0048CA8D /* player_relations.cpp in Sources */,
+ 92C118800F8ED41B0048CA8D /* floor_item.cpp in Sources */,
+ 92C118810F8ED41F0048CA8D /* flooritemmanager.cpp in Sources */,
+ 92C118820F8ED4270048CA8D /* npc.cpp in Sources */,
+ 92C118840F8ED43C0048CA8D /* avatar.cpp in Sources */,
+ 92C118850F8ED44A0048CA8D /* particleemitter.cpp in Sources */,
+ 92C118860F8ED4590048CA8D /* textparticle.cpp in Sources */,
+ 92C118870F8ED4640048CA8D /* channel.cpp in Sources */,
+ 92C118880F8ED4650048CA8D /* channelmanager.cpp in Sources */,
+ 92C118890F8ED46B0048CA8D /* commandhandler.cpp in Sources */,
+ 92C1188B0F8ED47F0048CA8D /* shortcutcontainer.cpp in Sources */,
+ 92C1188C0F8ED4980048CA8D /* item_amount.cpp in Sources */,
+ 92C1188D0F8ED49F0048CA8D /* mapreader.cpp in Sources */,
+ 92C118900F8ED4B30048CA8D /* guild.cpp in Sources */,
+ 92C118920F8ED4D10048CA8D /* ok_dialog.cpp in Sources */,
+ 92C118930F8ED4DC0048CA8D /* icon.cpp in Sources */,
+ 92C118940F8ED4E40048CA8D /* itemlinkhandler.cpp in Sources */,
+ 92C1189A0F8ED50B0048CA8D /* equipment.cpp in Sources */,
+ 92C1189B0F8ED5140048CA8D /* setup_colors.cpp in Sources */,
+ 92C1189C0F8ED5180048CA8D /* setup_keyboard.cpp in Sources */,
+ 92C1189D0F8ED5210048CA8D /* text.cpp in Sources */,
+ 92C1189E0F8ED5460048CA8D /* monster.cpp in Sources */,
+ 92C1189F0F8ED54A0048CA8D /* channeltab.cpp in Sources */,
+ 92C118ED0F8ED5640048CA8D /* resizegrip.cpp in Sources */,
+ 92C118EE0F8ED56A0048CA8D /* recorder.cpp in Sources */,
+ 92C118EF0F8ED5760048CA8D /* textmanager.cpp in Sources */,
+ 92C118F00F8ED5870048CA8D /* emotecontainer.cpp in Sources */,
+ 92C118F10F8ED5A60048CA8D /* textpreview.cpp in Sources */,
+ 92C118F40F8ED5DE0048CA8D /* textdialog.cpp in Sources */,
+ 92C118F60F8ED5F00048CA8D /* buddywindow.cpp in Sources */,
+ 92C118F70F8ED60C0048CA8D /* stringutils.cpp in Sources */,
+ 92C118F80F8ED6140048CA8D /* sell.cpp in Sources */,
+ 92C118F90F8ED6160048CA8D /* sdlinput.cpp in Sources */,
+ 92C119030F8ED63F0048CA8D /* guildlistbox.cpp in Sources */,
+ 92C119040F8ED63F0048CA8D /* guildwindow.cpp in Sources */,
+ 92C119050F8ED63F0048CA8D /* magic.cpp in Sources */,
+ 92C119060F8ED63F0048CA8D /* npcpostdialog.cpp in Sources */,
+ 92C119080F8ED6890048CA8D /* setup_players.cpp in Sources */,
+ 92C119090F8ED6920048CA8D /* debugwindow.cpp in Sources */,
+ 92C1190A0F8ED6970048CA8D /* confirm_dialog.cpp in Sources */,
+ 92C1190D0F8ED6C70048CA8D /* dropdown.cpp in Sources */,
+ 92C1190E0F8ED6F80048CA8D /* npc_text.cpp in Sources */,
+ 92C1190F0F8ED7010048CA8D /* net.cpp in Sources */,
+ 92C119100F8ED7200048CA8D /* gui.cpp in Sources */,
+ 92C119110F8ED7370048CA8D /* base64.cpp in Sources */,
+ 92C119130F8ED7480048CA8D /* truetypefont.cpp in Sources */,
+ 92C119140F8ED74D0048CA8D /* table_model.cpp in Sources */,
+ 92C119150F8ED7650048CA8D /* login.cpp in Sources */,
+ 92C119170F8ED7700048CA8D /* music.cpp in Sources */,
+ 92C119180F8ED77D0048CA8D /* serverselectdialog.cpp in Sources */,
+ 92C119190F8ED7860048CA8D /* table.cpp in Sources */,
+ 92C1191D0F8ED79A0048CA8D /* changeemaildialog.cpp in Sources */,
+ 92C1191E0F8ED7A70048CA8D /* shortcutwindow.cpp in Sources */,
+ 92C119630F8ED7C20048CA8D /* account.cpp in Sources */,
+ 92C119640F8ED7C20048CA8D /* accountserver.cpp in Sources */,
+ 92C119650F8ED7C20048CA8D /* internal.cpp in Sources */,
+ 92C119660F8ED7C20048CA8D /* adminhandler.cpp in Sources */,
+ 92C119670F8ED7C20048CA8D /* beinghandler.cpp in Sources */,
+ 92C119680F8ED7C20048CA8D /* buysellhandler.cpp in Sources */,
+ 92C119690F8ED7C20048CA8D /* charserverhandler.cpp in Sources */,
+ 92C1196A0F8ED7C20048CA8D /* chathandler.cpp in Sources */,
+ 92C1196B0F8ED7C20048CA8D /* chatserver.cpp in Sources */,
+ 92C1196C0F8ED7C20048CA8D /* guild.cpp in Sources */,
+ 92C1196D0F8ED7C20048CA8D /* internal.cpp in Sources */,
+ 92C1196E0F8ED7C20048CA8D /* party.cpp in Sources */,
+ 92C1196F0F8ED7C20048CA8D /* connection.cpp in Sources */,
+ 92C119700F8ED7C20048CA8D /* effecthandler.cpp in Sources */,
+ 92C119710F8ED7C20048CA8D /* gameserver.cpp in Sources */,
+ 92C119720F8ED7C20048CA8D /* internal.cpp in Sources */,
+ 92C119730F8ED7C20048CA8D /* player.cpp in Sources */,
+ 92C119740F8ED7C20048CA8D /* generalhandler.cpp in Sources */,
+ 92C119750F8ED7C20048CA8D /* guildhandler.cpp in Sources */,
+ 92C119760F8ED7C20048CA8D /* internal.cpp in Sources */,
+ 92C119770F8ED7C20048CA8D /* inventoryhandler.cpp in Sources */,
+ 92C119780F8ED7C20048CA8D /* itemhandler.cpp in Sources */,
+ 92C119790F8ED7C20048CA8D /* loginhandler.cpp in Sources */,
+ 92C1197A0F8ED7C20048CA8D /* logouthandler.cpp in Sources */,
+ 92C1197B0F8ED7C20048CA8D /* maphandler.cpp in Sources */,
+ 92C1197C0F8ED7C20048CA8D /* network.cpp in Sources */,
+ 92C1197D0F8ED7C20048CA8D /* npchandler.cpp in Sources */,
+ 92C1197E0F8ED7C20048CA8D /* partyhandler.cpp in Sources */,
+ 92C1197F0F8ED7C20048CA8D /* playerhandler.cpp in Sources */,
+ 92C119800F8ED7C20048CA8D /* skillhandler.cpp in Sources */,
+ 92C119810F8ED7C20048CA8D /* tradehandler.cpp in Sources */,
+ 92C119850F8ED80E0048CA8D /* serverdialog.cpp in Sources */,
+ 92C119870F8ED8250048CA8D /* messagehandler.cpp in Sources */,
+ 92C119880F8ED8250048CA8D /* messagein.cpp in Sources */,
+ 92C119890F8ED8270048CA8D /* messageout.cpp in Sources */,
+ 92C1198B0F8ED83A0048CA8D /* setuptab.cpp in Sources */,
+ 92C1198C0F8ED8420048CA8D /* playerbox.cpp in Sources */,
+ 92C119900F8ED85E0048CA8D /* sha256.cpp in Sources */,
+ 92C119920F8ED86F0048CA8D /* emoteshortcutcontainer.cpp in Sources */,
+ 92C119930F8ED87A0048CA8D /* setup_audio.cpp in Sources */,
+ 92C119940F8ED8850048CA8D /* imageloader.cpp in Sources */,
+ 92C119960F8ED8920048CA8D /* focushandler.cpp in Sources */,
+ 92C119990F8ED8B00048CA8D /* position.cpp in Sources */,
+ 92A244B70F935FB400B7719B /* container.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
+ 925468FD0F8EB65D00B4C3A3 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = YES;
+ COPY_PHASE_STRIP = NO;
+ FRAMEWORK_SEARCH_PATHS = (
+ .,
+ /System/Library/Frameworks,
+ "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
+ "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
+ );
+ FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)\"";
+ FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"$(DEVELOPER_DIR)/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks\"";
+ GCC_DEBUGGING_SYMBOLS = full;
+ GCC_DYNAMIC_NO_PIC = YES;
+ GCC_ENABLE_FIX_AND_CONTINUE = YES;
+ GCC_MODEL_TUNING = G4;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = NO;
+ GCC_PREFIX_HEADER = "";
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ TMWSERV_SUPPORT,
+ PHYSFS_SUPPORTS_ZIP,
+ USE_OPENGL,
+ __PHYSFS_CARBONIZED__,
+ );
+ HEADER_SEARCH_PATHS = (
+ /Library/Frameworks/SDL_ttf.framework/Headers,
+ /Library/Frameworks/SDL_net.framework/Headers,
+ /Library/Frameworks/SDL_image.framework/Headers,
+ /Library/Frameworks/SDL_mixer.framework/Headers,
+ guichan.framework/Headers,
+ /Library/Frameworks/libpng.framework/Headers,
+ /usr/include/libxml2,
+ /Library/Frameworks/SDL.framework/Headers,
+ );
+ INFOPLIST_FILE = "tmwserv-Info.plist";
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = /usr/lib;
+ OTHER_LDFLAGS = (
+ "-lz",
+ "-lxml2",
+ "-lcurl",
+ "-lenet",
+ );
+ PREBINDING = NO;
+ PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES;
+ PRODUCT_NAME = "The Mana World (tmwserv)";
+ SDKROOT = /Developer/SDKs/MacOSX10.5.sdk;
+ SKIP_INSTALL = YES;
+ USER_HEADER_SEARCH_PATHS = src;
+ };
+ name = Debug;
+ };
+ 925468FE0F8EB65D00B4C3A3 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = YES;
+ COPY_PHASE_STRIP = YES;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ FRAMEWORK_SEARCH_PATHS = (
+ .,
+ /System/Library/Frameworks,
+ "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
+ "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
+ );
+ FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)\"";
+ FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"$(DEVELOPER_DIR)/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks\"";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_MODEL_TUNING = G5;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/AppKit.framework/Headers/AppKit.h";
+ HEADER_SEARCH_PATHS = (
+ /Library/Frameworks/SDL_ttf.framework/Headers,
+ /Library/Frameworks/SDL_net.framework/Headers,
+ /Library/Frameworks/SDL_image.framework/Headers,
+ /Library/Frameworks/SDL_mixer.framework/Headers,
+ guichan.framework/Headers,
+ /Library/Frameworks/libpng.framework/Headers,
+ /usr/include/libxml2,
+ /Library/Frameworks/SDL.framework/Headers,
+ );
+ INFOPLIST_FILE = "tmwserv-Info.plist";
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = /usr/lib;
+ OTHER_LDFLAGS = (
+ "-framework",
+ Foundation,
+ "-framework",
+ AppKit,
+ );
+ PREBINDING = NO;
+ PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
+ PRODUCT_NAME = "The Mana World (tmwserv)";
+ SDKROOT = /Developer/SDKs/MacOSX10.3.9.sdk;
+ USER_HEADER_SEARCH_PATHS = src;
+ ZERO_LINK = NO;
+ };
+ name = Release;
+ };
C0E91AC608A95435008D54AB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
@@ -1667,6 +2900,7 @@
GCC_DEBUGGING_SYMBOLS = full;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
+ EATHENA_SUPPORT,
PHYSFS_SUPPORTS_ZIP,
USE_OPENGL,
__PHYSFS_CARBONIZED__,
@@ -1712,10 +2946,12 @@
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_OPTIMIZATION_LEVEL = 2;
GCC_PREPROCESSOR_DEFINITIONS = (
+ EATHENA_SUPPORT,
PHYSFS_SUPPORTS_ZIP,
USE_OPENGL,
__PHYSFS_CARBONIZED__,
);
+ GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "";
GCC_VERSION_i386 = 4.0;
GCC_VERSION_ppc = 3.3;
GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = NO;
@@ -1735,6 +2971,7 @@
MACOSX_DEPLOYMENT_TARGET = 10.3;
MACOSX_DEPLOYMENT_TARGET_i386 = 10.4;
MACOSX_DEPLOYMENT_TARGET_ppc = 10.3;
+ OTHER_CFLAGS = "";
OTHER_LDFLAGS = (
"-lxml2",
"-lcurl",
@@ -1779,7 +3016,16 @@
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
- C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld" */ = {
+ 925468FF0F8EB65D00B4C3A3 /* Build configuration list for PBXNativeTarget "themanaworld-tmwserv" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 925468FD0F8EB65D00B4C3A3 /* Debug */,
+ 925468FE0F8EB65D00B4C3A3 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld-eathena" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C0E91AC608A95435008D54AB /* Debug */,