summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-02-01 21:12:41 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-02-01 21:12:41 +0100
commit852de0424f7226dfd61d2779c1ea6413ac85d584 (patch)
treee902d1e91d760273cb1b1fba4c51cf3232ed6194
parentf19b3786f3f000a84c8080594e398686e0298ca4 (diff)
parentbcd1d9aff41b5c152cafade7532242c94ac1f710 (diff)
downloadmana-client-852de0424f7226dfd61d2779c1ea6413ac85d584.tar.gz
mana-client-852de0424f7226dfd61d2779c1ea6413ac85d584.tar.bz2
mana-client-852de0424f7226dfd61d2779c1ea6413ac85d584.tar.xz
mana-client-852de0424f7226dfd61d2779c1ea6413ac85d584.zip
Merge branch '0.5'
Conflicts: po/de.po src/game.cpp src/resources/wallpaper.cpp
-rw-r--r--.gitignore3
-rw-r--r--CMakeLists.txt11
-rw-r--r--Info.plist30
-rw-r--r--SDLMain.nib/classes.nib8
-rw-r--r--SDLMain.nib/info.nib20
-rw-r--r--SDLMain.nib/objects.xib80
-rw-r--r--mana.xcodeproj/garfield.mode11329
-rw-r--r--mana.xcodeproj/garfield.mode1v31409
-rw-r--r--mana.xcodeproj/project.pbxproj2343
-rw-r--r--packaging/windows/package-helpers113
-rw-r--r--packaging/windows/setup.nsi8
-rw-r--r--packaging/windows/toolchain.cmake.example22
-rw-r--r--po/de.po196
-rw-r--r--po/fr.po1067
-rw-r--r--src/CMakeLists.txt21
-rw-r--r--src/game.cpp6
-rw-r--r--src/net/net.cpp3
-rw-r--r--src/utils/sha256.cpp5
18 files changed, 926 insertions, 5748 deletions
diff --git a/.gitignore b/.gitignore
index c1e0a735..944c483e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,6 +19,7 @@ src/mana
*.exe
mana.depend
mana.layout
+README.txt
# files copied in on Windows
include/*
@@ -45,4 +46,4 @@ docs/SOURCE/html/*
[0-9][0-9][0-9][0-9]-*.patch
# static libraries
-*.a \ No newline at end of file
+*.a
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 552ab6e8..b8743a62 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,6 +30,7 @@ FIND_PACKAGE(Gettext)
OPTION(WITH_OPENGL "Enable OpenGL support" ON)
OPTION(ENABLE_NLS "Enable building of tranlations" ON)
+OPTION(ENABLE_MANASERV "Enable Manaserv support" OFF)
IF (WIN32)
SET(PKG_DATADIR ".")
@@ -37,16 +38,20 @@ IF (WIN32)
SET(LOCALEDIR ".")
CONFIGURE_FILE(src/winver.h.in src/winver.h)
ELSE (WIN32)
- IF (!OSX)
+ IF (NOT OSX)
OPTION(USE_X11 "Use X11 Clipboard functionality" ON)
- ENDIF (!OSX)
+ ENDIF ()
SET(PKG_DATADIR ${CMAKE_INSTALL_PREFIX}/share/mana)
SET(LOCALEDIR ${CMAKE_INSTALL_PREFIX}/share/locale)
SET(PKG_BINDIR ${CMAKE_INSTALL_PREFIX}/bin)
ENDIF (WIN32)
ADD_SUBDIRECTORY(data)
-ADD_SUBDIRECTORY(libs/enet)
+
+IF (ENABLE_MANASERV)
+ ADD_SUBDIRECTORY(libs/enet)
+ENDIF()
+
ADD_SUBDIRECTORY(src)
IF (GETTEXT_FOUND AND ENABLE_NLS)
diff --git a/Info.plist b/Info.plist
deleted file mode 100644
index b5fecbee..00000000
--- a/Info.plist
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>English</string>
- <key>CFBundleExecutable</key>
- <string>${EXECUTABLE_NAME}</string>
- <key>CFBundleIconFile</key>
- <string>mana.icns</string>
- <key>CFBundleIdentifier</key>
- <string>Mana</string>
- <key>CFBundleName</key>
- <string>${PRODUCT_NAME}</string>
- <key>CFBundlePackageType</key>
- <string>APPL</string>
- <key>CFBundleSignature</key>
- <string>Mana</string>
- <key>CFBundleVersion</key>
- <string>1.0</string>
- <key>NSHumanReadableCopyright</key>
- <string>Copyright 2009 Mana Development Team</string>
- <key>NSMainNibFile</key>
- <string>SDLMain</string>
- <key>NSPrincipalClass</key>
- <string>NSApplication</string>
- <key>NSPrincipleClass</key>
- <string>NSApplication</string>
-</dict>
-</plist>
diff --git a/SDLMain.nib/classes.nib b/SDLMain.nib/classes.nib
deleted file mode 100644
index c4b887e7..00000000
--- a/SDLMain.nib/classes.nib
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>IBVersion</key>
- <string>1</string>
-</dict>
-</plist>
diff --git a/SDLMain.nib/info.nib b/SDLMain.nib/info.nib
deleted file mode 100644
index a753dd52..00000000
--- a/SDLMain.nib/info.nib
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>IBFramework Version</key>
- <string>670</string>
- <key>IBLastKnownRelativeProjectPath</key>
- <string>themanaworld.xcodeproj</string>
- <key>IBOldestOS</key>
- <integer>5</integer>
- <key>IBOpenObjects</key>
- <array>
- <integer>29</integer>
- </array>
- <key>IBSystem Version</key>
- <string>9F33</string>
- <key>targetFramework</key>
- <string>IBCarbonFramework</string>
-</dict>
-</plist>
diff --git a/SDLMain.nib/objects.xib b/SDLMain.nib/objects.xib
deleted file mode 100644
index f4adb409..00000000
--- a/SDLMain.nib/objects.xib
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" standalone="yes"?>
-<object class="NSIBObjectData">
- <object name="rootObject" class="NSCustomObject" id="1">
- </object>
- <array count="8" name="allObjects">
- <object class="IBCarbonMenu" id="184">
- <string name="title">themanaworld</string>
- <string name="name">_NSAppleMenu</string>
- <array count="3" name="items">
- <object class="IBCarbonMenuItem" id="187">
- <string name="title">About themanaworld</string>
- <int name="keyEquivalentModifier">0</int>
- <ostype name="command">abou</ostype>
- </object>
- <object class="IBCarbonMenuItem" id="230">
- <boolean name="separator">TRUE</boolean>
- <boolean name="disabled">TRUE</boolean>
- <boolean name="notPreviousAlternate">TRUE</boolean>
- </object>
- <object class="IBCarbonMenuItem" id="229">
- <string name="title">Quit</string>
- <string name="keyEquivalent">q</string>
- <boolean name="notPreviousAlternate">TRUE</boolean>
- <ostype name="command">quit</ostype>
- </object>
- </array>
- </object>
- <object class="IBCarbonWindow" id="166">
- <boolean name="receiveUpdates">FALSE</boolean>
- <boolean name="hasCloseBox">FALSE</boolean>
- <boolean name="hasHorizontalZoom">FALSE</boolean>
- <boolean name="isResizable">FALSE</boolean>
- <boolean name="hasVerticalZoom">FALSE</boolean>
- <boolean name="compositing">TRUE</boolean>
- <boolean name="isConstrained">FALSE</boolean>
- <string name="title">Window</string>
- <object name="rootControl" class="IBCarbonRootControl" id="167">
- <string name="viewFrame">0 0 800 600 </string>
- <string name="bounds">0 0 600 800 </string>
- </object>
- <string name="windowRect">154 408 754 1208 </string>
- <string name="ScreenRectAtEncodeTime">64 0 1028 1680 </string>
- </object>
- <object class="IBCarbonMenuItem" id="185">
- <string name="title">The Mana World</string>
- <reference name="submenu" idRef="184"/>
- </object>
- <reference idRef="167"/>
- <reference idRef="187"/>
- <object class="IBCarbonMenu" id="29">
- <string name="title">main</string>
- <string name="name">_NSMainMenu</string>
- <array count="1" name="items">
- <reference idRef="185"/>
- </array>
- </object>
- <reference idRef="229"/>
- <reference idRef="230"/>
- </array>
- <array count="8" name="allParents">
- <reference idRef="185"/>
- <reference idRef="1"/>
- <reference idRef="29"/>
- <reference idRef="166"/>
- <reference idRef="184"/>
- <reference idRef="1"/>
- <reference idRef="184"/>
- <reference idRef="184"/>
- </array>
- <dictionary count="3" name="nameTable">
- <string>File&apos;s Owner</string>
- <reference idRef="1"/>
- <string>MainWindow</string>
- <reference idRef="166"/>
- <string>MenuBar</string>
- <reference idRef="29"/>
- </dictionary>
- <string name="targetFramework">IBCarbonFramework</string>
- <unsigned_int name="nextObjectID">231</unsigned_int>
-</object>
diff --git a/mana.xcodeproj/garfield.mode1 b/mana.xcodeproj/garfield.mode1
deleted file mode 100644
index debfe473..00000000
--- a/mana.xcodeproj/garfield.mode1
+++ /dev/null
@@ -1,1329 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>ActivePerspectiveName</key>
- <string>Project</string>
- <key>AllowedModules</key>
- <array>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Name</key>
- <string>Groups and Files Outline View</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Name</key>
- <string>Editor</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCTaskListModule</string>
- <key>Name</key>
- <string>Task List</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Name</key>
- <string>File and Smart Group Detail Viewer</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXBuildResultsModule</string>
- <key>Name</key>
- <string>Detailed Build Results Viewer</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXProjectFindModule</string>
- <key>Name</key>
- <string>Project Batch Find Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXRunSessionModule</string>
- <key>Name</key>
- <string>Run Log</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXBookmarksModule</string>
- <key>Name</key>
- <string>Bookmarks Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXClassBrowserModule</string>
- <key>Name</key>
- <string>Class Browser</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXCVSModule</string>
- <key>Name</key>
- <string>Source Code Control Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXDebugBreakpointsModule</string>
- <key>Name</key>
- <string>Debug Breakpoints Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCDockableInspector</string>
- <key>Name</key>
- <string>Inspector</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXOpenQuicklyModule</string>
- <key>Name</key>
- <string>Open Quickly Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXDebugSessionModule</string>
- <key>Name</key>
- <string>Debugger</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXDebugCLIModule</string>
- <key>Name</key>
- <string>Debug Console</string>
- </dict>
- </array>
- <key>Description</key>
- <string>DefaultDescriptionKey</string>
- <key>DockingSystemVisible</key>
- <false/>
- <key>Extension</key>
- <string>mode1</string>
- <key>FavBarConfig</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>92BC40BF0BAEE965000DAB7F</string>
- <key>XCBarModuleItemNames</key>
- <dict/>
- <key>XCBarModuleItems</key>
- <array/>
- </dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>com.apple.perspectives.project.mode1</string>
- <key>MajorVersion</key>
- <integer>31</integer>
- <key>MinorVersion</key>
- <integer>1</integer>
- <key>Name</key>
- <string>Default</string>
- <key>Notifications</key>
- <array/>
- <key>OpenEditors</key>
- <array/>
- <key>PerspectiveWidths</key>
- <array>
- <integer>-1</integer>
- <integer>-1</integer>
- </array>
- <key>Perspectives</key>
- <array>
- <dict>
- <key>ChosenToolbarItems</key>
- <array>
- <string>active-target-popup</string>
- <string>action</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>buildOrClean</string>
- <string>build-and-runOrDebug</string>
- <string>debug</string>
- <string>clean-target</string>
- <string>com.apple.ide.PBXToolbarStopButton</string>
- <string>get-info</string>
- <string>toggle-editor</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>com.apple.pbx.toolbar.searchfield</string>
- </array>
- <key>ControllerClassBaseName</key>
- <string></string>
- <key>IconName</key>
- <string>WindowOfProjectWithEditor</string>
- <key>Identifier</key>
- <string>perspective.project</string>
- <key>IsVertical</key>
- <false/>
- <key>Layout</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C37FBAC04509CD000000102</string>
- <string>1C37FAAC04509CD000000102</string>
- <string>1C08E77C0454961000C914BD</string>
- <string>1C37FABC05509CD000000102</string>
- <string>1C37FABC05539CD112110102</string>
- <string>E2644B35053B69B200211256</string>
- <string>1C37FABC04509CD000100104</string>
- <string>1CC0EA4004350EF90044410B</string>
- <string>1CC0EA4004350EF90041110B</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>yes</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>186</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>20286C29FDCF999611CA2CEA</string>
- <string>20286C2AFDCF999611CA2CEA</string>
- <string>20286C32FDCF999611CA2CEA</string>
- <string>1C37FBAC04509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>78</integer>
- <integer>0</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 1010}, {186, 520}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <true/>
- <key>XCSharingToken</key>
- <string>com.apple.Xcode.GFSharingToken</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {203, 538}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>186</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>372 210 780 579 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>203pt</string>
- </dict>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B20306471E060097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>MyNewFile14.java</string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B20406471E060097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>MyNewFile14.java</string>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <true/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {572, 0}}</string>
- <key>RubberWindowFrame</key>
- <string>372 210 780 579 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>0pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B20506471E060097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Detail</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 5}, {572, 533}}</string>
- <key>RubberWindowFrame</key>
- <string>372 210 780 579 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Proportion</key>
- <string>533pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>572pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCModuleDock</string>
- <string>PBXSmartGroupTreeModule</string>
- <string>XCModuleDock</string>
- <string>PBXNavigatorGroup</string>
- <string>XCDetailModule</string>
- </array>
- <key>TableOfContents</key>
- <array>
- <string>924A47AB0D1069F5004FEA83</string>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <string>924A47AC0D1069F5004FEA83</string>
- <string>1CE0B20306471E060097A5F4</string>
- <string>1CE0B20506471E060097A5F4</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.default</string>
- </dict>
- <dict>
- <key>ControllerClassBaseName</key>
- <string></string>
- <key>IconName</key>
- <string>WindowOfProject</string>
- <key>Identifier</key>
- <string>perspective.morph</string>
- <key>IsVertical</key>
- <integer>0</integer>
- <key>Layout</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C37FBAC04509CD000000102</string>
- <string>1C37FAAC04509CD000000102</string>
- <string>1C08E77C0454961000C914BD</string>
- <string>1C37FABC05509CD000000102</string>
- <string>1C37FABC05539CD112110102</string>
- <string>E2644B35053B69B200211256</string>
- <string>1C37FABC04509CD000100104</string>
- <string>1CC0EA4004350EF90044410B</string>
- <string>1CC0EA4004350EF90041110B</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>11E0B1FE06471DED0097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>yes</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>186</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>29B97314FDCFA39411CA2CEA</string>
- <string>1C37FABC05509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>0</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {186, 337}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <integer>1</integer>
- <key>XCSharingToken</key>
- <string>com.apple.Xcode.GFSharingToken</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {203, 355}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>186</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>373 269 690 397 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Morph</string>
- <key>PreferredWidth</key>
- <integer>300</integer>
- <key>ServiceClasses</key>
- <array>
- <string>XCModuleDock</string>
- <string>PBXSmartGroupTreeModule</string>
- </array>
- <key>TableOfContents</key>
- <array>
- <string>11E0B1FE06471DED0097A5F4</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.default.short</string>
- </dict>
- </array>
- <key>PerspectivesBarVisible</key>
- <false/>
- <key>ShelfIsVisible</key>
- <false/>
- <key>SourceDescription</key>
- <string>file at '/System/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/Resources/XCPerspectivesSpecificationMode1.xcperspec'</string>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TimeStamp</key>
- <real>0.0</real>
- <key>ToolbarDisplayMode</key>
- <integer>1</integer>
- <key>ToolbarIsVisible</key>
- <true/>
- <key>ToolbarSizeMode</key>
- <integer>1</integer>
- <key>Type</key>
- <string>Perspectives</string>
- <key>UpdateMessage</key>
- <string>The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'?</string>
- <key>WindowJustification</key>
- <integer>5</integer>
- <key>WindowOrderList</key>
- <array>
- <string>92BC40B30BAEE8C1000DAB7F</string>
- <string>/Users/garfield/programming/themanaworld/tmw/branches/0.0/themanaworld.xcodeproj</string>
- </array>
- <key>WindowString</key>
- <string>372 210 780 579 0 0 1280 832 </string>
- <key>WindowTools</key>
- <array>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.build</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528F0623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string></string>
- <key>StatusBarVisibility</key>
- <true/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {553, 0}}</string>
- <key>RubberWindowFrame</key>
- <string>316 222 553 548 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>0pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBuildLogShowsTranscriptDefaultKey</key>
- <string>{{0, 5}, {553, 497}}</string>
- <key>PBXProjectModuleGUID</key>
- <string>XCMainBuildResultsModuleGUID</string>
- <key>PBXProjectModuleLabel</key>
- <string>Build</string>
- <key>XCBuildResultsTrigger_Collapse</key>
- <integer>1021</integer>
- <key>XCBuildResultsTrigger_Open</key>
- <integer>1011</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 5}, {553, 502}}</string>
- <key>RubberWindowFrame</key>
- <string>316 222 553 548 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXBuildResultsModule</string>
- <key>Proportion</key>
- <string>502pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>507pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Build Results</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXBuildResultsModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>92BC40B30BAEE8C1000DAB7F</string>
- <string>924A47B10D107075004FEA83</string>
- <string>1CD0528F0623707200166675</string>
- <string>XCMainBuildResultsModuleGUID</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.build</string>
- <key>WindowString</key>
- <string>316 222 553 548 0 0 1280 832 </string>
- <key>WindowToolGUID</key>
- <string>92BC40B30BAEE8C1000DAB7F</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.debugger</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>Debugger</key>
- <dict>
- <key>HorizontalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {317, 164}}</string>
- <string>{{317, 0}, {377, 164}}</string>
- </array>
- </dict>
- <key>VerticalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {694, 164}}</string>
- <string>{{0, 164}, {694, 216}}</string>
- </array>
- </dict>
- </dict>
- <key>LauncherConfigVersion</key>
- <string>8</string>
- <key>PBXProjectModuleGUID</key>
- <string>1C162984064C10D400B95A72</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debug - GLUTExamples (Underwater)</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>DebugConsoleDrawerSize</key>
- <string>{100, 120}</string>
- <key>DebugConsoleVisible</key>
- <string>None</string>
- <key>DebugConsoleWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>DebugSTDIOWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>Frame</key>
- <string>{{0, 0}, {694, 380}}</string>
- <key>RubberWindowFrame</key>
- <string>321 238 694 422 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXDebugSessionModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debugger</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXDebugSessionModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1CD10A99069EF8BA00B06720</string>
- <string>1C0AD2AB069F1E9B00FABCE6</string>
- <string>1C162984064C10D400B95A72</string>
- <string>1C0AD2AC069F1E9B00FABCE6</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.debug</string>
- <key>WindowString</key>
- <string>321 238 694 422 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1CD10A99069EF8BA00B06720</string>
- <key>WindowToolIsVisible</key>
- <integer>0</integer>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.find</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CDD528C0622207200134675</string>
- <key>PBXProjectModuleLabel</key>
- <string>playerhandler.cpp</string>
- <key>StatusBarVisibility</key>
- <true/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {781, 212}}</string>
- <key>RubberWindowFrame</key>
- <string>212 362 781 470 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>781pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>212pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528E0623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>Project Find</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 217}, {781, 212}}</string>
- <key>RubberWindowFrame</key>
- <string>212 362 781 470 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXProjectFindModule</string>
- <key>Proportion</key>
- <string>212pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>429pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project Find</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXProjectFindModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>1C530D57069F1CE1000CFCEE</string>
- <string>92E427510C1EB4AC000361B7</string>
- <string>92E427520C1EB4AC000361B7</string>
- <string>1CDD528C0622207200134675</string>
- <string>1CD0528E0623707200166675</string>
- </array>
- <key>WindowString</key>
- <string>212 362 781 470 0 0 1280 832 </string>
- <key>WindowToolGUID</key>
- <string>1C530D57069F1CE1000CFCEE</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>MENUSEPARATOR</string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.debuggerConsole</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAAC065D492600B07095</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debugger Console</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {440, 358}}</string>
- <key>RubberWindowFrame</key>
- <string>650 41 440 400 0 0 1280 1002 </string>
- </dict>
- <key>Module</key>
- <string>PBXDebugCLIModule</string>
- <key>Proportion</key>
- <string>358pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>358pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debugger Console</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXDebugCLIModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C78EAAD065D492600B07095</string>
- <string>1C78EAAE065D492600B07095</string>
- <string>1C78EAAC065D492600B07095</string>
- </array>
- <key>WindowString</key>
- <string>650 41 440 400 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.run</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>LauncherConfigVersion</key>
- <string>3</string>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528B0623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>Run</string>
- <key>Runner</key>
- <dict>
- <key>HorizontalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {493, 167}}</string>
- <string>{{0, 176}, {493, 267}}</string>
- </array>
- </dict>
- <key>VerticalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {405, 443}}</string>
- <string>{{414, 0}, {514, 443}}</string>
- </array>
- </dict>
- </dict>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {459, 159}}</string>
- <key>RubberWindowFrame</key>
- <string>316 570 459 200 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXRunSessionModule</string>
- <key>Proportion</key>
- <string>159pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>159pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Run Log</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXRunSessionModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>1C0AD2B3069F1EA900FABCE6</string>
- <string>92AA62E70C21BDEA007FAAD0</string>
- <string>1CD0528B0623707200166675</string>
- <string>92AA62E80C21BDEA007FAAD0</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.run</string>
- <key>WindowString</key>
- <string>316 570 459 200 0 0 1280 832 </string>
- <key>WindowToolGUID</key>
- <string>1C0AD2B3069F1EA900FABCE6</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.scm</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAB2065D492600B07095</string>
- <key>PBXProjectModuleLabel</key>
- <string>&lt;No Editor&gt;</string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAB3065D492600B07095</string>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <integer>1</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {452, 0}}</string>
- <key>RubberWindowFrame</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>0pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD052920623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>SCM</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>ConsoleFrame</key>
- <string>{{0, 259}, {452, 0}}</string>
- <key>Frame</key>
- <string>{{0, 7}, {452, 259}}</string>
- <key>RubberWindowFrame</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- <key>TableConfiguration</key>
- <array>
- <string>Status</string>
- <real>30</real>
- <string>FileName</string>
- <real>199</real>
- <string>Path</string>
- <real>197.09500122070312</real>
- </array>
- <key>TableFrame</key>
- <string>{{0, 0}, {452, 250}}</string>
- </dict>
- <key>Module</key>
- <string>PBXCVSModule</string>
- <key>Proportion</key>
- <string>262pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>266pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>SCM</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXCVSModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C78EAB4065D492600B07095</string>
- <string>1C78EAB5065D492600B07095</string>
- <string>1C78EAB2065D492600B07095</string>
- <string>1CD052920623707200166675</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.scm</string>
- <key>WindowString</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.breakpoints</string>
- <key>IsVertical</key>
- <integer>0</integer>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C77FABC04509CD000000102</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>no</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>168</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>1C77FABC04509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>0</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {168, 350}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <integer>0</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {185, 368}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>168</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>315 424 744 409 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>185pt</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CA1AED706398EBD00589147</string>
- <key>PBXProjectModuleLabel</key>
- <string>Detail</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{190, 0}, {554, 368}}</string>
- <key>RubberWindowFrame</key>
- <string>315 424 744 409 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Proportion</key>
- <string>554pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>368pt</string>
- </dict>
- </array>
- <key>MajorVersion</key>
- <integer>2</integer>
- <key>MinorVersion</key>
- <integer>0</integer>
- <key>Name</key>
- <string>Breakpoints</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXSmartGroupTreeModule</string>
- <string>XCDetailModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1CDDB66807F98D9800BB5817</string>
- <string>1CDDB66907F98D9800BB5817</string>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <string>1CA1AED706398EBD00589147</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.breakpoints</string>
- <key>WindowString</key>
- <string>315 424 744 409 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1CDDB66807F98D9800BB5817</string>
- <key>WindowToolIsVisible</key>
- <integer>1</integer>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.debugAnimator</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debug Visualizer</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXNavigatorGroup</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.debugAnimator</string>
- <key>WindowString</key>
- <string>100 100 700 500 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.bookmarks</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>PBXBookmarksModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Bookmarks</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXBookmarksModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>0</integer>
- <key>WindowString</key>
- <string>538 42 401 187 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.classBrowser</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>OptionsSetName</key>
- <string>Hierarchy, all classes</string>
- <key>PBXProjectModuleGUID</key>
- <string>1CA6456E063B45B4001379D8</string>
- <key>PBXProjectModuleLabel</key>
- <string>Class Browser - NSObject</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>ClassesFrame</key>
- <string>{{0, 0}, {374, 96}}</string>
- <key>ClassesTreeTableConfiguration</key>
- <array>
- <string>PBXClassNameColumnIdentifier</string>
- <real>208</real>
- <string>PBXClassBookColumnIdentifier</string>
- <real>22</real>
- </array>
- <key>Frame</key>
- <string>{{0, 0}, {630, 331}}</string>
- <key>MembersFrame</key>
- <string>{{0, 105}, {374, 395}}</string>
- <key>MembersTreeTableConfiguration</key>
- <array>
- <string>PBXMemberTypeIconColumnIdentifier</string>
- <real>22</real>
- <string>PBXMemberNameColumnIdentifier</string>
- <real>216</real>
- <string>PBXMemberTypeColumnIdentifier</string>
- <real>97</real>
- <string>PBXMemberBookColumnIdentifier</string>
- <real>22</real>
- </array>
- <key>PBXModuleWindowStatusBarHidden2</key>
- <integer>1</integer>
- <key>RubberWindowFrame</key>
- <string>385 179 630 352 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXClassBrowserModule</string>
- <key>Proportion</key>
- <string>332pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>332pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Class Browser</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXClassBrowserModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>0</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C0AD2AF069F1E9B00FABCE6</string>
- <string>1C0AD2B0069F1E9B00FABCE6</string>
- <string>1CA6456E063B45B4001379D8</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.classbrowser</string>
- <key>WindowString</key>
- <string>385 179 630 352 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1C0AD2AF069F1E9B00FABCE6</string>
- <key>WindowToolIsVisible</key>
- <integer>0</integer>
- </dict>
- </array>
-</dict>
-</plist>
diff --git a/mana.xcodeproj/garfield.mode1v3 b/mana.xcodeproj/garfield.mode1v3
deleted file mode 100644
index 238c1fa3..00000000
--- a/mana.xcodeproj/garfield.mode1v3
+++ /dev/null
@@ -1,1409 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>ActivePerspectiveName</key>
- <string>Project</string>
- <key>AllowedModules</key>
- <array>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Name</key>
- <string>Groups and Files Outline View</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Name</key>
- <string>Editor</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCTaskListModule</string>
- <key>Name</key>
- <string>Task List</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Name</key>
- <string>File and Smart Group Detail Viewer</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXBuildResultsModule</string>
- <key>Name</key>
- <string>Detailed Build Results Viewer</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXProjectFindModule</string>
- <key>Name</key>
- <string>Project Batch Find Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCProjectFormatConflictsModule</string>
- <key>Name</key>
- <string>Project Format Conflicts List</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXBookmarksModule</string>
- <key>Name</key>
- <string>Bookmarks Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXClassBrowserModule</string>
- <key>Name</key>
- <string>Class Browser</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXCVSModule</string>
- <key>Name</key>
- <string>Source Code Control Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXDebugBreakpointsModule</string>
- <key>Name</key>
- <string>Debug Breakpoints Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCDockableInspector</string>
- <key>Name</key>
- <string>Inspector</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXOpenQuicklyModule</string>
- <key>Name</key>
- <string>Open Quickly Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXDebugSessionModule</string>
- <key>Name</key>
- <string>Debugger</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXDebugCLIModule</string>
- <key>Name</key>
- <string>Debug Console</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCSnapshotModule</string>
- <key>Name</key>
- <string>Snapshots Tool</string>
- </dict>
- </array>
- <key>Description</key>
- <string>DefaultDescriptionKey</string>
- <key>DockingSystemVisible</key>
- <false/>
- <key>Extension</key>
- <string>mode1v3</string>
- <key>FavBarConfig</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>92A4CC870D1C46A000CA28FB</string>
- <key>XCBarModuleItemNames</key>
- <dict/>
- <key>XCBarModuleItems</key>
- <array/>
- </dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>com.apple.perspectives.project.mode1v3</string>
- <key>MajorVersion</key>
- <integer>33</integer>
- <key>MinorVersion</key>
- <integer>0</integer>
- <key>Name</key>
- <string>Default</string>
- <key>Notifications</key>
- <array/>
- <key>OpenEditors</key>
- <array/>
- <key>PerspectiveWidths</key>
- <array>
- <integer>-1</integer>
- <integer>-1</integer>
- </array>
- <key>Perspectives</key>
- <array>
- <dict>
- <key>ChosenToolbarItems</key>
- <array>
- <string>active-combo-popup</string>
- <string>action</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>debugger-enable-breakpoints</string>
- <string>build</string>
- <string>build-and-go</string>
- <string>clean</string>
- <string>com.apple.ide.PBXToolbarStopButton</string>
- <string>get-info</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>com.apple.pbx.toolbar.searchfield</string>
- </array>
- <key>ControllerClassBaseName</key>
- <string></string>
- <key>IconName</key>
- <string>WindowOfProjectWithEditor</string>
- <key>Identifier</key>
- <string>perspective.project</string>
- <key>IsVertical</key>
- <false/>
- <key>Layout</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C37FBAC04509CD000000102</string>
- <string>1C37FAAC04509CD000000102</string>
- <string>1C37FABC05509CD000000102</string>
- <string>1C37FABC05539CD112110102</string>
- <string>E2644B35053B69B200211256</string>
- <string>1C37FABC04509CD000100104</string>
- <string>1CC0EA4004350EF90044410B</string>
- <string>1CC0EA4004350EF90041110B</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>yes</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>158</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>20286C29FDCF999611CA2CEA</string>
- <string>1C37FBAC04509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>8</integer>
- <integer>7</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {158, 599}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <true/>
- <key>XCSharingToken</key>
- <string>com.apple.Xcode.GFSharingToken</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {175, 617}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>158</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>235 191 933 658 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>175pt</string>
- </dict>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B20306471E060097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string></string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B20406471E060097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string></string>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <true/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {753, 0}}</string>
- <key>RubberWindowFrame</key>
- <string>235 191 933 658 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>0pt</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B20506471E060097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Detail</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 5}, {753, 612}}</string>
- <key>RubberWindowFrame</key>
- <string>235 191 933 658 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Proportion</key>
- <string>612pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>753pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCModuleDock</string>
- <string>PBXSmartGroupTreeModule</string>
- <string>XCModuleDock</string>
- <string>PBXNavigatorGroup</string>
- <string>XCDetailModule</string>
- </array>
- <key>TableOfContents</key>
- <array>
- <string>9228959611F662A300AE53BB</string>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <string>9228959711F662A300AE53BB</string>
- <string>1CE0B20306471E060097A5F4</string>
- <string>1CE0B20506471E060097A5F4</string>
- </array>
- <key>ToolbarConfigUserDefaultsMinorVersion</key>
- <string>2</string>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.defaultV3</string>
- </dict>
- <dict>
- <key>ControllerClassBaseName</key>
- <string></string>
- <key>IconName</key>
- <string>WindowOfProject</string>
- <key>Identifier</key>
- <string>perspective.morph</string>
- <key>IsVertical</key>
- <false/>
- <key>Layout</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C37FBAC04509CD000000102</string>
- <string>1C37FAAC04509CD000000102</string>
- <string>1C08E77C0454961000C914BD</string>
- <string>1C37FABC05509CD000000102</string>
- <string>1C37FABC05539CD112110102</string>
- <string>E2644B35053B69B200211256</string>
- <string>1C37FABC04509CD000100104</string>
- <string>1CC0EA4004350EF90044410B</string>
- <string>1CC0EA4004350EF90041110B</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>11E0B1FE06471DED0097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>yes</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>186</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>29B97314FDCFA39411CA2CEA</string>
- <string>1C37FABC05509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>0</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {186, 337}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <integer>1</integer>
- <key>XCSharingToken</key>
- <string>com.apple.Xcode.GFSharingToken</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {203, 355}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>186</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>373 269 690 397 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Morph</string>
- <key>PreferredWidth</key>
- <integer>300</integer>
- <key>ServiceClasses</key>
- <array>
- <string>XCModuleDock</string>
- <string>PBXSmartGroupTreeModule</string>
- </array>
- <key>TableOfContents</key>
- <array>
- <string>11E0B1FE06471DED0097A5F4</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.default.shortV3</string>
- </dict>
- </array>
- <key>PerspectivesBarVisible</key>
- <false/>
- <key>ShelfIsVisible</key>
- <false/>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TimeStamp</key>
- <real>0.0</real>
- <key>ToolbarDisplayMode</key>
- <integer>1</integer>
- <key>ToolbarIsVisible</key>
- <true/>
- <key>ToolbarSizeMode</key>
- <integer>1</integer>
- <key>Type</key>
- <string>Perspectives</string>
- <key>UpdateMessage</key>
- <string>The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'?</string>
- <key>WindowJustification</key>
- <integer>5</integer>
- <key>WindowOrderList</key>
- <array>
- <string>1CD10A99069EF8BA00B06720</string>
- <string>92A4CC8A0D1C5F1E00CA28FB</string>
- <string>/Users/garfield/Programming/mana/mana.xcodeproj</string>
- </array>
- <key>WindowString</key>
- <string>235 191 933 658 0 0 1440 878 </string>
- <key>WindowToolsV3</key>
- <array>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.build</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528F0623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string></string>
- <key>StatusBarVisibility</key>
- <true/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {553, 0}}</string>
- <key>RubberWindowFrame</key>
- <string>107 258 553 548 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>0pt</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>XCMainBuildResultsModuleGUID</string>
- <key>PBXProjectModuleLabel</key>
- <string>Build Results</string>
- <key>XCBuildResultsTrigger_Collapse</key>
- <integer>1021</integer>
- <key>XCBuildResultsTrigger_Open</key>
- <integer>1011</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 5}, {553, 502}}</string>
- <key>RubberWindowFrame</key>
- <string>107 258 553 548 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXBuildResultsModule</string>
- <key>Proportion</key>
- <string>502pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>507pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Build Results</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXBuildResultsModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>92A4CC8A0D1C5F1E00CA28FB</string>
- <string>9228959811F662A300AE53BB</string>
- <string>1CD0528F0623707200166675</string>
- <string>XCMainBuildResultsModuleGUID</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.buildV3</string>
- <key>WindowString</key>
- <string>107 258 553 548 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>92A4CC8A0D1C5F1E00CA28FB</string>
- <key>WindowToolIsVisible</key>
- <true/>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.debugger</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>Debugger</key>
- <dict>
- <key>HorizontalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {316, 203}}</string>
- <string>{{316, 0}, {378, 203}}</string>
- </array>
- </dict>
- <key>VerticalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {694, 203}}</string>
- <string>{{0, 203}, {694, 178}}</string>
- </array>
- </dict>
- </dict>
- <key>LauncherConfigVersion</key>
- <string>8</string>
- <key>PBXProjectModuleGUID</key>
- <string>1C162984064C10D400B95A72</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debug - GLUTExamples (Underwater)</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>DebugConsoleVisible</key>
- <string>None</string>
- <key>DebugConsoleWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>DebugSTDIOWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>Frame</key>
- <string>{{0, 0}, {694, 381}}</string>
- <key>PBXDebugSessionStackFrameViewKey</key>
- <dict>
- <key>DebugVariablesTableConfiguration</key>
- <array>
- <string>Name</string>
- <real>140</real>
- <string>Value</string>
- <real>85</real>
- <string>Summary</string>
- <real>986</real>
- </array>
- <key>Frame</key>
- <string>{{316, 0}, {378, 203}}</string>
- <key>RubberWindowFrame</key>
- <string>241 397 694 422 0 0 1440 878 </string>
- </dict>
- <key>RubberWindowFrame</key>
- <string>241 397 694 422 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXDebugSessionModule</string>
- <key>Proportion</key>
- <string>381pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>381pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debugger</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXDebugSessionModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>1CD10A99069EF8BA00B06720</string>
- <string>9228959911F662A300AE53BB</string>
- <string>1C162984064C10D400B95A72</string>
- <string>9228959A11F662A300AE53BB</string>
- <string>9228959B11F662A300AE53BB</string>
- <string>9228959C11F662A300AE53BB</string>
- <string>9228959D11F662A300AE53BB</string>
- <string>9228959E11F662A300AE53BB</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.debugV3</string>
- <key>WindowString</key>
- <string>241 397 694 422 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1CD10A99069EF8BA00B06720</string>
- <key>WindowToolIsVisible</key>
- <true/>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.find</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CDD528C0622207200134675</string>
- <key>PBXProjectModuleLabel</key>
- <string>connection.cpp</string>
- <key>StatusBarVisibility</key>
- <true/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {781, 212}}</string>
- <key>RubberWindowFrame</key>
- <string>468 332 781 470 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>781pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>212pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528E0623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>Project Find</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 217}, {781, 212}}</string>
- <key>RubberWindowFrame</key>
- <string>468 332 781 470 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXProjectFindModule</string>
- <key>Proportion</key>
- <string>212pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>429pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project Find</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXProjectFindModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>1C530D57069F1CE1000CFCEE</string>
- <string>9268580611F15D8C00A28C33</string>
- <string>9268580711F15D8C00A28C33</string>
- <string>1CDD528C0622207200134675</string>
- <string>1CD0528E0623707200166675</string>
- </array>
- <key>WindowString</key>
- <string>468 332 781 470 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1C530D57069F1CE1000CFCEE</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>MENUSEPARATOR</string>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.debuggerConsole</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAAC065D492600B07095</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debugger Console</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {440, 359}}</string>
- <key>RubberWindowFrame</key>
- <string>529 224 440 400 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXDebugCLIModule</string>
- <key>Proportion</key>
- <string>359pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>359pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debugger Console</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXDebugCLIModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>1C78EAAD065D492600B07095</string>
- <string>92C85D7311F2998B00AB20CA</string>
- <string>1C78EAAC065D492600B07095</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.consoleV3</string>
- <key>WindowString</key>
- <string>529 224 440 400 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1C78EAAD065D492600B07095</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.snapshots</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>XCSnapshotModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Snapshots</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCSnapshotModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <string>Yes</string>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.snapshots</string>
- <key>WindowString</key>
- <string>315 824 300 550 0 0 1440 878 </string>
- <key>WindowToolIsVisible</key>
- <string>Yes</string>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.scm</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAB2065D492600B07095</string>
- <key>PBXProjectModuleLabel</key>
- <string>&lt;No Editor&gt;</string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAB3065D492600B07095</string>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <integer>1</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {452, 0}}</string>
- <key>RubberWindowFrame</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>0pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD052920623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>SCM</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>ConsoleFrame</key>
- <string>{{0, 259}, {452, 0}}</string>
- <key>Frame</key>
- <string>{{0, 7}, {452, 259}}</string>
- <key>RubberWindowFrame</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- <key>TableConfiguration</key>
- <array>
- <string>Status</string>
- <real>30</real>
- <string>FileName</string>
- <real>199</real>
- <string>Path</string>
- <real>197.09500122070312</real>
- </array>
- <key>TableFrame</key>
- <string>{{0, 0}, {452, 250}}</string>
- </dict>
- <key>Module</key>
- <string>PBXCVSModule</string>
- <key>Proportion</key>
- <string>262pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>266pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>SCM</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXCVSModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>1C78EAB4065D492600B07095</string>
- <string>1C78EAB5065D492600B07095</string>
- <string>1C78EAB2065D492600B07095</string>
- <string>1CD052920623707200166675</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.scm</string>
- <key>WindowString</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.breakpoints</string>
- <key>IsVertical</key>
- <false/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C77FABC04509CD000000102</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>no</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>168</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>1C77FABC04509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>0</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {168, 350}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <false/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {185, 368}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>168</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>243 383 744 409 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>185pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CA1AED706398EBD00589147</string>
- <key>PBXProjectModuleLabel</key>
- <string>Detail</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{190, 0}, {554, 368}}</string>
- <key>RubberWindowFrame</key>
- <string>243 383 744 409 0 0 1280 832 </string>
- </dict>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Proportion</key>
- <string>554pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>368pt</string>
- </dict>
- </array>
- <key>MajorVersion</key>
- <integer>3</integer>
- <key>MinorVersion</key>
- <integer>0</integer>
- <key>Name</key>
- <string>Breakpoints</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXSmartGroupTreeModule</string>
- <string>XCDetailModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TableOfContents</key>
- <array>
- <string>92EE9EF30D2E0CA400DDE300</string>
- <string>92EE9EF40D2E0CA400DDE300</string>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <string>1CA1AED706398EBD00589147</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.breakpointsV3</string>
- <key>WindowString</key>
- <string>243 383 744 409 0 0 1280 832 </string>
- <key>WindowToolGUID</key>
- <string>92EE9EF30D2E0CA400DDE300</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.debugAnimator</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debug Visualizer</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXNavigatorGroup</string>
- </array>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.debugAnimatorV3</string>
- <key>WindowString</key>
- <string>100 100 700 500 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.bookmarks</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>PBXBookmarksModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Bookmarks</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXBookmarksModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <false/>
- <key>WindowString</key>
- <string>538 42 401 187 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.projectFormatConflicts</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>9268589711F174B900A28C33</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {472, 302}}</string>
- <key>RubberWindowFrame</key>
- <string>128 461 472 322 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>XCProjectFormatConflictsModule</string>
- <key>Proportion</key>
- <string>302pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>302pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project Format Conflicts</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCProjectFormatConflictsModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <false/>
- <key>TableOfContents</key>
- <array>
- <string>9268589811F174B900A28C33</string>
- <string>9268589911F174B900A28C33</string>
- <string>9268589711F174B900A28C33</string>
- </array>
- <key>WindowContentMinSize</key>
- <string>450 300</string>
- <key>WindowString</key>
- <string>128 461 472 322 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>9268589811F174B900A28C33</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>windowTool.classBrowser</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>OptionsSetName</key>
- <string>Hierarchy, all classes</string>
- <key>PBXProjectModuleGUID</key>
- <string>1CA6456E063B45B4001379D8</string>
- <key>PBXProjectModuleLabel</key>
- <string>Class Browser - NSObject</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>ClassesFrame</key>
- <string>{{0, 0}, {374, 96}}</string>
- <key>ClassesTreeTableConfiguration</key>
- <array>
- <string>PBXClassNameColumnIdentifier</string>
- <real>208</real>
- <string>PBXClassBookColumnIdentifier</string>
- <real>22</real>
- </array>
- <key>Frame</key>
- <string>{{0, 0}, {630, 331}}</string>
- <key>MembersFrame</key>
- <string>{{0, 105}, {374, 395}}</string>
- <key>MembersTreeTableConfiguration</key>
- <array>
- <string>PBXMemberTypeIconColumnIdentifier</string>
- <real>22</real>
- <string>PBXMemberNameColumnIdentifier</string>
- <real>216</real>
- <string>PBXMemberTypeColumnIdentifier</string>
- <real>97</real>
- <string>PBXMemberBookColumnIdentifier</string>
- <real>22</real>
- </array>
- <key>PBXModuleWindowStatusBarHidden2</key>
- <integer>1</integer>
- <key>RubberWindowFrame</key>
- <string>385 179 630 352 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXClassBrowserModule</string>
- <key>Proportion</key>
- <string>332pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>332pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Class Browser</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXClassBrowserModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <false/>
- <key>TableOfContents</key>
- <array>
- <string>1C0AD2AF069F1E9B00FABCE6</string>
- <string>1C0AD2B0069F1E9B00FABCE6</string>
- <string>1CA6456E063B45B4001379D8</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.classbrowser</string>
- <key>WindowString</key>
- <string>385 179 630 352 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1C0AD2AF069F1E9B00FABCE6</string>
- <key>WindowToolIsVisible</key>
- <false/>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.refactoring</string>
- <key>IncludeInToolsMenu</key>
- <false/>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{0, 0}, {500, 335}</string>
- <key>RubberWindowFrame</key>
- <string>{0, 0}, {500, 335}</string>
- </dict>
- <key>Module</key>
- <string>XCRefactoringModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Refactoring</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCRefactoringModule</string>
- </array>
- <key>WindowString</key>
- <string>200 200 500 356 0 0 1920 1200 </string>
- </dict>
- </array>
-</dict>
-</plist>
diff --git a/mana.xcodeproj/project.pbxproj b/mana.xcodeproj/project.pbxproj
deleted file mode 100644
index ebb84e80..00000000
--- a/mana.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,2343 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 44;
- objects = {
-
-/* Begin PBXBuildFile section */
- 8D0C4E920486CD37000505A6 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20286C33FDCF999611CA2CEA /* Carbon.framework */; };
- 92024D2F0CF1BD9E006B55CB /* keyboardconfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */; };
- 92024D3D0CF1BDF7006B55CB /* setup_keyboard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */; };
- 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 */; };
- 922895B711F665A200AE53BB /* libintl.8.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B411F665A200AE53BB /* libintl.8.dylib */; };
- 922895B811F665A200AE53BB /* libphysfs.1.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B511F665A200AE53BB /* libphysfs.1.dylib */; };
- 922895B911F665A200AE53BB /* libSDL_gfx.13.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */; };
- 922895BA11F665A700AE53BB /* libintl.8.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B411F665A200AE53BB /* libintl.8.dylib */; };
- 922895BB11F665AB00AE53BB /* libphysfs.1.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B511F665A200AE53BB /* libphysfs.1.dylib */; };
- 922895BC11F665AF00AE53BB /* libSDL_gfx.13.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */; };
- 922895C111F6678300AE53BB /* libiconv.2.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895BF11F6677F00AE53BB /* libiconv.2.dylib */; };
- 922895C211F6678700AE53BB /* libSDL-1.2.0.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895C011F6677F00AE53BB /* libSDL-1.2.0.dylib */; };
- 922CD9580E3D00900074C50E /* npcdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD9560E3D00900074C50E /* npcdb.cpp */; };
- 922CD95F0E3D01080074C50E /* shopitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD95D0E3D01080074C50E /* shopitem.cpp */; };
- 924A39F20C0784280066885E /* animationparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39E80C0784280066885E /* animationparticle.cpp */; };
- 924A39F30C0784280066885E /* imageparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EA0C0784280066885E /* imageparticle.cpp */; };
- 924A39F40C0784280066885E /* particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EC0C0784280066885E /* particle.cpp */; };
- 924A39F50C0784280066885E /* particleemitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EE0C0784280066885E /* particleemitter.cpp */; };
- 924A39F60C0784280066885E /* textparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39F00C0784280066885E /* textparticle.cpp */; };
- 924A3A120C07A60B0066885E /* resizegrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A3A100C07A60B0066885E /* resizegrip.cpp */; };
- 924A40570C085EF50066885E /* items.xsd in Copy Data Files */ = {isa = PBXBuildFile; fileRef = 924A401C0C085ED80066885E /* items.xsd */; };
- 924A408B0C0860120066885E /* login_wallpaper.png in Copy Image Files */ = {isa = PBXBuildFile; fileRef = 924A3E9A0C085ED70066885E /* login_wallpaper.png */; };
- 924A42020C0861EC0066885E /* about.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400A0C085ED80066885E /* about.txt */; };
- 924A42030C0861EC0066885E /* changes.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400B0C085ED80066885E /* changes.txt */; };
- 924A42040C0861EC0066885E /* commands.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400D0C085ED80066885E /* commands.txt */; };
- 924A42050C0861EC0066885E /* header.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400E0C085ED80066885E /* header.txt */; };
- 924A42060C0861EC0066885E /* index.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400F0C085ED80066885E /* index.txt */; };
- 924A42070C0861EC0066885E /* skills.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A40110C085ED80066885E /* skills.txt */; };
- 924A42080C0861EC0066885E /* support.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A40120C085ED80066885E /* support.txt */; };
- 924A42090C0861EC0066885E /* team.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A40130C085ED80066885E /* team.txt */; };
- 925350030BC12A3200115FD5 /* imageset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 925350010BC12A3200115FD5 /* imageset.cpp */; };
- 9268560011F141FD00A28C33 /* mana.icns in Resources */ = {isa = PBXBuildFile; fileRef = 926855FF11F141FD00A28C33 /* mana.icns */; };
- 9268560211F142A000A28C33 /* colors.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855E711F141D500A28C33 /* colors.xml */; };
- 9268560311F142A000A28C33 /* progress-indicator.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855E811F141D500A28C33 /* progress-indicator.png */; };
- 9268560411F142A000A28C33 /* radioin_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855E911F141D500A28C33 /* radioin_highlight.png */; };
- 9268560511F142A000A28C33 /* radioout_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EA11F141D500A28C33 /* radioout_highlight.png */; };
- 9268560611F142A000A28C33 /* slider_hilight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EB11F141D500A28C33 /* slider_hilight.png */; };
- 9268560711F142A000A28C33 /* tab_hilight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EC11F141D500A28C33 /* tab_hilight.png */; };
- 9268560811F142A000A28C33 /* vscroll_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855ED11F141D500A28C33 /* vscroll_highlight.png */; };
- 9268560911F142A000A28C33 /* window.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EE11F141D500A28C33 /* window.xml */; };
- 9268560A11F142A000A28C33 /* window.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C637800FC574B500EE8D8D /* window.png */; };
- 9268560B11F142A000A28C33 /* circle-gray.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116010F8EC0590048CA8D /* circle-gray.png */; };
- 9268560C11F142A000A28C33 /* circle-green.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116020F8EC0590048CA8D /* circle-green.png */; };
- 9268560D11F142A000A28C33 /* speechbubble.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116070F8EC0590048CA8D /* speechbubble.xml */; };
- 9268560E11F142A000A28C33 /* sticky_button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116080F8EC0590048CA8D /* sticky_button.png */; };
- 9268560F11F142A000A28C33 /* bubble.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 928B50E40F2FB5430011C755 /* bubble.png */; };
- 9268561011F142A000A28C33 /* tab.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297E0F23C18E005D6466 /* tab.png */; };
- 9268561111F142A000A28C33 /* tabselected.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297F0F23C18E005D6466 /* tabselected.png */; };
- 9268561211F142A000A28C33 /* close_button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5B0CF1BE5C006B55CB /* close_button.png */; };
- 9268561311F142A000A28C33 /* unknown-item.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5D0CF1BE5C006B55CB /* unknown-item.png */; };
- 9268561411F142A000A28C33 /* item_shortcut_bgr.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */; };
- 9268561511F142A000A28C33 /* button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E620C085ED70066885E /* button.png */; };
- 9268561611F142A000A28C33 /* button_disabled.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E630C085ED70066885E /* button_disabled.png */; };
- 9268561711F142A000A28C33 /* buttonhi.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E640C085ED70066885E /* buttonhi.png */; };
- 9268561811F142A000A28C33 /* buttonpress.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E650C085ED70066885E /* buttonpress.png */; };
- 9268561911F142A000A28C33 /* checkbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E660C085ED70066885E /* checkbox.png */; };
- 9268561A11F142A000A28C33 /* deepbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E680C085ED70066885E /* deepbox.png */; };
- 9268561B11F142A000A28C33 /* hscroll_left_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6D0C085ED70066885E /* hscroll_left_default.png */; };
- 9268561C11F142A000A28C33 /* hscroll_left_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */; };
- 9268561D11F142A000A28C33 /* hscroll_left_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */; };
- 9268561E11F142A000A28C33 /* hscroll_right_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E700C085ED70066885E /* hscroll_right_default.png */; };
- 9268561F11F142A000A28C33 /* hscroll_right_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E710C085ED70066885E /* hscroll_right_highlight.png */; };
- 9268562011F142A000A28C33 /* hscroll_right_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E720C085ED70066885E /* hscroll_right_pressed.png */; };
- 9268562111F142A000A28C33 /* mouse.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E780C085ED70066885E /* mouse.png */; };
- 9268562211F142A000A28C33 /* radioin.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E790C085ED70066885E /* radioin.png */; };
- 9268562311F142A000A28C33 /* radioout.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7A0C085ED70066885E /* radioout.png */; };
- 9268562411F142A000A28C33 /* resize.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7B0C085ED70066885E /* resize.png */; };
- 9268562511F142A000A28C33 /* selection.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7E0C085ED70066885E /* selection.png */; };
- 9268562611F142A000A28C33 /* slider.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7F0C085ED70066885E /* slider.png */; };
- 9268562711F142A000A28C33 /* target-cursor-blue-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E800C085ED70066885E /* target-cursor-blue-l.png */; };
- 9268562811F142A000A28C33 /* target-cursor-blue-m.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E810C085ED70066885E /* target-cursor-blue-m.png */; };
- 9268562911F142A000A28C33 /* target-cursor-blue-s.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E820C085ED70066885E /* target-cursor-blue-s.png */; };
- 9268562A11F142A000A28C33 /* target-cursor-red-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E830C085ED70066885E /* target-cursor-red-l.png */; };
- 9268562B11F142A000A28C33 /* target-cursor-red-m.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E840C085ED70066885E /* target-cursor-red-m.png */; };
- 9268562C11F142A000A28C33 /* target-cursor-red-s.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E850C085ED70066885E /* target-cursor-red-s.png */; };
- 9268562D11F142A000A28C33 /* vscroll_down_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E880C085ED70066885E /* vscroll_down_default.png */; };
- 9268562E11F142A000A28C33 /* vscroll_down_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E890C085ED70066885E /* vscroll_down_highlight.png */; };
- 9268562F11F142A000A28C33 /* vscroll_down_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */; };
- 9268563011F142A000A28C33 /* vscroll_grey.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8B0C085ED70066885E /* vscroll_grey.png */; };
- 9268563111F142A000A28C33 /* vscroll_up_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8D0C085ED70066885E /* vscroll_up_default.png */; };
- 9268563211F142A000A28C33 /* vscroll_up_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */; };
- 9268563311F142A000A28C33 /* vscroll_up_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */; };
- 9268565211F142D500A28C33 /* avatar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268564B11F142D500A28C33 /* avatar.cpp */; };
- 9268565311F142D500A28C33 /* client.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268564D11F142D500A28C33 /* client.cpp */; };
- 9268565411F142D500A28C33 /* party.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268564F11F142D500A28C33 /* party.cpp */; };
- 9268566811F142F100A28C33 /* beingpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565811F142F100A28C33 /* beingpopup.cpp */; };
- 9268566911F142F100A28C33 /* connectiondialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565A11F142F100A28C33 /* connectiondialog.cpp */; };
- 9268566A11F142F100A28C33 /* socialwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565C11F142F100A28C33 /* socialwindow.cpp */; };
- 9268566B11F142F100A28C33 /* specialswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565E11F142F100A28C33 /* specialswindow.cpp */; };
- 9268566C11F142F100A28C33 /* textpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566011F142F100A28C33 /* textpopup.cpp */; };
- 9268566D11F142F100A28C33 /* theme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566211F142F100A28C33 /* theme.cpp */; };
- 9268566E11F142F100A28C33 /* userpalette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566411F142F100A28C33 /* userpalette.cpp */; };
- 9268566F11F142F100A28C33 /* worldselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566611F142F100A28C33 /* worldselectdialog.cpp */; };
- 9268569711F1431300A28C33 /* avatarlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567811F1431300A28C33 /* avatarlistbox.cpp */; };
- 9268569811F1431300A28C33 /* emoteshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567A11F1431300A28C33 /* emoteshortcutcontainer.cpp */; };
- 9268569911F1431300A28C33 /* flowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567C11F1431300A28C33 /* flowcontainer.cpp */; };
- 9268569A11F1431300A28C33 /* itemcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567E11F1431300A28C33 /* itemcontainer.cpp */; };
- 9268569B11F1431300A28C33 /* itemlinkhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568011F1431300A28C33 /* itemlinkhandler.cpp */; };
- 9268569C11F1431300A28C33 /* itemshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568211F1431300A28C33 /* itemshortcutcontainer.cpp */; };
- 9268569D11F1431300A28C33 /* playerbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568511F1431300A28C33 /* playerbox.cpp */; };
- 9268569E11F1431300A28C33 /* progressindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568711F1431300A28C33 /* progressindicator.cpp */; };
- 9268569F11F1431300A28C33 /* setuptab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568911F1431300A28C33 /* setuptab.cpp */; };
- 926856A011F1431300A28C33 /* shopitems.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568B11F1431300A28C33 /* shopitems.cpp */; };
- 926856A111F1431300A28C33 /* shoplistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568D11F1431300A28C33 /* shoplistbox.cpp */; };
- 926856A211F1431300A28C33 /* shortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568F11F1431300A28C33 /* shortcutcontainer.cpp */; };
- 926856A311F1431300A28C33 /* table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268569111F1431300A28C33 /* table.cpp */; };
- 926856A411F1431300A28C33 /* tablemodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268569311F1431300A28C33 /* tablemodel.cpp */; };
- 926856A511F1431300A28C33 /* vertcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268569511F1431300A28C33 /* vertcontainer.cpp */; };
- 926856BB11F1433300A28C33 /* charhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856B511F1433300A28C33 /* charhandler.cpp */; };
- 926856BC11F1433300A28C33 /* download.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856B611F1433300A28C33 /* download.cpp */; };
- 9268573911F1433F00A28C33 /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F211F1433E00A28C33 /* adminhandler.cpp */; };
- 9268573A11F1433F00A28C33 /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F411F1433E00A28C33 /* beinghandler.cpp */; };
- 9268573B11F1433F00A28C33 /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F611F1433E00A28C33 /* buysellhandler.cpp */; };
- 9268573C11F1433F00A28C33 /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F811F1433E00A28C33 /* charserverhandler.cpp */; };
- 9268573D11F1433F00A28C33 /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856FA11F1433F00A28C33 /* chathandler.cpp */; };
- 9268573E11F1433F00A28C33 /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856FC11F1433F00A28C33 /* gamehandler.cpp */; };
- 9268573F11F1433F00A28C33 /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856FE11F1433F00A28C33 /* generalhandler.cpp */; };
- 9268574011F1433F00A28C33 /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570111F1433F00A28C33 /* guildtab.cpp */; };
- 9268574111F1433F00A28C33 /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570311F1433F00A28C33 /* partytab.cpp */; };
- 9268574211F1433F00A28C33 /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570511F1433F00A28C33 /* guildhandler.cpp */; };
- 9268574311F1433F00A28C33 /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570711F1433F00A28C33 /* inventoryhandler.cpp */; };
- 9268574411F1433F00A28C33 /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570911F1433F00A28C33 /* itemhandler.cpp */; };
- 9268574511F1433F00A28C33 /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570B11F1433F00A28C33 /* loginhandler.cpp */; };
- 9268574611F1433F00A28C33 /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570D11F1433F00A28C33 /* messagehandler.cpp */; };
- 9268574711F1433F00A28C33 /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570F11F1433F00A28C33 /* messagein.cpp */; };
- 9268574811F1433F00A28C33 /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571111F1433F00A28C33 /* messageout.cpp */; };
- 9268574911F1433F00A28C33 /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571311F1433F00A28C33 /* network.cpp */; };
- 9268574A11F1433F00A28C33 /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571511F1433F00A28C33 /* npchandler.cpp */; };
- 9268574B11F1433F00A28C33 /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571711F1433F00A28C33 /* partyhandler.cpp */; };
- 9268574C11F1433F00A28C33 /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571911F1433F00A28C33 /* playerhandler.cpp */; };
- 9268574D11F1433F00A28C33 /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571C11F1433F00A28C33 /* specialhandler.cpp */; };
- 9268574E11F1433F00A28C33 /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571F11F1433F00A28C33 /* tradehandler.cpp */; };
- 9268577F11F1435200A28C33 /* ambientlayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268577D11F1435200A28C33 /* ambientlayer.cpp */; };
- 9268578711F1435F00A28C33 /* copynpaste.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268578111F1435F00A28C33 /* copynpaste.cpp */; };
- 9268578811F1435F00A28C33 /* mkdir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268578311F1435F00A28C33 /* mkdir.cpp */; };
- 9268578911F1435F00A28C33 /* specialfolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268578511F1435F00A28C33 /* specialfolder.cpp */; };
- 926857AC11F15A9300A28C33 /* guichan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 926857AB11F15A9300A28C33 /* guichan.framework */; };
- 926857B011F15AB200A28C33 /* guichan.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 926857AB11F15A9300A28C33 /* guichan.framework */; };
- 9268581311F15F3900A28C33 /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C011F1433E00A28C33 /* adminhandler.cpp */; };
- 9268581411F15F3A00A28C33 /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C211F1433E00A28C33 /* beinghandler.cpp */; };
- 9268581511F15F3B00A28C33 /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C411F1433E00A28C33 /* buysellhandler.cpp */; };
- 9268581611F15F3C00A28C33 /* charhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C611F1433E00A28C33 /* charhandler.cpp */; };
- 9268581711F15F3D00A28C33 /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C811F1433E00A28C33 /* chathandler.cpp */; };
- 9268581811F15F3E00A28C33 /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856CA11F1433E00A28C33 /* connection.cpp */; };
- 9268581911F15F3F00A28C33 /* effecthandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856CC11F1433E00A28C33 /* effecthandler.cpp */; };
- 9268581A11F15F4000A28C33 /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856CE11F1433E00A28C33 /* gamehandler.cpp */; };
- 9268581B11F15F4000A28C33 /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D011F1433E00A28C33 /* generalhandler.cpp */; };
- 9268581C11F15F4200A28C33 /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D211F1433E00A28C33 /* guildhandler.cpp */; };
- 9268581D11F15F4300A28C33 /* internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D411F1433E00A28C33 /* internal.cpp */; };
- 9268581E11F15F4400A28C33 /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D611F1433E00A28C33 /* inventoryhandler.cpp */; };
- 9268581F11F15F4500A28C33 /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D811F1433E00A28C33 /* itemhandler.cpp */; };
- 9268582011F15F4600A28C33 /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856DA11F1433E00A28C33 /* loginhandler.cpp */; };
- 9268582111F15F4600A28C33 /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856DC11F1433E00A28C33 /* messagehandler.cpp */; };
- 9268582211F15F4700A28C33 /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856DE11F1433E00A28C33 /* messagein.cpp */; };
- 9268582311F15F4800A28C33 /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E011F1433E00A28C33 /* messageout.cpp */; };
- 9268582411F15F4A00A28C33 /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E211F1433E00A28C33 /* network.cpp */; };
- 9268582511F15F4A00A28C33 /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E411F1433E00A28C33 /* npchandler.cpp */; };
- 9268582611F15F4C00A28C33 /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E611F1433E00A28C33 /* partyhandler.cpp */; };
- 9268582711F15F4C00A28C33 /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E811F1433E00A28C33 /* playerhandler.cpp */; };
- 9268582811F15F4E00A28C33 /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856EB11F1433E00A28C33 /* specialhandler.cpp */; };
- 9268582911F15F4E00A28C33 /* stats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856ED11F1433E00A28C33 /* stats.cpp */; };
- 9268582A11F15F5000A28C33 /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856EF11F1433E00A28C33 /* tradehandler.cpp */; };
- 9268583011F15F6800A28C33 /* changeemaildialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */; };
- 9268583111F15F6900A28C33 /* changepassworddialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */; };
- 9268583211F15F7100A28C33 /* quitdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */; };
- 9268583311F15F7300A28C33 /* serverdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119830F8ED80E0048CA8D /* serverdialog.cpp */; };
- 9268583411F15F7600A28C33 /* skilldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */; };
- 9268583511F15F7900A28C33 /* statuswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117560F8ECF0B0048CA8D /* statuswindow.cpp */; };
- 9268583611F15F7B00A28C33 /* textdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */; };
- 9268583711F15F7E00A28C33 /* unregisterdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */; };
- 9268583A11F15FAC00A28C33 /* guild.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1188E0F8ED4B30048CA8D /* guild.cpp */; };
- 9268583B11F15FC200A28C33 /* position.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119980F8ED8B00048CA8D /* position.cpp */; };
- 9268583C11F15FC900A28C33 /* sha256.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1198E0F8ED85E0048CA8D /* sha256.cpp */; };
- 926A294A0F23BD88005D6466 /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29440F23BD88005D6466 /* layout.cpp */; };
- 926A294B0F23BD88005D6466 /* tab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29460F23BD88005D6466 /* tab.cpp */; };
- 926A294C0F23BD88005D6466 /* tabbedarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29480F23BD88005D6466 /* tabbedarea.cpp */; };
- 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 */; };
- 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 */; };
- 9273BDFC0EF33DFD008E56E1 /* COPYING in Resources */ = {isa = PBXBuildFile; fileRef = 9273BDFB0EF33DFD008E56E1 /* COPYING */; };
- 9273BDFF0EF33E1A008E56E1 /* AUTHORS in Resources */ = {isa = PBXBuildFile; fileRef = 9273BDFD0EF33E1A008E56E1 /* AUTHORS */; };
- 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 */; };
- 9294DAA10C17E73200FCEDE9 /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9294DAA00C17E73200FCEDE9 /* libpng.framework */; };
- 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 */; };
- 92BC3FF60BAEE55B000DAB7F /* animatedsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */; };
- 92BC3FF70BAEE55B000DAB7F /* being.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECC0BAEE55A000DAB7F /* being.cpp */; };
- 92BC3FF80BAEE55B000DAB7F /* beingmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */; };
- 92BC3FFA0BAEE55B000DAB7F /* configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ED20BAEE55A000DAB7F /* configuration.cpp */; };
- 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 */; };
- 92BC400C0BAEE55B000DAB7F /* buy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF90BAEE55A000DAB7F /* buy.cpp */; };
- 92BC400D0BAEE55B000DAB7F /* buysell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */; };
- 92BC40110BAEE55B000DAB7F /* chat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F030BAEE55A000DAB7F /* chat.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 */; };
- 92BC401A0BAEE55B000DAB7F /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F150BAEE55A000DAB7F /* gui.cpp */; };
- 92BC401C0BAEE55B000DAB7F /* help.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F190BAEE55A000DAB7F /* help.cpp */; };
- 92BC401E0BAEE55B000DAB7F /* inventorywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */; };
- 92BC40220BAEE55B000DAB7F /* login.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F260BAEE55A000DAB7F /* login.cpp */; };
- 92BC40240BAEE55B000DAB7F /* minimap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */; };
- 92BC40250BAEE55B000DAB7F /* ministatus.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */; };
- 92BC402C0BAEE55B000DAB7F /* popupmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */; };
- 92BC402F0BAEE55B000DAB7F /* register.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F400BAEE55A000DAB7F /* register.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 */; };
- 92BC40340BAEE55B000DAB7F /* setup_joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */; };
- 92BC40350BAEE55B000DAB7F /* setup_video.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F4D0BAEE55A000DAB7F /* setup_video.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 */; };
- 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 */; };
- 92BC40470BAEE55B000DAB7F /* localplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */; };
- 92BC40480BAEE55B000DAB7F /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F760BAEE55B000DAB7F /* log.cpp */; };
- 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 */; };
- 92BC40570BAEE55B000DAB7F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F950BAEE55B000DAB7F /* messagein.cpp */; };
- 92BC40580BAEE55B000DAB7F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F970BAEE55B000DAB7F /* messageout.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 */; };
- 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 */; };
- 92BC40770BAEE55B000DAB7F /* iteminfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */; };
- 92BC40780BAEE55B000DAB7F /* mapreader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */; };
- 92BC40790BAEE55B000DAB7F /* monsterdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */; };
- 92BC407A0BAEE55B000DAB7F /* monsterinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */; };
- 92BC407B0BAEE55B000DAB7F /* music.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD70BAEE55B000DAB7F /* music.cpp */; };
- 92BC407D0BAEE55B000DAB7F /* resource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FDB0BAEE55B000DAB7F /* resource.cpp */; };
- 92BC407E0BAEE55B000DAB7F /* resourcemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */; };
- 92BC40800BAEE55B000DAB7F /* soundeffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */; };
- 92BC40810BAEE55B000DAB7F /* spritedef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */; };
- 92BC40830BAEE55B000DAB7F /* simpleanimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */; };
- 92BC40840BAEE55B000DAB7F /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FEA0BAEE55B000DAB7F /* sound.cpp */; };
- 92BC40850BAEE55B000DAB7F /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FEF0BAEE55B000DAB7F /* base64.cpp */; };
- 92BC40860BAEE55B000DAB7F /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FF40BAEE55B000DAB7F /* xml.cpp */; };
- 92BC40940BAEE818000DAB7F /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408E0BAEE818000DAB7F /* SDL_image.framework */; };
- 92BC40950BAEE818000DAB7F /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */; };
- 92BC40960BAEE818000DAB7F /* SDL_net.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40900BAEE818000DAB7F /* SDL_net.framework */; };
- 92BC40970BAEE818000DAB7F /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40910BAEE818000DAB7F /* SDL.framework */; };
- 92BC40C70BAEEDAA000DAB7F /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */; };
- 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 */; };
- 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 */; };
- 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 */; };
- 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 */; };
- 92C115B90F8EBE450048CA8D /* recorder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B10F8EBE450048CA8D /* recorder.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 */; };
- 92C115EA0F8EBFA60048CA8D /* stringutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */; };
- 92C115EE0F8EBFC20048CA8D /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115EC0F8EBFC20048CA8D /* channel.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 */; };
- 92C636BB0FC5663000EE8D8D /* flooritem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636B30FC5663000EE8D8D /* flooritem.cpp */; };
- 92C636BC0FC5663000EE8D8D /* playerrelations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636B50FC5663000EE8D8D /* playerrelations.cpp */; };
- 92C636BD0FC5663000EE8D8D /* rotationalparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636B80FC5663000EE8D8D /* rotationalparticle.cpp */; };
- 92C636BE0FC5663000EE8D8D /* vector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636BA0FC5663000EE8D8D /* vector.cpp */; };
- 92C636D70FC5670700EE8D8D /* charselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636C40FC5670700EE8D8D /* charselectdialog.cpp */; };
- 92C636D80FC5670700EE8D8D /* confirmdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636C60FC5670700EE8D8D /* confirmdialog.cpp */; };
- 92C636D90FC5670700EE8D8D /* emotepopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636C80FC5670700EE8D8D /* emotepopup.cpp */; };
- 92C636DA0FC5670700EE8D8D /* itemamount.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636CA0FC5670700EE8D8D /* itemamount.cpp */; };
- 92C636DB0FC5670700EE8D8D /* npcdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636CC0FC5670700EE8D8D /* npcdialog.cpp */; };
- 92C636DC0FC5670700EE8D8D /* okdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636CE0FC5670700EE8D8D /* okdialog.cpp */; };
- 92C636DD0FC5670700EE8D8D /* outfitwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636D00FC5670700EE8D8D /* outfitwindow.cpp */; };
- 92C636DF0FC5670700EE8D8D /* windowmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636D50FC5670700EE8D8D /* windowmenu.cpp */; };
- 92C6378C0FC5756400EE8D8D /* dejavusans-bold.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */; };
- 92DD76470F267B3600B2B519 /* layouthelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92DD76450F267B3600B2B519 /* layouthelper.cpp */; };
- 92EA98B40FC5CB17003DC005 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 92EA98B30FC5CB17003DC005 /* SDLMain.nib */; };
- 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 */; };
- 92EEA0070D2E20B300DDE300 /* SDL_net.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40900BAEE818000DAB7F /* SDL_net.framework */; };
- 92EEA0080D2E20B300DDE300 /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40910BAEE818000DAB7F /* SDL.framework */; };
- 92FD19BA0DDCE53400D14E5D /* setup_players.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19B30DDCE53400D14E5D /* setup_players.cpp */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXCopyFilesBuildPhase section */
- 924A3A520C085C190066885E /* Copy Data Files */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = data;
- dstSubfolderSpec = 7;
- files = (
- 924A40570C085EF50066885E /* items.xsd in Copy Data Files */,
- );
- name = "Copy Data Files";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 924A3E540C085CAF0066885E /* Copy GUI Files */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = data/graphics/gui;
- dstSubfolderSpec = 7;
- files = (
- 9268560211F142A000A28C33 /* colors.xml in Copy GUI Files */,
- 9268560311F142A000A28C33 /* progress-indicator.png in Copy GUI Files */,
- 9268560411F142A000A28C33 /* radioin_highlight.png in Copy GUI Files */,
- 9268560511F142A000A28C33 /* radioout_highlight.png in Copy GUI Files */,
- 9268560611F142A000A28C33 /* slider_hilight.png in Copy GUI Files */,
- 9268560711F142A000A28C33 /* tab_hilight.png in Copy GUI Files */,
- 9268560811F142A000A28C33 /* vscroll_highlight.png in Copy GUI Files */,
- 9268560911F142A000A28C33 /* window.xml in Copy GUI Files */,
- 9268560A11F142A000A28C33 /* window.png in Copy GUI Files */,
- 9268560B11F142A000A28C33 /* circle-gray.png in Copy GUI Files */,
- 9268560C11F142A000A28C33 /* circle-green.png in Copy GUI Files */,
- 9268560D11F142A000A28C33 /* speechbubble.xml in Copy GUI Files */,
- 9268560E11F142A000A28C33 /* sticky_button.png in Copy GUI Files */,
- 9268560F11F142A000A28C33 /* bubble.png in Copy GUI Files */,
- 9268561011F142A000A28C33 /* tab.png in Copy GUI Files */,
- 9268561111F142A000A28C33 /* tabselected.png in Copy GUI Files */,
- 9268561211F142A000A28C33 /* close_button.png in Copy GUI Files */,
- 9268561311F142A000A28C33 /* unknown-item.png in Copy GUI Files */,
- 9268561411F142A000A28C33 /* item_shortcut_bgr.png in Copy GUI Files */,
- 9268561511F142A000A28C33 /* button.png in Copy GUI Files */,
- 9268561611F142A000A28C33 /* button_disabled.png in Copy GUI Files */,
- 9268561711F142A000A28C33 /* buttonhi.png in Copy GUI Files */,
- 9268561811F142A000A28C33 /* buttonpress.png in Copy GUI Files */,
- 9268561911F142A000A28C33 /* checkbox.png in Copy GUI Files */,
- 9268561A11F142A000A28C33 /* deepbox.png in Copy GUI Files */,
- 9268561B11F142A000A28C33 /* hscroll_left_default.png in Copy GUI Files */,
- 9268561C11F142A000A28C33 /* hscroll_left_highlight.png in Copy GUI Files */,
- 9268561D11F142A000A28C33 /* hscroll_left_pressed.png in Copy GUI Files */,
- 9268561E11F142A000A28C33 /* hscroll_right_default.png in Copy GUI Files */,
- 9268561F11F142A000A28C33 /* hscroll_right_highlight.png in Copy GUI Files */,
- 9268562011F142A000A28C33 /* hscroll_right_pressed.png in Copy GUI Files */,
- 9268562111F142A000A28C33 /* mouse.png in Copy GUI Files */,
- 9268562211F142A000A28C33 /* radioin.png in Copy GUI Files */,
- 9268562311F142A000A28C33 /* radioout.png in Copy GUI Files */,
- 9268562411F142A000A28C33 /* resize.png in Copy GUI Files */,
- 9268562511F142A000A28C33 /* selection.png in Copy GUI Files */,
- 9268562611F142A000A28C33 /* slider.png in Copy GUI Files */,
- 9268562711F142A000A28C33 /* target-cursor-blue-l.png in Copy GUI Files */,
- 9268562811F142A000A28C33 /* target-cursor-blue-m.png in Copy GUI Files */,
- 9268562911F142A000A28C33 /* target-cursor-blue-s.png in Copy GUI Files */,
- 9268562A11F142A000A28C33 /* target-cursor-red-l.png in Copy GUI Files */,
- 9268562B11F142A000A28C33 /* target-cursor-red-m.png in Copy GUI Files */,
- 9268562C11F142A000A28C33 /* target-cursor-red-s.png in Copy GUI Files */,
- 9268562D11F142A000A28C33 /* vscroll_down_default.png in Copy GUI Files */,
- 9268562E11F142A000A28C33 /* vscroll_down_highlight.png in Copy GUI Files */,
- 9268562F11F142A000A28C33 /* vscroll_down_pressed.png in Copy GUI Files */,
- 9268563011F142A000A28C33 /* vscroll_grey.png in Copy GUI Files */,
- 9268563111F142A000A28C33 /* vscroll_up_default.png in Copy GUI Files */,
- 9268563211F142A000A28C33 /* vscroll_up_highlight.png in Copy GUI Files */,
- 9268563311F142A000A28C33 /* vscroll_up_pressed.png in Copy GUI Files */,
- );
- name = "Copy GUI Files";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 924A40880C085FBD0066885E /* Copy Image Files */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = data/graphics/images;
- dstSubfolderSpec = 7;
- files = (
- 924A408B0C0860120066885E /* login_wallpaper.png in Copy Image Files */,
- );
- name = "Copy Image Files";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 924A42000C0861C70066885E /* Copy Help Files */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- 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 */,
- 924A42050C0861EC0066885E /* header.txt in Copy Help Files */,
- 924A42060C0861EC0066885E /* index.txt in Copy Help Files */,
- 924A42070C0861EC0066885E /* skills.txt in Copy Help Files */,
- 924A42080C0861EC0066885E /* support.txt in Copy Help Files */,
- 924A42090C0861EC0066885E /* team.txt in Copy Help Files */,
- );
- name = "Copy Help Files";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 926A29AA0F23CA6D005D6466 /* Copy Font Files */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = data/fonts;
- dstSubfolderSpec = 7;
- files = (
- 92C6378C0FC5756400EE8D8D /* dejavusans-bold.ttf in Copy Font 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 = (
- );
- name = "Copy Music Files";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 92EEA0090D2E20D100DDE300 /* Copy Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- 922895C211F6678700AE53BB /* libSDL-1.2.0.dylib in Copy Frameworks */,
- 922895C111F6678300AE53BB /* libiconv.2.dylib in Copy Frameworks */,
- 922895BC11F665AF00AE53BB /* libSDL_gfx.13.dylib in Copy Frameworks */,
- 922895BB11F665AB00AE53BB /* libphysfs.1.dylib in Copy Frameworks */,
- 922895BA11F665A700AE53BB /* libintl.8.dylib in Copy Frameworks */,
- 926857B011F15AB200A28C33 /* guichan.framework in Copy Frameworks */,
- 920C631F0F37D0EF001DD274 /* SDL_ttf.framework in Copy Frameworks */,
- 92EEA0030D2E20B300DDE300 /* libpng.framework in Copy Frameworks */,
- 92EEA0050D2E20B300DDE300 /* SDL_image.framework in Copy Frameworks */,
- 92EEA0060D2E20B300DDE300 /* SDL_mixer.framework in Copy Frameworks */,
- 92EEA0070D2E20B300DDE300 /* SDL_net.framework in Copy Frameworks */,
- 92EEA0080D2E20B300DDE300 /* SDL.framework in Copy Frameworks */,
- );
- name = "Copy Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
- 20286C33FDCF999611CA2CEA /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
- 508344B209E5C41E0093A071 /* The Mana World.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "The Mana World.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = keyboardconfig.cpp; path = src/keyboardconfig.cpp; sourceTree = "<group>"; };
- 92024D2B0CF1BD9E006B55CB /* keyboardconfig.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = keyboardconfig.h; path = src/keyboardconfig.h; sourceTree = "<group>"; };
- 92024D2C0CF1BD9E006B55CB /* vector.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = vector.h; path = src/vector.h; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 92024E740CF1DCF6006B55CB /* imageloader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imageloader.cpp; sourceTree = "<group>"; };
- 92024E750CF1DCF6006B55CB /* imageloader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imageloader.h; sourceTree = "<group>"; };
- 92037A190ED2035A00D3712D /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDLMain.h; path = src/SDLMain.h; sourceTree = "<group>"; };
- 92037A1A0ED2037300D3712D /* particleemitterprop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particleemitterprop.h; path = src/particleemitterprop.h; sourceTree = "<group>"; };
- 92037A1B0ED2037300D3712D /* text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = text.cpp; path = src/text.cpp; sourceTree = "<group>"; };
- 92037A1C0ED2037300D3712D /* text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = text.h; path = src/text.h; sourceTree = "<group>"; };
- 92037A1D0ED2037300D3712D /* textmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = textmanager.cpp; path = src/textmanager.cpp; sourceTree = "<group>"; };
- 92037A1E0ED2037300D3712D /* textmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textmanager.h; path = src/textmanager.h; sourceTree = "<group>"; };
- 922895B411F665A200AE53BB /* libintl.8.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libintl.8.dylib; sourceTree = "<group>"; };
- 922895B511F665A200AE53BB /* libphysfs.1.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libphysfs.1.dylib; sourceTree = "<group>"; };
- 922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libSDL_gfx.13.dylib; sourceTree = "<group>"; };
- 922895BF11F6677F00AE53BB /* libiconv.2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libiconv.2.dylib; sourceTree = "<group>"; };
- 922895C011F6677F00AE53BB /* libSDL-1.2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = "libSDL-1.2.0.dylib"; sourceTree = "<group>"; };
- 922CD9560E3D00900074C50E /* npcdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdb.cpp; sourceTree = "<group>"; };
- 922CD9570E3D00900074C50E /* npcdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdb.h; sourceTree = "<group>"; };
- 922CD95D0E3D01080074C50E /* shopitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = shopitem.cpp; path = src/shopitem.cpp; sourceTree = "<group>"; };
- 922CD95E0E3D01080074C50E /* shopitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = shopitem.h; path = src/shopitem.h; sourceTree = "<group>"; };
- 924A39E80C0784280066885E /* animationparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = animationparticle.cpp; path = src/animationparticle.cpp; sourceTree = "<group>"; };
- 924A39E90C0784280066885E /* animationparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = animationparticle.h; path = src/animationparticle.h; sourceTree = "<group>"; };
- 924A39EA0C0784280066885E /* imageparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = imageparticle.cpp; path = src/imageparticle.cpp; sourceTree = "<group>"; };
- 924A39EB0C0784280066885E /* imageparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = imageparticle.h; path = src/imageparticle.h; sourceTree = "<group>"; };
- 924A39EC0C0784280066885E /* particle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = particle.cpp; path = src/particle.cpp; sourceTree = "<group>"; };
- 924A39ED0C0784280066885E /* particle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = particle.h; path = src/particle.h; sourceTree = "<group>"; };
- 924A39EE0C0784280066885E /* particleemitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = particleemitter.cpp; path = src/particleemitter.cpp; sourceTree = "<group>"; };
- 924A39EF0C0784280066885E /* particleemitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = particleemitter.h; path = src/particleemitter.h; sourceTree = "<group>"; };
- 924A39F00C0784280066885E /* textparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = textparticle.cpp; path = src/textparticle.cpp; sourceTree = "<group>"; };
- 924A39F10C0784280066885E /* textparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = textparticle.h; path = src/textparticle.h; sourceTree = "<group>"; };
- 924A3A100C07A60B0066885E /* resizegrip.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resizegrip.cpp; sourceTree = "<group>"; };
- 924A3A110C07A60B0066885E /* resizegrip.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resizegrip.h; sourceTree = "<group>"; };
- 924A3E620C085ED70066885E /* button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button.png; sourceTree = "<group>"; };
- 924A3E630C085ED70066885E /* button_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button_disabled.png; sourceTree = "<group>"; };
- 924A3E640C085ED70066885E /* buttonhi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonhi.png; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 924A3E810C085ED70066885E /* target-cursor-blue-m.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-m.png"; sourceTree = "<group>"; };
- 924A3E820C085ED70066885E /* target-cursor-blue-s.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-s.png"; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_pressed.png; sourceTree = "<group>"; };
- 924A3E8B0C085ED70066885E /* vscroll_grey.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_grey.png; sourceTree = "<group>"; };
- 924A3E8D0C085ED70066885E /* vscroll_up_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_default.png; sourceTree = "<group>"; };
- 924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_highlight.png; sourceTree = "<group>"; };
- 924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_pressed.png; sourceTree = "<group>"; };
- 924A3E9A0C085ED70066885E /* login_wallpaper.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = login_wallpaper.png; sourceTree = "<group>"; };
- 924A400A0C085ED80066885E /* about.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = about.txt; sourceTree = "<group>"; };
- 924A400B0C085ED80066885E /* changes.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = changes.txt; sourceTree = "<group>"; };
- 924A400D0C085ED80066885E /* commands.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = commands.txt; sourceTree = "<group>"; };
- 924A400E0C085ED80066885E /* header.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = header.txt; sourceTree = "<group>"; };
- 924A400F0C085ED80066885E /* index.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = index.txt; sourceTree = "<group>"; };
- 924A40110C085ED80066885E /* skills.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = skills.txt; sourceTree = "<group>"; };
- 924A40120C085ED80066885E /* support.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = support.txt; sourceTree = "<group>"; };
- 924A40130C085ED80066885E /* team.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = team.txt; sourceTree = "<group>"; };
- 924A401C0C085ED80066885E /* items.xsd */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xml; path = items.xsd; sourceTree = "<group>"; };
- 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>"; };
- 926855E711F141D500A28C33 /* colors.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = colors.xml; sourceTree = "<group>"; };
- 926855E811F141D500A28C33 /* progress-indicator.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "progress-indicator.png"; sourceTree = "<group>"; };
- 926855E911F141D500A28C33 /* radioin_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioin_highlight.png; sourceTree = "<group>"; };
- 926855EA11F141D500A28C33 /* radioout_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioout_highlight.png; sourceTree = "<group>"; };
- 926855EB11F141D500A28C33 /* slider_hilight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slider_hilight.png; sourceTree = "<group>"; };
- 926855EC11F141D500A28C33 /* tab_hilight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tab_hilight.png; sourceTree = "<group>"; };
- 926855ED11F141D500A28C33 /* vscroll_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_highlight.png; sourceTree = "<group>"; };
- 926855EE11F141D500A28C33 /* window.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = window.xml; sourceTree = "<group>"; };
- 926855FF11F141FD00A28C33 /* mana.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = mana.icns; sourceTree = "<group>"; };
- 9268564B11F142D500A28C33 /* avatar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = avatar.cpp; path = src/avatar.cpp; sourceTree = "<group>"; };
- 9268564C11F142D500A28C33 /* avatar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = avatar.h; path = src/avatar.h; sourceTree = "<group>"; };
- 9268564D11F142D500A28C33 /* client.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = client.cpp; path = src/client.cpp; sourceTree = "<group>"; };
- 9268564E11F142D500A28C33 /* client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = client.h; path = src/client.h; sourceTree = "<group>"; };
- 9268564F11F142D500A28C33 /* party.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = party.cpp; path = src/party.cpp; sourceTree = "<group>"; };
- 9268565011F142D500A28C33 /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/party.h; sourceTree = "<group>"; };
- 9268565111F142D500A28C33 /* textrenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textrenderer.h; path = src/textrenderer.h; sourceTree = "<group>"; };
- 9268565811F142F100A28C33 /* beingpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beingpopup.cpp; sourceTree = "<group>"; };
- 9268565911F142F100A28C33 /* beingpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beingpopup.h; sourceTree = "<group>"; };
- 9268565A11F142F100A28C33 /* connectiondialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connectiondialog.cpp; sourceTree = "<group>"; };
- 9268565B11F142F100A28C33 /* connectiondialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connectiondialog.h; sourceTree = "<group>"; };
- 9268565C11F142F100A28C33 /* socialwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = socialwindow.cpp; sourceTree = "<group>"; };
- 9268565D11F142F100A28C33 /* socialwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socialwindow.h; sourceTree = "<group>"; };
- 9268565E11F142F100A28C33 /* specialswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialswindow.cpp; sourceTree = "<group>"; };
- 9268565F11F142F100A28C33 /* specialswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialswindow.h; sourceTree = "<group>"; };
- 9268566011F142F100A28C33 /* textpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpopup.cpp; sourceTree = "<group>"; };
- 9268566111F142F100A28C33 /* textpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpopup.h; sourceTree = "<group>"; };
- 9268566211F142F100A28C33 /* theme.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = theme.cpp; sourceTree = "<group>"; };
- 9268566311F142F100A28C33 /* theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = theme.h; sourceTree = "<group>"; };
- 9268566411F142F100A28C33 /* userpalette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = userpalette.cpp; sourceTree = "<group>"; };
- 9268566511F142F100A28C33 /* userpalette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = userpalette.h; sourceTree = "<group>"; };
- 9268566611F142F100A28C33 /* worldselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = worldselectdialog.cpp; sourceTree = "<group>"; };
- 9268566711F142F100A28C33 /* worldselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldselectdialog.h; sourceTree = "<group>"; };
- 9268567811F1431300A28C33 /* avatarlistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = avatarlistbox.cpp; sourceTree = "<group>"; };
- 9268567911F1431300A28C33 /* avatarlistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avatarlistbox.h; sourceTree = "<group>"; };
- 9268567A11F1431300A28C33 /* emoteshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emoteshortcutcontainer.cpp; sourceTree = "<group>"; };
- 9268567B11F1431300A28C33 /* emoteshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emoteshortcutcontainer.h; sourceTree = "<group>"; };
- 9268567C11F1431300A28C33 /* flowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flowcontainer.cpp; sourceTree = "<group>"; };
- 9268567D11F1431300A28C33 /* flowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flowcontainer.h; sourceTree = "<group>"; };
- 9268567E11F1431300A28C33 /* itemcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemcontainer.cpp; sourceTree = "<group>"; };
- 9268567F11F1431300A28C33 /* itemcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemcontainer.h; sourceTree = "<group>"; };
- 9268568011F1431300A28C33 /* itemlinkhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemlinkhandler.cpp; sourceTree = "<group>"; };
- 9268568111F1431300A28C33 /* itemlinkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemlinkhandler.h; sourceTree = "<group>"; };
- 9268568211F1431300A28C33 /* itemshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemshortcutcontainer.cpp; sourceTree = "<group>"; };
- 9268568311F1431300A28C33 /* itemshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemshortcutcontainer.h; sourceTree = "<group>"; };
- 9268568411F1431300A28C33 /* linkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linkhandler.h; sourceTree = "<group>"; };
- 9268568511F1431300A28C33 /* playerbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerbox.cpp; sourceTree = "<group>"; };
- 9268568611F1431300A28C33 /* playerbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerbox.h; sourceTree = "<group>"; };
- 9268568711F1431300A28C33 /* progressindicator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressindicator.cpp; sourceTree = "<group>"; };
- 9268568811F1431300A28C33 /* progressindicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressindicator.h; sourceTree = "<group>"; };
- 9268568911F1431300A28C33 /* setuptab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setuptab.cpp; sourceTree = "<group>"; };
- 9268568A11F1431300A28C33 /* setuptab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setuptab.h; sourceTree = "<group>"; };
- 9268568B11F1431300A28C33 /* shopitems.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shopitems.cpp; sourceTree = "<group>"; };
- 9268568C11F1431300A28C33 /* shopitems.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopitems.h; sourceTree = "<group>"; };
- 9268568D11F1431300A28C33 /* shoplistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shoplistbox.cpp; sourceTree = "<group>"; };
- 9268568E11F1431300A28C33 /* shoplistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shoplistbox.h; sourceTree = "<group>"; };
- 9268568F11F1431300A28C33 /* shortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutcontainer.cpp; sourceTree = "<group>"; };
- 9268569011F1431300A28C33 /* shortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutcontainer.h; sourceTree = "<group>"; };
- 9268569111F1431300A28C33 /* table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = table.cpp; sourceTree = "<group>"; };
- 9268569211F1431300A28C33 /* table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = table.h; sourceTree = "<group>"; };
- 9268569311F1431300A28C33 /* tablemodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tablemodel.cpp; sourceTree = "<group>"; };
- 9268569411F1431300A28C33 /* tablemodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tablemodel.h; sourceTree = "<group>"; };
- 9268569511F1431300A28C33 /* vertcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vertcontainer.cpp; sourceTree = "<group>"; };
- 9268569611F1431300A28C33 /* vertcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vertcontainer.h; sourceTree = "<group>"; };
- 926856B511F1433300A28C33 /* charhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charhandler.cpp; sourceTree = "<group>"; };
- 926856B611F1433300A28C33 /* download.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download.cpp; sourceTree = "<group>"; };
- 926856B711F1433300A28C33 /* download.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download.h; sourceTree = "<group>"; };
- 926856B811F1433300A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
- 926856B911F1433300A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
- 926856BA11F1433300A28C33 /* worldinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldinfo.h; sourceTree = "<group>"; };
- 926856C011F1433E00A28C33 /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
- 926856C111F1433E00A28C33 /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
- 926856C211F1433E00A28C33 /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
- 926856C311F1433E00A28C33 /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
- 926856C411F1433E00A28C33 /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
- 926856C511F1433E00A28C33 /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
- 926856C611F1433E00A28C33 /* charhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charhandler.cpp; sourceTree = "<group>"; };
- 926856C711F1433E00A28C33 /* charhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charhandler.h; sourceTree = "<group>"; };
- 926856C811F1433E00A28C33 /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
- 926856C911F1433E00A28C33 /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
- 926856CA11F1433E00A28C33 /* connection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connection.cpp; sourceTree = "<group>"; };
- 926856CB11F1433E00A28C33 /* connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connection.h; sourceTree = "<group>"; };
- 926856CC11F1433E00A28C33 /* effecthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effecthandler.cpp; sourceTree = "<group>"; };
- 926856CD11F1433E00A28C33 /* effecthandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effecthandler.h; sourceTree = "<group>"; };
- 926856CE11F1433E00A28C33 /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = "<group>"; };
- 926856CF11F1433E00A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
- 926856D011F1433E00A28C33 /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
- 926856D111F1433E00A28C33 /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
- 926856D211F1433E00A28C33 /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
- 926856D311F1433E00A28C33 /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
- 926856D411F1433E00A28C33 /* internal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internal.cpp; sourceTree = "<group>"; };
- 926856D511F1433E00A28C33 /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = "<group>"; };
- 926856D611F1433E00A28C33 /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
- 926856D711F1433E00A28C33 /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
- 926856D811F1433E00A28C33 /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
- 926856D911F1433E00A28C33 /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
- 926856DA11F1433E00A28C33 /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
- 926856DB11F1433E00A28C33 /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
- 926856DC11F1433E00A28C33 /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = "<group>"; };
- 926856DD11F1433E00A28C33 /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
- 926856DE11F1433E00A28C33 /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
- 926856DF11F1433E00A28C33 /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
- 926856E011F1433E00A28C33 /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
- 926856E111F1433E00A28C33 /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
- 926856E211F1433E00A28C33 /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
- 926856E311F1433E00A28C33 /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
- 926856E411F1433E00A28C33 /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
- 926856E511F1433E00A28C33 /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
- 926856E611F1433E00A28C33 /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
- 926856E711F1433E00A28C33 /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
- 926856E811F1433E00A28C33 /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
- 926856E911F1433E00A28C33 /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
- 926856EA11F1433E00A28C33 /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
- 926856EB11F1433E00A28C33 /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = "<group>"; };
- 926856EC11F1433E00A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
- 926856ED11F1433E00A28C33 /* stats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stats.cpp; sourceTree = "<group>"; };
- 926856EE11F1433E00A28C33 /* stats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stats.h; sourceTree = "<group>"; };
- 926856EF11F1433E00A28C33 /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
- 926856F011F1433E00A28C33 /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
- 926856F211F1433E00A28C33 /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
- 926856F311F1433E00A28C33 /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
- 926856F411F1433E00A28C33 /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
- 926856F511F1433E00A28C33 /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
- 926856F611F1433E00A28C33 /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
- 926856F711F1433E00A28C33 /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
- 926856F811F1433E00A28C33 /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
- 926856F911F1433E00A28C33 /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
- 926856FA11F1433F00A28C33 /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
- 926856FB11F1433F00A28C33 /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
- 926856FC11F1433F00A28C33 /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = "<group>"; };
- 926856FD11F1433F00A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
- 926856FE11F1433F00A28C33 /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
- 926856FF11F1433F00A28C33 /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
- 9268570111F1433F00A28C33 /* guildtab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildtab.cpp; sourceTree = "<group>"; };
- 9268570211F1433F00A28C33 /* guildtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildtab.h; sourceTree = "<group>"; };
- 9268570311F1433F00A28C33 /* partytab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partytab.cpp; sourceTree = "<group>"; };
- 9268570411F1433F00A28C33 /* partytab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partytab.h; sourceTree = "<group>"; };
- 9268570511F1433F00A28C33 /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
- 9268570611F1433F00A28C33 /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
- 9268570711F1433F00A28C33 /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
- 9268570811F1433F00A28C33 /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
- 9268570911F1433F00A28C33 /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
- 9268570A11F1433F00A28C33 /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
- 9268570B11F1433F00A28C33 /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
- 9268570C11F1433F00A28C33 /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
- 9268570D11F1433F00A28C33 /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = "<group>"; };
- 9268570E11F1433F00A28C33 /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
- 9268570F11F1433F00A28C33 /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
- 9268571011F1433F00A28C33 /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
- 9268571111F1433F00A28C33 /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
- 9268571211F1433F00A28C33 /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
- 9268571311F1433F00A28C33 /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
- 9268571411F1433F00A28C33 /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
- 9268571511F1433F00A28C33 /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
- 9268571611F1433F00A28C33 /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
- 9268571711F1433F00A28C33 /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
- 9268571811F1433F00A28C33 /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
- 9268571911F1433F00A28C33 /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
- 9268571A11F1433F00A28C33 /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
- 9268571B11F1433F00A28C33 /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
- 9268571C11F1433F00A28C33 /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = "<group>"; };
- 9268571D11F1433F00A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
- 9268571E11F1433F00A28C33 /* token.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = token.h; sourceTree = "<group>"; };
- 9268571F11F1433F00A28C33 /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
- 9268572011F1433F00A28C33 /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
- 9268577D11F1435200A28C33 /* ambientlayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ambientlayer.cpp; sourceTree = "<group>"; };
- 9268577E11F1435200A28C33 /* ambientlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ambientlayer.h; sourceTree = "<group>"; };
- 9268578111F1435F00A28C33 /* copynpaste.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = copynpaste.cpp; sourceTree = "<group>"; };
- 9268578211F1435F00A28C33 /* copynpaste.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = copynpaste.h; sourceTree = "<group>"; };
- 9268578311F1435F00A28C33 /* mkdir.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mkdir.cpp; sourceTree = "<group>"; };
- 9268578411F1435F00A28C33 /* mkdir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mkdir.h; sourceTree = "<group>"; };
- 9268578511F1435F00A28C33 /* specialfolder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialfolder.cpp; sourceTree = "<group>"; };
- 9268578611F1435F00A28C33 /* specialfolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialfolder.h; sourceTree = "<group>"; };
- 926857AB11F15A9300A28C33 /* guichan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = guichan.framework; path = /Library/Frameworks/guichan.framework; sourceTree = "<absolute>"; };
- 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>"; };
- 926A29470F23BD88005D6466 /* tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab.h; sourceTree = "<group>"; };
- 926A29480F23BD88005D6466 /* tabbedarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tabbedarea.cpp; sourceTree = "<group>"; };
- 926A29490F23BD88005D6466 /* tabbedarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tabbedarea.h; sourceTree = "<group>"; };
- 926A29520F23BD9E005D6466 /* sdlinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlinput.cpp; sourceTree = "<group>"; };
- 926A29530F23BD9E005D6466 /* sdlinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdlinput.h; sourceTree = "<group>"; };
- 926A29540F23BD9E005D6466 /* truetypefont.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = truetypefont.cpp; sourceTree = "<group>"; };
- 926A29550F23BD9E005D6466 /* truetypefont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = truetypefont.h; sourceTree = "<group>"; };
- 926A295A0F23BDB1005D6466 /* gettext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gettext.h; sourceTree = "<group>"; };
- 926A295B0F23BDB1005D6466 /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = "<group>"; };
- 926A29790F23C155005D6466 /* SDL_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_ttf.framework; path = /Library/Frameworks/SDL_ttf.framework; sourceTree = "<absolute>"; };
- 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>"; };
- 9273BDFB0EF33DFD008E56E1 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = "<group>"; };
- 9273BDFD0EF33E1A008E56E1 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = "<group>"; };
- 9273BDFE0EF33E1A008E56E1 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
- 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = particlecontainer.cpp; path = src/particlecontainer.cpp; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = animatedsprite.cpp; path = src/animatedsprite.cpp; sourceTree = "<group>"; };
- 92BC3ECB0BAEE55A000DAB7F /* animatedsprite.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = animatedsprite.h; path = src/animatedsprite.h; sourceTree = "<group>"; };
- 92BC3ECC0BAEE55A000DAB7F /* being.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = being.cpp; path = src/being.cpp; sourceTree = "<group>"; };
- 92BC3ECD0BAEE55A000DAB7F /* being.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = being.h; path = src/being.h; sourceTree = "<group>"; };
- 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = beingmanager.cpp; path = src/beingmanager.cpp; sourceTree = "<group>"; };
- 92BC3ECF0BAEE55A000DAB7F /* beingmanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = beingmanager.h; path = src/beingmanager.h; sourceTree = "<group>"; };
- 92BC3ED10BAEE55A000DAB7F /* configlistener.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = configlistener.h; path = src/configlistener.h; sourceTree = "<group>"; };
- 92BC3ED20BAEE55A000DAB7F /* configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cpp; path = src/configuration.cpp; sourceTree = "<group>"; };
- 92BC3ED30BAEE55A000DAB7F /* configuration.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = configuration.h; path = src/configuration.h; sourceTree = "<group>"; };
- 92BC3EE70BAEE55A000DAB7F /* equipment.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = equipment.h; path = src/equipment.h; sourceTree = "<group>"; };
- 92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = flooritemmanager.cpp; path = src/flooritemmanager.cpp; sourceTree = "<group>"; };
- 92BC3EEB0BAEE55A000DAB7F /* flooritemmanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = flooritemmanager.h; path = src/flooritemmanager.h; sourceTree = "<group>"; };
- 92BC3EEC0BAEE55A000DAB7F /* game.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = game.cpp; path = src/game.cpp; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = debugwindow.cpp; sourceTree = "<group>"; };
- 92BC3F0E0BAEE55A000DAB7F /* debugwindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = debugwindow.h; sourceTree = "<group>"; };
- 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = equipmentwindow.cpp; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = minimap.cpp; sourceTree = "<group>"; };
- 92BC3F2B0BAEE55A000DAB7F /* minimap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = minimap.h; sourceTree = "<group>"; };
- 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ministatus.cpp; sourceTree = "<group>"; };
- 92BC3F2D0BAEE55A000DAB7F /* ministatus.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ministatus.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>"; };
- 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>"; };
- 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>"; };
- 92BC3F480BAEE55A000DAB7F /* setup.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup.h; sourceTree = "<group>"; };
- 92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_audio.cpp; sourceTree = "<group>"; };
- 92BC3F4A0BAEE55A000DAB7F /* setup_audio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_audio.h; sourceTree = "<group>"; };
- 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_joystick.cpp; sourceTree = "<group>"; };
- 92BC3F4C0BAEE55A000DAB7F /* setup_joystick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_joystick.h; sourceTree = "<group>"; };
- 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_video.cpp; sourceTree = "<group>"; };
- 92BC3F4E0BAEE55A000DAB7F /* setup_video.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_video.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>"; };
- 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>"; };
- 92BC3F6F0BAEE55B000DAB7F /* item.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = item.cpp; path = src/item.cpp; sourceTree = "<group>"; };
- 92BC3F700BAEE55B000DAB7F /* item.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = item.h; path = src/item.h; sourceTree = "<group>"; };
- 92BC3F710BAEE55B000DAB7F /* joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = joystick.cpp; path = src/joystick.cpp; sourceTree = "<group>"; };
- 92BC3F720BAEE55B000DAB7F /* joystick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = joystick.h; path = src/joystick.h; sourceTree = "<group>"; };
- 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = localplayer.cpp; path = src/localplayer.cpp; sourceTree = "<group>"; };
- 92BC3F740BAEE55B000DAB7F /* localplayer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = localplayer.h; path = src/localplayer.h; sourceTree = "<group>"; };
- 92BC3F760BAEE55B000DAB7F /* log.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = src/log.cpp; sourceTree = "<group>"; };
- 92BC3F770BAEE55B000DAB7F /* log.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = log.h; path = src/log.h; sourceTree = "<group>"; };
- 92BC3F790BAEE55B000DAB7F /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = "<group>"; };
- 92BC3F7A0BAEE55B000DAB7F /* main.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = main.h; path = src/main.h; sourceTree = "<group>"; };
- 92BC3F7C0BAEE55B000DAB7F /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = map.cpp; path = src/map.cpp; sourceTree = "<group>"; };
- 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>"; };
- 92BC3F880BAEE55B000DAB7F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
- 92BC3F8C0BAEE55B000DAB7F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
- 92BC3F900BAEE55B000DAB7F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; 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>"; };
- 92BC3F9C0BAEE55B000DAB7F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
- 92BC3F9E0BAEE55B000DAB7F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; 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>"; };
- 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = openglgraphics.cpp; path = src/openglgraphics.cpp; sourceTree = "<group>"; };
- 92BC3FA80BAEE55B000DAB7F /* openglgraphics.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = openglgraphics.h; path = src/openglgraphics.h; sourceTree = "<group>"; };
- 92BC3FBA0BAEE55B000DAB7F /* player.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = player.cpp; path = src/player.cpp; sourceTree = "<group>"; };
- 92BC3FBB0BAEE55B000DAB7F /* player.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = player.h; path = src/player.h; sourceTree = "<group>"; };
- 92BC3FBC0BAEE55B000DAB7F /* properties.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = properties.h; path = src/properties.h; sourceTree = "<group>"; };
- 92BC3FBE0BAEE55B000DAB7F /* action.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = action.cpp; sourceTree = "<group>"; };
- 92BC3FBF0BAEE55B000DAB7F /* action.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = action.h; sourceTree = "<group>"; };
- 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ambientoverlay.cpp; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 92BC3FCC0BAEE55B000DAB7F /* imagewriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imagewriter.h; sourceTree = "<group>"; };
- 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = itemdb.cpp; sourceTree = "<group>"; };
- 92BC3FCE0BAEE55B000DAB7F /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = itemdb.h; sourceTree = "<group>"; };
- 92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = iteminfo.cpp; sourceTree = "<group>"; };
- 92BC3FD00BAEE55B000DAB7F /* iteminfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = iteminfo.h; sourceTree = "<group>"; };
- 92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mapreader.cpp; sourceTree = "<group>"; };
- 92BC3FD20BAEE55B000DAB7F /* mapreader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mapreader.h; sourceTree = "<group>"; };
- 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monsterdb.cpp; sourceTree = "<group>"; };
- 92BC3FD40BAEE55B000DAB7F /* monsterdb.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monsterdb.h; sourceTree = "<group>"; };
- 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monsterinfo.cpp; sourceTree = "<group>"; };
- 92BC3FD60BAEE55B000DAB7F /* monsterinfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monsterinfo.h; sourceTree = "<group>"; };
- 92BC3FD70BAEE55B000DAB7F /* music.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = music.cpp; sourceTree = "<group>"; };
- 92BC3FD80BAEE55B000DAB7F /* music.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = music.h; sourceTree = "<group>"; };
- 92BC3FDB0BAEE55B000DAB7F /* resource.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resource.cpp; sourceTree = "<group>"; };
- 92BC3FDC0BAEE55B000DAB7F /* resource.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = "<group>"; };
- 92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resourcemanager.cpp; sourceTree = "<group>"; };
- 92BC3FDE0BAEE55B000DAB7F /* resourcemanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resourcemanager.h; sourceTree = "<group>"; };
- 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = soundeffect.cpp; sourceTree = "<group>"; };
- 92BC3FE20BAEE55B000DAB7F /* soundeffect.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = soundeffect.h; sourceTree = "<group>"; };
- 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = spritedef.cpp; sourceTree = "<group>"; };
- 92BC3FE40BAEE55B000DAB7F /* spritedef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = spritedef.h; sourceTree = "<group>"; };
- 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = simpleanimation.cpp; path = src/simpleanimation.cpp; sourceTree = "<group>"; };
- 92BC3FE90BAEE55B000DAB7F /* simpleanimation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = simpleanimation.h; path = src/simpleanimation.h; sourceTree = "<group>"; };
- 92BC3FEA0BAEE55B000DAB7F /* sound.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = src/sound.cpp; sourceTree = "<group>"; };
- 92BC3FEB0BAEE55B000DAB7F /* sound.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sound.h; path = src/sound.h; sourceTree = "<group>"; };
- 92BC3FEC0BAEE55B000DAB7F /* sprite.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sprite.h; path = src/sprite.h; sourceTree = "<group>"; };
- 92BC3FED0BAEE55B000DAB7F /* tileset.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tileset.h; path = src/tileset.h; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_mixer.framework; path = /Library/Frameworks/SDL_mixer.framework; sourceTree = "<absolute>"; };
- 92BC40900BAEE818000DAB7F /* SDL_net.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_net.framework; path = /Library/Frameworks/SDL_net.framework; sourceTree = "<absolute>"; };
- 92BC40910BAEE818000DAB7F /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = "<absolute>"; };
- 92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 92C636AF0FC5605300EE8D8D /* mathutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mathutils.h; sourceTree = "<group>"; };
- 92C636B30FC5663000EE8D8D /* flooritem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = flooritem.cpp; path = src/flooritem.cpp; sourceTree = "<group>"; };
- 92C636B40FC5663000EE8D8D /* flooritem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = flooritem.h; path = src/flooritem.h; sourceTree = "<group>"; };
- 92C636B50FC5663000EE8D8D /* playerrelations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playerrelations.cpp; path = src/playerrelations.cpp; sourceTree = "<group>"; };
- 92C636B60FC5663000EE8D8D /* playerrelations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playerrelations.h; path = src/playerrelations.h; sourceTree = "<group>"; };
- 92C636B70FC5663000EE8D8D /* position.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = position.h; path = src/position.h; sourceTree = "<group>"; };
- 92C636B80FC5663000EE8D8D /* rotationalparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rotationalparticle.cpp; path = src/rotationalparticle.cpp; sourceTree = "<group>"; };
- 92C636B90FC5663000EE8D8D /* rotationalparticle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rotationalparticle.h; path = src/rotationalparticle.h; sourceTree = "<group>"; };
- 92C636BA0FC5663000EE8D8D /* vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vector.cpp; path = src/vector.cpp; sourceTree = "<group>"; };
- 92C636C40FC5670700EE8D8D /* charselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charselectdialog.cpp; sourceTree = "<group>"; };
- 92C636C50FC5670700EE8D8D /* charselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charselectdialog.h; sourceTree = "<group>"; };
- 92C636C60FC5670700EE8D8D /* confirmdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = confirmdialog.cpp; sourceTree = "<group>"; };
- 92C636C70FC5670700EE8D8D /* confirmdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = confirmdialog.h; sourceTree = "<group>"; };
- 92C636C80FC5670700EE8D8D /* emotepopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotepopup.cpp; sourceTree = "<group>"; };
- 92C636C90FC5670700EE8D8D /* emotepopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotepopup.h; sourceTree = "<group>"; };
- 92C636CA0FC5670700EE8D8D /* itemamount.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemamount.cpp; sourceTree = "<group>"; };
- 92C636CB0FC5670700EE8D8D /* itemamount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemamount.h; sourceTree = "<group>"; };
- 92C636CC0FC5670700EE8D8D /* npcdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdialog.cpp; sourceTree = "<group>"; };
- 92C636CD0FC5670700EE8D8D /* npcdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdialog.h; sourceTree = "<group>"; };
- 92C636CE0FC5670700EE8D8D /* okdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = okdialog.cpp; sourceTree = "<group>"; };
- 92C636CF0FC5670700EE8D8D /* okdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = okdialog.h; sourceTree = "<group>"; };
- 92C636D00FC5670700EE8D8D /* outfitwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = outfitwindow.cpp; sourceTree = "<group>"; };
- 92C636D10FC5670700EE8D8D /* outfitwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = outfitwindow.h; sourceTree = "<group>"; };
- 92C636D50FC5670700EE8D8D /* windowmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowmenu.cpp; sourceTree = "<group>"; };
- 92C636D60FC5670700EE8D8D /* windowmenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowmenu.h; sourceTree = "<group>"; };
- 92C636EA0FC5677500EE8D8D /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
- 92C636EB0FC5677500EE8D8D /* charhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charhandler.h; sourceTree = "<group>"; };
- 92C636EC0FC5677500EE8D8D /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
- 92C636ED0FC5677500EE8D8D /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
- 92C636EE0FC5677500EE8D8D /* logindata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logindata.h; sourceTree = "<group>"; };
- 92C636F10FC5677500EE8D8D /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
- 92C636F20FC5677500EE8D8D /* serverinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverinfo.h; sourceTree = "<group>"; };
- 92C637800FC574B500EE8D8D /* window.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = window.png; sourceTree = "<group>"; };
- 92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "dejavusans-bold.ttf"; path = "fonts/dejavusans-bold.ttf"; sourceTree = "<group>"; };
- 92C85CF411F28D2300AB20CA /* error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = error.png; sourceTree = "<group>"; };
- 92C85CF511F28D2300AB20CA /* error.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = error.xml; 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>"; };
- 92EA98B30FC5CB17003DC005 /* SDLMain.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; path = SDLMain.nib; sourceTree = "<group>"; };
- 92FD19B30DDCE53400D14E5D /* setup_players.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_players.cpp; sourceTree = "<group>"; };
- 92FD19B40DDCE53400D14E5D /* setup_players.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_players.h; sourceTree = "<group>"; };
- 92FD19BD0DDCE56A00D14E5D /* dye.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dye.h; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 8D0C4E910486CD37000505A6 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D0C4E920486CD37000505A6 /* Carbon.framework in Frameworks */,
- 92BC40940BAEE818000DAB7F /* SDL_image.framework in Frameworks */,
- 92BC40950BAEE818000DAB7F /* SDL_mixer.framework in Frameworks */,
- 92BC40960BAEE818000DAB7F /* SDL_net.framework in Frameworks */,
- 92BC40970BAEE818000DAB7F /* SDL.framework in Frameworks */,
- 92BC40C70BAEEDAA000DAB7F /* OpenGL.framework in Frameworks */,
- 92BC40D90BAEEED3000DAB7F /* IOKit.framework in Frameworks */,
- 92BC40E90BAEF57D000DAB7F /* Cocoa.framework in Frameworks */,
- 9294DAA10C17E73200FCEDE9 /* libpng.framework in Frameworks */,
- 926A297A0F23C155005D6466 /* SDL_ttf.framework in Frameworks */,
- 926857AC11F15A9300A28C33 /* guichan.framework in Frameworks */,
- 922895B711F665A200AE53BB /* libintl.8.dylib in Frameworks */,
- 922895B811F665A200AE53BB /* libphysfs.1.dylib in Frameworks */,
- 922895B911F665A200AE53BB /* libSDL_gfx.13.dylib in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 195DF8CFFE9D517E11CA2CBB /* Products */ = {
- isa = PBXGroup;
- children = (
- 508344B209E5C41E0093A071 /* The Mana World.app */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 20286C29FDCF999611CA2CEA /* themanaworld */ = {
- isa = PBXGroup;
- children = (
- 924A42600C0874D00066885E /* Info.plist */,
- 5048396909E3304600765E4B /* Configuration Files */,
- 20286C2AFDCF999611CA2CEA /* Sources */,
- 20286C2CFDCF999611CA2CEA /* Resources */,
- 20286C32FDCF999611CA2CEA /* External Frameworks and Libraries */,
- 195DF8CFFE9D517E11CA2CBB /* Products */,
- );
- name = themanaworld;
- sourceTree = "<group>";
- };
- 20286C2AFDCF999611CA2CEA /* Sources */ = {
- isa = PBXGroup;
- children = (
- 9268564B11F142D500A28C33 /* avatar.cpp */,
- 9268564C11F142D500A28C33 /* avatar.h */,
- 9268564D11F142D500A28C33 /* client.cpp */,
- 9268564E11F142D500A28C33 /* client.h */,
- 9268564F11F142D500A28C33 /* party.cpp */,
- 9268565011F142D500A28C33 /* party.h */,
- 9268565111F142D500A28C33 /* textrenderer.h */,
- 92C636B30FC5663000EE8D8D /* flooritem.cpp */,
- 92C636B40FC5663000EE8D8D /* flooritem.h */,
- 92C636B50FC5663000EE8D8D /* playerrelations.cpp */,
- 92C636B60FC5663000EE8D8D /* playerrelations.h */,
- 92C636B70FC5663000EE8D8D /* position.h */,
- 92C636B80FC5663000EE8D8D /* rotationalparticle.cpp */,
- 92C636B90FC5663000EE8D8D /* rotationalparticle.h */,
- 92C636BA0FC5663000EE8D8D /* vector.cpp */,
- 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 */,
- 9273BE070EF33FB3008E56E1 /* statuseffect.h */,
- 92037A1A0ED2037300D3712D /* particleemitterprop.h */,
- 92037A1B0ED2037300D3712D /* text.cpp */,
- 92037A1C0ED2037300D3712D /* text.h */,
- 92037A1D0ED2037300D3712D /* textmanager.cpp */,
- 92037A1E0ED2037300D3712D /* textmanager.h */,
- 922CD95D0E3D01080074C50E /* shopitem.cpp */,
- 922CD95E0E3D01080074C50E /* shopitem.h */,
- 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */,
- 926F9CF70DB005FA00AACD26 /* itemshortcut.h */,
- 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */,
- 92024D2B0CF1BD9E006B55CB /* keyboardconfig.h */,
- 92024D2C0CF1BD9E006B55CB /* vector.h */,
- 924A39E80C0784280066885E /* animationparticle.cpp */,
- 924A39E90C0784280066885E /* animationparticle.h */,
- 924A39EA0C0784280066885E /* imageparticle.cpp */,
- 924A39EB0C0784280066885E /* imageparticle.h */,
- 924A39EC0C0784280066885E /* particle.cpp */,
- 924A39ED0C0784280066885E /* particle.h */,
- 924A39EE0C0784280066885E /* particleemitter.cpp */,
- 924A39EF0C0784280066885E /* particleemitter.h */,
- 924A39F00C0784280066885E /* textparticle.cpp */,
- 924A39F10C0784280066885E /* textparticle.h */,
- 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */,
- 92BC3ECB0BAEE55A000DAB7F /* animatedsprite.h */,
- 92BC3ECC0BAEE55A000DAB7F /* being.cpp */,
- 92BC3ECD0BAEE55A000DAB7F /* being.h */,
- 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */,
- 92BC3ECF0BAEE55A000DAB7F /* beingmanager.h */,
- 92BC3ED10BAEE55A000DAB7F /* configlistener.h */,
- 92BC3ED20BAEE55A000DAB7F /* configuration.cpp */,
- 92BC3ED30BAEE55A000DAB7F /* configuration.h */,
- 92BC3EE70BAEE55A000DAB7F /* equipment.h */,
- 92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */,
- 92BC3EEB0BAEE55A000DAB7F /* flooritemmanager.h */,
- 92BC3EEC0BAEE55A000DAB7F /* game.cpp */,
- 92BC3EED0BAEE55A000DAB7F /* game.h */,
- 92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */,
- 92BC3EEF0BAEE55A000DAB7F /* graphics.h */,
- 92BC3EF00BAEE55A000DAB7F /* gui */,
- 92BC3F6C0BAEE55B000DAB7F /* guichanfwd.h */,
- 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */,
- 92BC3F6E0BAEE55B000DAB7F /* inventory.h */,
- 92BC3F6F0BAEE55B000DAB7F /* item.cpp */,
- 92BC3F700BAEE55B000DAB7F /* item.h */,
- 92BC3F710BAEE55B000DAB7F /* joystick.cpp */,
- 92BC3F720BAEE55B000DAB7F /* joystick.h */,
- 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */,
- 92BC3F740BAEE55B000DAB7F /* localplayer.h */,
- 92BC3F760BAEE55B000DAB7F /* log.cpp */,
- 92BC3F770BAEE55B000DAB7F /* log.h */,
- 92BC3F790BAEE55B000DAB7F /* main.cpp */,
- 92BC3F7A0BAEE55B000DAB7F /* main.h */,
- 92BC3F7C0BAEE55B000DAB7F /* map.cpp */,
- 92BC3F7D0BAEE55B000DAB7F /* map.h */,
- 92BC3F7E0BAEE55B000DAB7F /* monster.cpp */,
- 92BC3F7F0BAEE55B000DAB7F /* monster.h */,
- 92BC3F800BAEE55B000DAB7F /* net */,
- 92BC3FA50BAEE55B000DAB7F /* npc.cpp */,
- 92BC3FA60BAEE55B000DAB7F /* npc.h */,
- 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */,
- 92BC3FA80BAEE55B000DAB7F /* openglgraphics.h */,
- 92BC3FBA0BAEE55B000DAB7F /* player.cpp */,
- 92BC3FBB0BAEE55B000DAB7F /* player.h */,
- 92BC3FBC0BAEE55B000DAB7F /* properties.h */,
- 92BC3FBD0BAEE55B000DAB7F /* resources */,
- 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */,
- 92BC3FE90BAEE55B000DAB7F /* simpleanimation.h */,
- 92BC3FEA0BAEE55B000DAB7F /* sound.cpp */,
- 92BC3FEB0BAEE55B000DAB7F /* sound.h */,
- 92BC3FEC0BAEE55B000DAB7F /* sprite.h */,
- 92BC3FED0BAEE55B000DAB7F /* tileset.h */,
- 92BC3FEE0BAEE55B000DAB7F /* utils */,
- );
- name = Sources;
- sourceTree = "<group>";
- };
- 20286C2CFDCF999611CA2CEA /* Resources */ = {
- isa = PBXGroup;
- children = (
- 92EA98B30FC5CB17003DC005 /* SDLMain.nib */,
- 9273BDFD0EF33E1A008E56E1 /* AUTHORS */,
- 9273BDFE0EF33E1A008E56E1 /* README */,
- 9273BDFB0EF33DFD008E56E1 /* COPYING */,
- 924A3E590C085ED70066885E /* data */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 20286C32FDCF999611CA2CEA /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 922895BF11F6677F00AE53BB /* libiconv.2.dylib */,
- 922895C011F6677F00AE53BB /* libSDL-1.2.0.dylib */,
- 922895B411F665A200AE53BB /* libintl.8.dylib */,
- 922895B511F665A200AE53BB /* libphysfs.1.dylib */,
- 922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */,
- 926A29790F23C155005D6466 /* SDL_ttf.framework */,
- 9294DAA00C17E73200FCEDE9 /* libpng.framework */,
- 92BC40E80BAEF57D000DAB7F /* Cocoa.framework */,
- 92BC40D80BAEEED3000DAB7F /* IOKit.framework */,
- 92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */,
- 92BC408E0BAEE818000DAB7F /* SDL_image.framework */,
- 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */,
- 92BC40900BAEE818000DAB7F /* SDL_net.framework */,
- 92BC40910BAEE818000DAB7F /* SDL.framework */,
- 20286C33FDCF999611CA2CEA /* Carbon.framework */,
- 926857AB11F15A9300A28C33 /* guichan.framework */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- 5048396909E3304600765E4B /* Configuration Files */ = {
- isa = PBXGroup;
- children = (
- 92037A190ED2035A00D3712D /* SDLMain.h */,
- 92BC40E50BAEF54B000DAB7F /* SDLMain.m */,
- );
- name = "Configuration Files";
- sourceTree = "<group>";
- };
- 924A3A0F0C07A60B0066885E /* widgets */ = {
- isa = PBXGroup;
- children = (
- 9268567811F1431300A28C33 /* avatarlistbox.cpp */,
- 9268567911F1431300A28C33 /* avatarlistbox.h */,
- 9268567A11F1431300A28C33 /* emoteshortcutcontainer.cpp */,
- 9268567B11F1431300A28C33 /* emoteshortcutcontainer.h */,
- 9268567C11F1431300A28C33 /* flowcontainer.cpp */,
- 9268567D11F1431300A28C33 /* flowcontainer.h */,
- 9268567E11F1431300A28C33 /* itemcontainer.cpp */,
- 9268567F11F1431300A28C33 /* itemcontainer.h */,
- 9268568011F1431300A28C33 /* itemlinkhandler.cpp */,
- 9268568111F1431300A28C33 /* itemlinkhandler.h */,
- 9268568211F1431300A28C33 /* itemshortcutcontainer.cpp */,
- 9268568311F1431300A28C33 /* itemshortcutcontainer.h */,
- 9268568411F1431300A28C33 /* linkhandler.h */,
- 9268568511F1431300A28C33 /* playerbox.cpp */,
- 9268568611F1431300A28C33 /* playerbox.h */,
- 9268568711F1431300A28C33 /* progressindicator.cpp */,
- 9268568811F1431300A28C33 /* progressindicator.h */,
- 9268568911F1431300A28C33 /* setuptab.cpp */,
- 9268568A11F1431300A28C33 /* setuptab.h */,
- 9268568B11F1431300A28C33 /* shopitems.cpp */,
- 9268568C11F1431300A28C33 /* shopitems.h */,
- 9268568D11F1431300A28C33 /* shoplistbox.cpp */,
- 9268568E11F1431300A28C33 /* shoplistbox.h */,
- 9268568F11F1431300A28C33 /* shortcutcontainer.cpp */,
- 9268569011F1431300A28C33 /* shortcutcontainer.h */,
- 9268569111F1431300A28C33 /* table.cpp */,
- 9268569211F1431300A28C33 /* table.h */,
- 9268569311F1431300A28C33 /* tablemodel.cpp */,
- 9268569411F1431300A28C33 /* tablemodel.h */,
- 9268569511F1431300A28C33 /* vertcontainer.cpp */,
- 9268569611F1431300A28C33 /* vertcontainer.h */,
- 92A245C20F93626900B7719B /* desktop.cpp */,
- 92A245C30F93626900B7719B /* desktop.h */,
- 92A244B50F935FB400B7719B /* container.cpp */,
- 92A244B60F935FB400B7719B /* container.h */,
- 92C115FD0F8EC0150048CA8D /* textpreview.cpp */,
- 92C115FE0F8EC0150048CA8D /* textpreview.h */,
- 92C115F50F8EBFDD0048CA8D /* dropdown.cpp */,
- 92C115F60F8EBFDD0048CA8D /* dropdown.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 */,
- 926A29470F23BD88005D6466 /* tab.h */,
- 926A29480F23BD88005D6466 /* tabbedarea.cpp */,
- 926A29490F23BD88005D6466 /* tabbedarea.h */,
- 924A3A100C07A60B0066885E /* resizegrip.cpp */,
- 924A3A110C07A60B0066885E /* resizegrip.h */,
- );
- path = widgets;
- sourceTree = "<group>";
- };
- 924A3E590C085ED70066885E /* data */ = {
- isa = PBXGroup;
- children = (
- 926A29970F23C97C005D6466 /* fonts */,
- 924A3E5C0C085ED70066885E /* graphics */,
- 924A40090C085ED80066885E /* help */,
- 924A40140C085ED80066885E /* icons */,
- 924A401C0C085ED80066885E /* items.xsd */,
- );
- path = data;
- sourceTree = "<group>";
- };
- 924A3E5C0C085ED70066885E /* graphics */ = {
- isa = PBXGroup;
- children = (
- 92C85CF211F28D2300AB20CA /* sprites */,
- 924A3E5E0C085ED70066885E /* gui */,
- 924A3E900C085ED70066885E /* images */,
- );
- path = graphics;
- sourceTree = "<group>";
- };
- 924A3E5E0C085ED70066885E /* gui */ = {
- isa = PBXGroup;
- children = (
- 926855E711F141D500A28C33 /* colors.xml */,
- 926855E811F141D500A28C33 /* progress-indicator.png */,
- 926855E911F141D500A28C33 /* radioin_highlight.png */,
- 926855EA11F141D500A28C33 /* radioout_highlight.png */,
- 926855EB11F141D500A28C33 /* slider_hilight.png */,
- 926855EC11F141D500A28C33 /* tab_hilight.png */,
- 926855ED11F141D500A28C33 /* vscroll_highlight.png */,
- 926855EE11F141D500A28C33 /* window.xml */,
- 92C637800FC574B500EE8D8D /* window.png */,
- 92C116010F8EC0590048CA8D /* circle-gray.png */,
- 92C116020F8EC0590048CA8D /* circle-green.png */,
- 92C116070F8EC0590048CA8D /* speechbubble.xml */,
- 92C116080F8EC0590048CA8D /* sticky_button.png */,
- 928B50E40F2FB5430011C755 /* bubble.png */,
- 926A297E0F23C18E005D6466 /* tab.png */,
- 926A297F0F23C18E005D6466 /* tabselected.png */,
- 92024D5B0CF1BE5C006B55CB /* close_button.png */,
- 92024D5D0CF1BE5C006B55CB /* unknown-item.png */,
- 92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */,
- 924A3E620C085ED70066885E /* button.png */,
- 924A3E630C085ED70066885E /* button_disabled.png */,
- 924A3E640C085ED70066885E /* buttonhi.png */,
- 924A3E650C085ED70066885E /* buttonpress.png */,
- 924A3E660C085ED70066885E /* checkbox.png */,
- 924A3E680C085ED70066885E /* deepbox.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 */,
- 924A3E780C085ED70066885E /* mouse.png */,
- 924A3E790C085ED70066885E /* radioin.png */,
- 924A3E7A0C085ED70066885E /* radioout.png */,
- 924A3E7B0C085ED70066885E /* resize.png */,
- 924A3E7E0C085ED70066885E /* selection.png */,
- 924A3E7F0C085ED70066885E /* slider.png */,
- 924A3E800C085ED70066885E /* target-cursor-blue-l.png */,
- 924A3E810C085ED70066885E /* target-cursor-blue-m.png */,
- 924A3E820C085ED70066885E /* target-cursor-blue-s.png */,
- 924A3E830C085ED70066885E /* target-cursor-red-l.png */,
- 924A3E840C085ED70066885E /* target-cursor-red-m.png */,
- 924A3E850C085ED70066885E /* target-cursor-red-s.png */,
- 924A3E880C085ED70066885E /* vscroll_down_default.png */,
- 924A3E890C085ED70066885E /* vscroll_down_highlight.png */,
- 924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */,
- 924A3E8B0C085ED70066885E /* vscroll_grey.png */,
- 924A3E8D0C085ED70066885E /* vscroll_up_default.png */,
- 924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */,
- 924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */,
- );
- path = gui;
- sourceTree = "<group>";
- };
- 924A3E900C085ED70066885E /* images */ = {
- isa = PBXGroup;
- children = (
- 924A3E9A0C085ED70066885E /* login_wallpaper.png */,
- );
- path = images;
- sourceTree = "<group>";
- };
- 924A40090C085ED80066885E /* help */ = {
- isa = PBXGroup;
- children = (
- 926A29840F23C1C8005D6466 /* windows.txt */,
- 924A400A0C085ED80066885E /* about.txt */,
- 924A400B0C085ED80066885E /* changes.txt */,
- 924A400D0C085ED80066885E /* commands.txt */,
- 924A400E0C085ED80066885E /* header.txt */,
- 924A400F0C085ED80066885E /* index.txt */,
- 924A40110C085ED80066885E /* skills.txt */,
- 924A40120C085ED80066885E /* support.txt */,
- 924A40130C085ED80066885E /* team.txt */,
- );
- path = help;
- sourceTree = "<group>";
- };
- 924A40140C085ED80066885E /* icons */ = {
- isa = PBXGroup;
- children = (
- 926855FF11F141FD00A28C33 /* mana.icns */,
- );
- path = icons;
- sourceTree = "<group>";
- };
- 926856BF11F1433E00A28C33 /* manaserv */ = {
- isa = PBXGroup;
- children = (
- 926856C011F1433E00A28C33 /* adminhandler.cpp */,
- 926856C111F1433E00A28C33 /* adminhandler.h */,
- 926856C211F1433E00A28C33 /* beinghandler.cpp */,
- 926856C311F1433E00A28C33 /* beinghandler.h */,
- 926856C411F1433E00A28C33 /* buysellhandler.cpp */,
- 926856C511F1433E00A28C33 /* buysellhandler.h */,
- 926856C611F1433E00A28C33 /* charhandler.cpp */,
- 926856C711F1433E00A28C33 /* charhandler.h */,
- 926856C811F1433E00A28C33 /* chathandler.cpp */,
- 926856C911F1433E00A28C33 /* chathandler.h */,
- 926856CA11F1433E00A28C33 /* connection.cpp */,
- 926856CB11F1433E00A28C33 /* connection.h */,
- 926856CC11F1433E00A28C33 /* effecthandler.cpp */,
- 926856CD11F1433E00A28C33 /* effecthandler.h */,
- 926856CE11F1433E00A28C33 /* gamehandler.cpp */,
- 926856CF11F1433E00A28C33 /* gamehandler.h */,
- 926856D011F1433E00A28C33 /* generalhandler.cpp */,
- 926856D111F1433E00A28C33 /* generalhandler.h */,
- 926856D211F1433E00A28C33 /* guildhandler.cpp */,
- 926856D311F1433E00A28C33 /* guildhandler.h */,
- 926856D411F1433E00A28C33 /* internal.cpp */,
- 926856D511F1433E00A28C33 /* internal.h */,
- 926856D611F1433E00A28C33 /* inventoryhandler.cpp */,
- 926856D711F1433E00A28C33 /* inventoryhandler.h */,
- 926856D811F1433E00A28C33 /* itemhandler.cpp */,
- 926856D911F1433E00A28C33 /* itemhandler.h */,
- 926856DA11F1433E00A28C33 /* loginhandler.cpp */,
- 926856DB11F1433E00A28C33 /* loginhandler.h */,
- 926856DC11F1433E00A28C33 /* messagehandler.cpp */,
- 926856DD11F1433E00A28C33 /* messagehandler.h */,
- 926856DE11F1433E00A28C33 /* messagein.cpp */,
- 926856DF11F1433E00A28C33 /* messagein.h */,
- 926856E011F1433E00A28C33 /* messageout.cpp */,
- 926856E111F1433E00A28C33 /* messageout.h */,
- 926856E211F1433E00A28C33 /* network.cpp */,
- 926856E311F1433E00A28C33 /* network.h */,
- 926856E411F1433E00A28C33 /* npchandler.cpp */,
- 926856E511F1433E00A28C33 /* npchandler.h */,
- 926856E611F1433E00A28C33 /* partyhandler.cpp */,
- 926856E711F1433E00A28C33 /* partyhandler.h */,
- 926856E811F1433E00A28C33 /* playerhandler.cpp */,
- 926856E911F1433E00A28C33 /* playerhandler.h */,
- 926856EA11F1433E00A28C33 /* protocol.h */,
- 926856EB11F1433E00A28C33 /* specialhandler.cpp */,
- 926856EC11F1433E00A28C33 /* specialhandler.h */,
- 926856ED11F1433E00A28C33 /* stats.cpp */,
- 926856EE11F1433E00A28C33 /* stats.h */,
- 926856EF11F1433E00A28C33 /* tradehandler.cpp */,
- 926856F011F1433E00A28C33 /* tradehandler.h */,
- );
- path = manaserv;
- sourceTree = "<group>";
- };
- 926856F111F1433E00A28C33 /* tmwa */ = {
- isa = PBXGroup;
- children = (
- 926856F211F1433E00A28C33 /* adminhandler.cpp */,
- 926856F311F1433E00A28C33 /* adminhandler.h */,
- 926856F411F1433E00A28C33 /* beinghandler.cpp */,
- 926856F511F1433E00A28C33 /* beinghandler.h */,
- 926856F611F1433E00A28C33 /* buysellhandler.cpp */,
- 926856F711F1433E00A28C33 /* buysellhandler.h */,
- 926856F811F1433E00A28C33 /* charserverhandler.cpp */,
- 926856F911F1433E00A28C33 /* charserverhandler.h */,
- 926856FA11F1433F00A28C33 /* chathandler.cpp */,
- 926856FB11F1433F00A28C33 /* chathandler.h */,
- 926856FC11F1433F00A28C33 /* gamehandler.cpp */,
- 926856FD11F1433F00A28C33 /* gamehandler.h */,
- 926856FE11F1433F00A28C33 /* generalhandler.cpp */,
- 926856FF11F1433F00A28C33 /* generalhandler.h */,
- 9268570011F1433F00A28C33 /* gui */,
- 9268570511F1433F00A28C33 /* guildhandler.cpp */,
- 9268570611F1433F00A28C33 /* guildhandler.h */,
- 9268570711F1433F00A28C33 /* inventoryhandler.cpp */,
- 9268570811F1433F00A28C33 /* inventoryhandler.h */,
- 9268570911F1433F00A28C33 /* itemhandler.cpp */,
- 9268570A11F1433F00A28C33 /* itemhandler.h */,
- 9268570B11F1433F00A28C33 /* loginhandler.cpp */,
- 9268570C11F1433F00A28C33 /* loginhandler.h */,
- 9268570D11F1433F00A28C33 /* messagehandler.cpp */,
- 9268570E11F1433F00A28C33 /* messagehandler.h */,
- 9268570F11F1433F00A28C33 /* messagein.cpp */,
- 9268571011F1433F00A28C33 /* messagein.h */,
- 9268571111F1433F00A28C33 /* messageout.cpp */,
- 9268571211F1433F00A28C33 /* messageout.h */,
- 9268571311F1433F00A28C33 /* network.cpp */,
- 9268571411F1433F00A28C33 /* network.h */,
- 9268571511F1433F00A28C33 /* npchandler.cpp */,
- 9268571611F1433F00A28C33 /* npchandler.h */,
- 9268571711F1433F00A28C33 /* partyhandler.cpp */,
- 9268571811F1433F00A28C33 /* partyhandler.h */,
- 9268571911F1433F00A28C33 /* playerhandler.cpp */,
- 9268571A11F1433F00A28C33 /* playerhandler.h */,
- 9268571B11F1433F00A28C33 /* protocol.h */,
- 9268571C11F1433F00A28C33 /* specialhandler.cpp */,
- 9268571D11F1433F00A28C33 /* specialhandler.h */,
- 9268571E11F1433F00A28C33 /* token.h */,
- 9268571F11F1433F00A28C33 /* tradehandler.cpp */,
- 9268572011F1433F00A28C33 /* tradehandler.h */,
- );
- path = tmwa;
- sourceTree = "<group>";
- };
- 9268570011F1433F00A28C33 /* gui */ = {
- isa = PBXGroup;
- children = (
- 9268570111F1433F00A28C33 /* guildtab.cpp */,
- 9268570211F1433F00A28C33 /* guildtab.h */,
- 9268570311F1433F00A28C33 /* partytab.cpp */,
- 9268570411F1433F00A28C33 /* partytab.h */,
- );
- path = gui;
- sourceTree = "<group>";
- };
- 926A29970F23C97C005D6466 /* fonts */ = {
- isa = PBXGroup;
- children = (
- 92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */,
- 926A29980F23C988005D6466 /* dejavusans.ttf */,
- );
- name = fonts;
- sourceTree = "<group>";
- };
- 92BC3EF00BAEE55A000DAB7F /* gui */ = {
- isa = PBXGroup;
- children = (
- 9268565811F142F100A28C33 /* beingpopup.cpp */,
- 9268565911F142F100A28C33 /* beingpopup.h */,
- 9268565A11F142F100A28C33 /* connectiondialog.cpp */,
- 9268565B11F142F100A28C33 /* connectiondialog.h */,
- 9268565C11F142F100A28C33 /* socialwindow.cpp */,
- 9268565D11F142F100A28C33 /* socialwindow.h */,
- 9268565E11F142F100A28C33 /* specialswindow.cpp */,
- 9268565F11F142F100A28C33 /* specialswindow.h */,
- 9268566011F142F100A28C33 /* textpopup.cpp */,
- 9268566111F142F100A28C33 /* textpopup.h */,
- 9268566211F142F100A28C33 /* theme.cpp */,
- 9268566311F142F100A28C33 /* theme.h */,
- 9268566411F142F100A28C33 /* userpalette.cpp */,
- 9268566511F142F100A28C33 /* userpalette.h */,
- 9268566611F142F100A28C33 /* worldselectdialog.cpp */,
- 9268566711F142F100A28C33 /* worldselectdialog.h */,
- 92C636C40FC5670700EE8D8D /* charselectdialog.cpp */,
- 92C636C50FC5670700EE8D8D /* charselectdialog.h */,
- 92C636C60FC5670700EE8D8D /* confirmdialog.cpp */,
- 92C636C70FC5670700EE8D8D /* confirmdialog.h */,
- 92C636C80FC5670700EE8D8D /* emotepopup.cpp */,
- 92C636C90FC5670700EE8D8D /* emotepopup.h */,
- 92C636CA0FC5670700EE8D8D /* itemamount.cpp */,
- 92C636CB0FC5670700EE8D8D /* itemamount.h */,
- 92C636CC0FC5670700EE8D8D /* npcdialog.cpp */,
- 92C636CD0FC5670700EE8D8D /* npcdialog.h */,
- 92C636CE0FC5670700EE8D8D /* okdialog.cpp */,
- 92C636CF0FC5670700EE8D8D /* okdialog.h */,
- 92C636D00FC5670700EE8D8D /* outfitwindow.cpp */,
- 92C636D10FC5670700EE8D8D /* outfitwindow.h */,
- 92C636D50FC5670700EE8D8D /* windowmenu.cpp */,
- 92C636D60FC5670700EE8D8D /* windowmenu.h */,
- 92C119830F8ED80E0048CA8D /* serverdialog.cpp */,
- 92C119840F8ED80E0048CA8D /* serverdialog.h */,
- 92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */,
- 92C1191C0F8ED79A0048CA8D /* changeemaildialog.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 */,
- 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */,
- 92C115C80F8EBECE0048CA8D /* charcreatedialog.h */,
- 92C115AD0F8EBE450048CA8D /* palette.cpp */,
- 92C115AE0F8EBE450048CA8D /* palette.h */,
- 92C115B10F8EBE450048CA8D /* recorder.cpp */,
- 92C115B20F8EBE450048CA8D /* recorder.h */,
- 92C115B50F8EBE450048CA8D /* speechbubble.cpp */,
- 92C115B60F8EBE450048CA8D /* speechbubble.h */,
- 92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */,
- 92C115420F8EBCB70048CA8D /* shortcutwindow.h */,
- 92C115100F8EBB550048CA8D /* itempopup.cpp */,
- 92C115110F8EBB550048CA8D /* itempopup.h */,
- 926A29520F23BD9E005D6466 /* sdlinput.cpp */,
- 926A29530F23BD9E005D6466 /* sdlinput.h */,
- 926A29540F23BD9E005D6466 /* truetypefont.cpp */,
- 926A29550F23BD9E005D6466 /* truetypefont.h */,
- 92FD19B30DDCE53400D14E5D /* setup_players.cpp */,
- 92FD19B40DDCE53400D14E5D /* setup_players.h */,
- 92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */,
- 92024D370CF1BDF7006B55CB /* setup_keyboard.h */,
- 924A3A0F0C07A60B0066885E /* widgets */,
- 92BC3EF90BAEE55A000DAB7F /* buy.cpp */,
- 92BC3EFA0BAEE55A000DAB7F /* buy.h */,
- 92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */,
- 92BC3EFC0BAEE55A000DAB7F /* buysell.h */,
- 92BC3F030BAEE55A000DAB7F /* chat.cpp */,
- 92BC3F040BAEE55A000DAB7F /* chat.h */,
- 92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */,
- 92BC3F0E0BAEE55A000DAB7F /* debugwindow.h */,
- 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */,
- 92BC3F100BAEE55A000DAB7F /* equipmentwindow.h */,
- 92BC3F110BAEE55A000DAB7F /* focushandler.cpp */,
- 92BC3F120BAEE55A000DAB7F /* focushandler.h */,
- 92BC3F150BAEE55A000DAB7F /* gui.cpp */,
- 92BC3F160BAEE55A000DAB7F /* gui.h */,
- 92BC3F190BAEE55A000DAB7F /* help.cpp */,
- 92BC3F1A0BAEE55A000DAB7F /* help.h */,
- 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */,
- 92BC3F1E0BAEE55A000DAB7F /* inventorywindow.h */,
- 92BC3F260BAEE55A000DAB7F /* login.cpp */,
- 92BC3F270BAEE55A000DAB7F /* login.h */,
- 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */,
- 92BC3F2B0BAEE55A000DAB7F /* minimap.h */,
- 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */,
- 92BC3F2D0BAEE55A000DAB7F /* ministatus.h */,
- 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */,
- 92BC3F3B0BAEE55A000DAB7F /* popupmenu.h */,
- 92BC3F400BAEE55A000DAB7F /* register.cpp */,
- 92BC3F410BAEE55A000DAB7F /* register.h */,
- 92BC3F450BAEE55A000DAB7F /* sell.cpp */,
- 92BC3F460BAEE55A000DAB7F /* sell.h */,
- 92BC3F470BAEE55A000DAB7F /* setup.cpp */,
- 92BC3F480BAEE55A000DAB7F /* setup.h */,
- 92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */,
- 92BC3F4A0BAEE55A000DAB7F /* setup_audio.h */,
- 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */,
- 92BC3F4C0BAEE55A000DAB7F /* setup_joystick.h */,
- 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */,
- 92BC3F4E0BAEE55A000DAB7F /* setup_video.h */,
- 92BC3F600BAEE55B000DAB7F /* trade.cpp */,
- 92BC3F610BAEE55B000DAB7F /* trade.h */,
- 92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */,
- 92BC3F630BAEE55B000DAB7F /* updatewindow.h */,
- 92BC3F660BAEE55B000DAB7F /* viewport.cpp */,
- 92BC3F670BAEE55B000DAB7F /* viewport.h */,
- );
- name = gui;
- path = src/gui;
- sourceTree = "<group>";
- };
- 92BC3F800BAEE55B000DAB7F /* net */ = {
- isa = PBXGroup;
- children = (
- 926856BF11F1433E00A28C33 /* manaserv */,
- 926856F111F1433E00A28C33 /* tmwa */,
- 926856B511F1433300A28C33 /* charhandler.cpp */,
- 926856B611F1433300A28C33 /* download.cpp */,
- 926856B711F1433300A28C33 /* download.h */,
- 926856B811F1433300A28C33 /* gamehandler.h */,
- 926856B911F1433300A28C33 /* specialhandler.h */,
- 926856BA11F1433300A28C33 /* worldinfo.h */,
- 92C636EA0FC5677500EE8D8D /* adminhandler.h */,
- 92C636EB0FC5677500EE8D8D /* charhandler.h */,
- 92C636EC0FC5677500EE8D8D /* generalhandler.h */,
- 92C636ED0FC5677500EE8D8D /* guildhandler.h */,
- 92C636EE0FC5677500EE8D8D /* logindata.h */,
- 92C636F10FC5677500EE8D8D /* partyhandler.h */,
- 92C636F20FC5677500EE8D8D /* serverinfo.h */,
- 92C115570F8EBD490048CA8D /* net.cpp */,
- 92C115580F8EBD490048CA8D /* net.h */,
- 92BC3F880BAEE55B000DAB7F /* chathandler.h */,
- 92BC3F8C0BAEE55B000DAB7F /* inventoryhandler.h */,
- 92BC3F900BAEE55B000DAB7F /* loginhandler.h */,
- 92BC3F940BAEE55B000DAB7F /* messagehandler.h */,
- 92BC3F950BAEE55B000DAB7F /* messagein.cpp */,
- 92BC3F960BAEE55B000DAB7F /* messagein.h */,
- 92BC3F970BAEE55B000DAB7F /* messageout.cpp */,
- 92BC3F980BAEE55B000DAB7F /* messageout.h */,
- 92BC3F9C0BAEE55B000DAB7F /* npchandler.h */,
- 92BC3F9E0BAEE55B000DAB7F /* playerhandler.h */,
- 92BC3FA40BAEE55B000DAB7F /* tradehandler.h */,
- );
- name = net;
- path = src/net;
- sourceTree = "<group>";
- };
- 92BC3FBD0BAEE55B000DAB7F /* resources */ = {
- isa = PBXGroup;
- children = (
- 9268577D11F1435200A28C33 /* ambientlayer.cpp */,
- 9268577E11F1435200A28C33 /* ambientlayer.h */,
- 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 */,
- 925350010BC12A3200115FD5 /* imageset.cpp */,
- 925350020BC12A3200115FD5 /* imageset.h */,
- 92BC3FBE0BAEE55B000DAB7F /* action.cpp */,
- 92BC3FBF0BAEE55B000DAB7F /* action.h */,
- 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */,
- 92BC3FC10BAEE55B000DAB7F /* ambientoverlay.h */,
- 92BC3FC20BAEE55B000DAB7F /* animation.cpp */,
- 92BC3FC30BAEE55B000DAB7F /* animation.h */,
- 92BC3FC90BAEE55B000DAB7F /* image.cpp */,
- 92BC3FCA0BAEE55B000DAB7F /* image.h */,
- 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */,
- 92BC3FCC0BAEE55B000DAB7F /* imagewriter.h */,
- 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */,
- 92BC3FCE0BAEE55B000DAB7F /* itemdb.h */,
- 92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */,
- 92BC3FD00BAEE55B000DAB7F /* iteminfo.h */,
- 92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */,
- 92BC3FD20BAEE55B000DAB7F /* mapreader.h */,
- 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */,
- 92BC3FD40BAEE55B000DAB7F /* monsterdb.h */,
- 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */,
- 92BC3FD60BAEE55B000DAB7F /* monsterinfo.h */,
- 92BC3FD70BAEE55B000DAB7F /* music.cpp */,
- 92BC3FD80BAEE55B000DAB7F /* music.h */,
- 92BC3FDB0BAEE55B000DAB7F /* resource.cpp */,
- 92BC3FDC0BAEE55B000DAB7F /* resource.h */,
- 92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */,
- 92BC3FDE0BAEE55B000DAB7F /* resourcemanager.h */,
- 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */,
- 92BC3FE20BAEE55B000DAB7F /* soundeffect.h */,
- 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */,
- 92BC3FE40BAEE55B000DAB7F /* spritedef.h */,
- );
- name = resources;
- path = src/resources;
- sourceTree = "<group>";
- };
- 92BC3FEE0BAEE55B000DAB7F /* utils */ = {
- isa = PBXGroup;
- children = (
- 9268578111F1435F00A28C33 /* copynpaste.cpp */,
- 9268578211F1435F00A28C33 /* copynpaste.h */,
- 9268578311F1435F00A28C33 /* mkdir.cpp */,
- 9268578411F1435F00A28C33 /* mkdir.h */,
- 9268578511F1435F00A28C33 /* specialfolder.cpp */,
- 9268578611F1435F00A28C33 /* specialfolder.h */,
- 92C636AF0FC5605300EE8D8D /* mathutils.h */,
- 92C1198E0F8ED85E0048CA8D /* sha256.cpp */,
- 92C1198F0F8ED85E0048CA8D /* sha256.h */,
- 92C115E80F8EBFA60048CA8D /* stringutils.cpp */,
- 92C115E90F8EBFA60048CA8D /* stringutils.h */,
- 926A295A0F23BDB1005D6466 /* gettext.h */,
- 926A295B0F23BDB1005D6466 /* mutex.h */,
- 92BC3FEF0BAEE55B000DAB7F /* base64.cpp */,
- 92BC3FF00BAEE55B000DAB7F /* base64.h */,
- 92BC3FF10BAEE55B000DAB7F /* dtor.h */,
- 92BC3FF40BAEE55B000DAB7F /* xml.cpp */,
- 92BC3FF50BAEE55B000DAB7F /* xml.h */,
- );
- name = utils;
- path = src/utils;
- sourceTree = "<group>";
- };
- 92C85CF211F28D2300AB20CA /* sprites */ = {
- isa = PBXGroup;
- children = (
- 92C85CF411F28D2300AB20CA /* error.png */,
- 92C85CF511F28D2300AB20CA /* error.xml */,
- );
- path = sprites;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 8D0C4E890486CD37000505A6 /* themanaworld */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld" */;
- buildPhases = (
- 8D0C4E8C0486CD37000505A6 /* Resources */,
- 8D0C4E8F0486CD37000505A6 /* Sources */,
- 8D0C4E910486CD37000505A6 /* Frameworks */,
- 924A3A520C085C190066885E /* Copy Data Files */,
- 924A3E540C085CAF0066885E /* Copy GUI Files */,
- 924A40880C085FBD0066885E /* Copy Image Files */,
- 924A42000C0861C70066885E /* Copy Help Files */,
- 92EEA0090D2E20D100DDE300 /* Copy Frameworks */,
- 9273BE3C0EF34050008E56E1 /* Copy Music Files */,
- 926A29AA0F23CA6D005D6466 /* Copy Font Files */,
- 922890C411F661D000AE53BB /* ShellScript */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = themanaworld;
- productInstallPath = "$(HOME)/Applications";
- productName = themanaworld;
- productReference = 508344B209E5C41E0093A071 /* The Mana World.app */;
- productType = "com.apple.product-type.application";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 20286C28FDCF999611CA2CEA /* Project object */ = {
- isa = PBXProject;
- buildConfigurationList = C0E91AC908A95435008D54AB /* Build configuration list for PBXProject "mana" */;
- compatibilityVersion = "Xcode 3.0";
- hasScannedForEncodings = 1;
- mainGroup = 20286C29FDCF999611CA2CEA /* themanaworld */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 8D0C4E890486CD37000505A6 /* themanaworld */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 8D0C4E8C0486CD37000505A6 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 9273BDFC0EF33DFD008E56E1 /* COPYING in Resources */,
- 9273BDFF0EF33E1A008E56E1 /* AUTHORS in Resources */,
- 9273BE000EF33E1A008E56E1 /* README in Resources */,
- 92EA98B40FC5CB17003DC005 /* SDLMain.nib in Resources */,
- 9268560011F141FD00A28C33 /* mana.icns in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- 922890C411F661D000AE53BB /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "#app\ninstall_name_tool -change /opt/local/lib/libphysfs.1.dylib @executable_path/../Frameworks/libphysfs.1.dylib \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/MacOS/${PRODUCT_NAME}\"\ninstall_name_tool -change /opt/local/lib/libintl.8.dylib @executable_path/../Frameworks/libintl.8.dylib \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/MacOS/${PRODUCT_NAME}\"\ninstall_name_tool -change /opt/local/lib/libSDL_gfx.13.dylib @executable_path/../Frameworks/libSDL_gfx.13.dylib \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/MacOS/${PRODUCT_NAME}\"";
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 8D0C4E8F0486CD37000505A6 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 92BC3FF60BAEE55B000DAB7F /* animatedsprite.cpp in Sources */,
- 92BC3FF70BAEE55B000DAB7F /* being.cpp in Sources */,
- 92BC3FF80BAEE55B000DAB7F /* beingmanager.cpp in Sources */,
- 92BC3FFA0BAEE55B000DAB7F /* configuration.cpp in Sources */,
- 92BC40050BAEE55B000DAB7F /* flooritemmanager.cpp in Sources */,
- 92BC40060BAEE55B000DAB7F /* game.cpp in Sources */,
- 92BC40070BAEE55B000DAB7F /* graphics.cpp in Sources */,
- 92BC400C0BAEE55B000DAB7F /* buy.cpp in Sources */,
- 92BC400D0BAEE55B000DAB7F /* buysell.cpp in Sources */,
- 92BC40110BAEE55B000DAB7F /* chat.cpp in Sources */,
- 92BC40160BAEE55B000DAB7F /* debugwindow.cpp in Sources */,
- 92BC40170BAEE55B000DAB7F /* equipmentwindow.cpp in Sources */,
- 92BC40180BAEE55B000DAB7F /* focushandler.cpp in Sources */,
- 92BC401A0BAEE55B000DAB7F /* gui.cpp in Sources */,
- 92BC401C0BAEE55B000DAB7F /* help.cpp in Sources */,
- 92BC401E0BAEE55B000DAB7F /* inventorywindow.cpp in Sources */,
- 92BC40220BAEE55B000DAB7F /* login.cpp in Sources */,
- 92BC40240BAEE55B000DAB7F /* minimap.cpp in Sources */,
- 92BC40250BAEE55B000DAB7F /* ministatus.cpp in Sources */,
- 92BC402C0BAEE55B000DAB7F /* popupmenu.cpp in Sources */,
- 92BC402F0BAEE55B000DAB7F /* register.cpp in Sources */,
- 92BC40310BAEE55B000DAB7F /* sell.cpp in Sources */,
- 92BC40320BAEE55B000DAB7F /* setup.cpp in Sources */,
- 92BC40330BAEE55B000DAB7F /* setup_audio.cpp in Sources */,
- 92BC40340BAEE55B000DAB7F /* setup_joystick.cpp in Sources */,
- 92BC40350BAEE55B000DAB7F /* setup_video.cpp in Sources */,
- 92BC403E0BAEE55B000DAB7F /* trade.cpp in Sources */,
- 92BC403F0BAEE55B000DAB7F /* updatewindow.cpp in Sources */,
- 92BC40410BAEE55B000DAB7F /* viewport.cpp in Sources */,
- 92BC40440BAEE55B000DAB7F /* inventory.cpp in Sources */,
- 92BC40450BAEE55B000DAB7F /* item.cpp in Sources */,
- 92BC40460BAEE55B000DAB7F /* joystick.cpp in Sources */,
- 92BC40470BAEE55B000DAB7F /* localplayer.cpp in Sources */,
- 92BC40480BAEE55B000DAB7F /* log.cpp in Sources */,
- 92BC40490BAEE55B000DAB7F /* main.cpp in Sources */,
- 92BC404B0BAEE55B000DAB7F /* map.cpp in Sources */,
- 92BC404C0BAEE55B000DAB7F /* monster.cpp in Sources */,
- 92BC40570BAEE55B000DAB7F /* messagein.cpp in Sources */,
- 92BC40580BAEE55B000DAB7F /* messageout.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 */,
- 92BC40740BAEE55B000DAB7F /* image.cpp in Sources */,
- 92BC40750BAEE55B000DAB7F /* imagewriter.cpp in Sources */,
- 92BC40760BAEE55B000DAB7F /* itemdb.cpp in Sources */,
- 92BC40770BAEE55B000DAB7F /* iteminfo.cpp in Sources */,
- 92BC40780BAEE55B000DAB7F /* mapreader.cpp in Sources */,
- 92BC40790BAEE55B000DAB7F /* monsterdb.cpp in Sources */,
- 92BC407A0BAEE55B000DAB7F /* monsterinfo.cpp in Sources */,
- 92BC407B0BAEE55B000DAB7F /* music.cpp in Sources */,
- 92BC407D0BAEE55B000DAB7F /* resource.cpp in Sources */,
- 92BC407E0BAEE55B000DAB7F /* resourcemanager.cpp in Sources */,
- 92BC40800BAEE55B000DAB7F /* soundeffect.cpp in Sources */,
- 92BC40810BAEE55B000DAB7F /* spritedef.cpp in Sources */,
- 92BC40830BAEE55B000DAB7F /* simpleanimation.cpp in Sources */,
- 92BC40840BAEE55B000DAB7F /* sound.cpp in Sources */,
- 92BC40850BAEE55B000DAB7F /* base64.cpp in Sources */,
- 92BC40860BAEE55B000DAB7F /* xml.cpp in Sources */,
- 92BC40E60BAEF54B000DAB7F /* SDLMain.m in Sources */,
- 925350030BC12A3200115FD5 /* imageset.cpp in Sources */,
- 924A39F20C0784280066885E /* animationparticle.cpp in Sources */,
- 924A39F30C0784280066885E /* imageparticle.cpp in Sources */,
- 924A39F40C0784280066885E /* particle.cpp in Sources */,
- 924A39F50C0784280066885E /* particleemitter.cpp in Sources */,
- 924A39F60C0784280066885E /* textparticle.cpp in Sources */,
- 924A3A120C07A60B0066885E /* resizegrip.cpp in Sources */,
- 92024D2F0CF1BD9E006B55CB /* keyboardconfig.cpp in Sources */,
- 92024D3D0CF1BDF7006B55CB /* setup_keyboard.cpp in Sources */,
- 92024E760CF1DCF6006B55CB /* imageloader.cpp in Sources */,
- 92A4CC9E0D1C622E00CA28FB /* dye.cpp in Sources */,
- 926F9CF80DB005FA00AACD26 /* itemshortcut.cpp in Sources */,
- 92FD19BA0DDCE53400D14E5D /* setup_players.cpp in Sources */,
- 922CD9580E3D00900074C50E /* npcdb.cpp in Sources */,
- 922CD95F0E3D01080074C50E /* shopitem.cpp in Sources */,
- 92037A1F0ED2037300D3712D /* text.cpp in Sources */,
- 92037A200ED2037300D3712D /* textmanager.cpp in Sources */,
- 9273BE080EF33FB3008E56E1 /* particlecontainer.cpp in Sources */,
- 9273BE090EF33FB3008E56E1 /* statuseffect.cpp in Sources */,
- 926A294A0F23BD88005D6466 /* layout.cpp in Sources */,
- 926A294B0F23BD88005D6466 /* tab.cpp in Sources */,
- 926A294C0F23BD88005D6466 /* tabbedarea.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 */,
- 92C115360F8EBC450048CA8D /* browserbox.cpp in Sources */,
- 92C115370F8EBC450048CA8D /* windowcontainer.cpp in Sources */,
- 92C1153B0F8EBC730048CA8D /* chattab.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 */,
- 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 */,
- 92C115B90F8EBE450048CA8D /* recorder.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 */,
- 92C115EA0F8EBFA60048CA8D /* stringutils.cpp in Sources */,
- 92C115EE0F8EBFC20048CA8D /* channel.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 */,
- 92C636BB0FC5663000EE8D8D /* flooritem.cpp in Sources */,
- 92C636BC0FC5663000EE8D8D /* playerrelations.cpp in Sources */,
- 92C636BD0FC5663000EE8D8D /* rotationalparticle.cpp in Sources */,
- 92C636BE0FC5663000EE8D8D /* vector.cpp in Sources */,
- 92C636D70FC5670700EE8D8D /* charselectdialog.cpp in Sources */,
- 92C636D80FC5670700EE8D8D /* confirmdialog.cpp in Sources */,
- 92C636D90FC5670700EE8D8D /* emotepopup.cpp in Sources */,
- 92C636DA0FC5670700EE8D8D /* itemamount.cpp in Sources */,
- 92C636DB0FC5670700EE8D8D /* npcdialog.cpp in Sources */,
- 92C636DC0FC5670700EE8D8D /* okdialog.cpp in Sources */,
- 92C636DD0FC5670700EE8D8D /* outfitwindow.cpp in Sources */,
- 92C636DF0FC5670700EE8D8D /* windowmenu.cpp in Sources */,
- 9268565211F142D500A28C33 /* avatar.cpp in Sources */,
- 9268565311F142D500A28C33 /* client.cpp in Sources */,
- 9268565411F142D500A28C33 /* party.cpp in Sources */,
- 9268566811F142F100A28C33 /* beingpopup.cpp in Sources */,
- 9268566911F142F100A28C33 /* connectiondialog.cpp in Sources */,
- 9268566A11F142F100A28C33 /* socialwindow.cpp in Sources */,
- 9268566B11F142F100A28C33 /* specialswindow.cpp in Sources */,
- 9268566C11F142F100A28C33 /* textpopup.cpp in Sources */,
- 9268566D11F142F100A28C33 /* theme.cpp in Sources */,
- 9268566E11F142F100A28C33 /* userpalette.cpp in Sources */,
- 9268566F11F142F100A28C33 /* worldselectdialog.cpp in Sources */,
- 9268569711F1431300A28C33 /* avatarlistbox.cpp in Sources */,
- 9268569811F1431300A28C33 /* emoteshortcutcontainer.cpp in Sources */,
- 9268569911F1431300A28C33 /* flowcontainer.cpp in Sources */,
- 9268569A11F1431300A28C33 /* itemcontainer.cpp in Sources */,
- 9268569B11F1431300A28C33 /* itemlinkhandler.cpp in Sources */,
- 9268569C11F1431300A28C33 /* itemshortcutcontainer.cpp in Sources */,
- 9268569D11F1431300A28C33 /* playerbox.cpp in Sources */,
- 9268569E11F1431300A28C33 /* progressindicator.cpp in Sources */,
- 9268569F11F1431300A28C33 /* setuptab.cpp in Sources */,
- 926856A011F1431300A28C33 /* shopitems.cpp in Sources */,
- 926856A111F1431300A28C33 /* shoplistbox.cpp in Sources */,
- 926856A211F1431300A28C33 /* shortcutcontainer.cpp in Sources */,
- 926856A311F1431300A28C33 /* table.cpp in Sources */,
- 926856A411F1431300A28C33 /* tablemodel.cpp in Sources */,
- 926856A511F1431300A28C33 /* vertcontainer.cpp in Sources */,
- 926856BB11F1433300A28C33 /* charhandler.cpp in Sources */,
- 926856BC11F1433300A28C33 /* download.cpp in Sources */,
- 9268573911F1433F00A28C33 /* adminhandler.cpp in Sources */,
- 9268573A11F1433F00A28C33 /* beinghandler.cpp in Sources */,
- 9268573B11F1433F00A28C33 /* buysellhandler.cpp in Sources */,
- 9268573C11F1433F00A28C33 /* charserverhandler.cpp in Sources */,
- 9268573D11F1433F00A28C33 /* chathandler.cpp in Sources */,
- 9268573E11F1433F00A28C33 /* gamehandler.cpp in Sources */,
- 9268573F11F1433F00A28C33 /* generalhandler.cpp in Sources */,
- 9268574011F1433F00A28C33 /* guildtab.cpp in Sources */,
- 9268574111F1433F00A28C33 /* partytab.cpp in Sources */,
- 9268574211F1433F00A28C33 /* guildhandler.cpp in Sources */,
- 9268574311F1433F00A28C33 /* inventoryhandler.cpp in Sources */,
- 9268574411F1433F00A28C33 /* itemhandler.cpp in Sources */,
- 9268574511F1433F00A28C33 /* loginhandler.cpp in Sources */,
- 9268574611F1433F00A28C33 /* messagehandler.cpp in Sources */,
- 9268574711F1433F00A28C33 /* messagein.cpp in Sources */,
- 9268574811F1433F00A28C33 /* messageout.cpp in Sources */,
- 9268574911F1433F00A28C33 /* network.cpp in Sources */,
- 9268574A11F1433F00A28C33 /* npchandler.cpp in Sources */,
- 9268574B11F1433F00A28C33 /* partyhandler.cpp in Sources */,
- 9268574C11F1433F00A28C33 /* playerhandler.cpp in Sources */,
- 9268574D11F1433F00A28C33 /* specialhandler.cpp in Sources */,
- 9268574E11F1433F00A28C33 /* tradehandler.cpp in Sources */,
- 9268577F11F1435200A28C33 /* ambientlayer.cpp in Sources */,
- 9268578711F1435F00A28C33 /* copynpaste.cpp in Sources */,
- 9268578811F1435F00A28C33 /* mkdir.cpp in Sources */,
- 9268578911F1435F00A28C33 /* specialfolder.cpp in Sources */,
- 9268581311F15F3900A28C33 /* adminhandler.cpp in Sources */,
- 9268581411F15F3A00A28C33 /* beinghandler.cpp in Sources */,
- 9268581511F15F3B00A28C33 /* buysellhandler.cpp in Sources */,
- 9268581611F15F3C00A28C33 /* charhandler.cpp in Sources */,
- 9268581711F15F3D00A28C33 /* chathandler.cpp in Sources */,
- 9268581811F15F3E00A28C33 /* connection.cpp in Sources */,
- 9268581911F15F3F00A28C33 /* effecthandler.cpp in Sources */,
- 9268581A11F15F4000A28C33 /* gamehandler.cpp in Sources */,
- 9268581B11F15F4000A28C33 /* generalhandler.cpp in Sources */,
- 9268581C11F15F4200A28C33 /* guildhandler.cpp in Sources */,
- 9268581D11F15F4300A28C33 /* internal.cpp in Sources */,
- 9268581E11F15F4400A28C33 /* inventoryhandler.cpp in Sources */,
- 9268581F11F15F4500A28C33 /* itemhandler.cpp in Sources */,
- 9268582011F15F4600A28C33 /* loginhandler.cpp in Sources */,
- 9268582111F15F4600A28C33 /* messagehandler.cpp in Sources */,
- 9268582211F15F4700A28C33 /* messagein.cpp in Sources */,
- 9268582311F15F4800A28C33 /* messageout.cpp in Sources */,
- 9268582411F15F4A00A28C33 /* network.cpp in Sources */,
- 9268582511F15F4A00A28C33 /* npchandler.cpp in Sources */,
- 9268582611F15F4C00A28C33 /* partyhandler.cpp in Sources */,
- 9268582711F15F4C00A28C33 /* playerhandler.cpp in Sources */,
- 9268582811F15F4E00A28C33 /* specialhandler.cpp in Sources */,
- 9268582911F15F4E00A28C33 /* stats.cpp in Sources */,
- 9268582A11F15F5000A28C33 /* tradehandler.cpp in Sources */,
- 9268583011F15F6800A28C33 /* changeemaildialog.cpp in Sources */,
- 9268583111F15F6900A28C33 /* changepassworddialog.cpp in Sources */,
- 9268583211F15F7100A28C33 /* quitdialog.cpp in Sources */,
- 9268583311F15F7300A28C33 /* serverdialog.cpp in Sources */,
- 9268583411F15F7600A28C33 /* skilldialog.cpp in Sources */,
- 9268583511F15F7900A28C33 /* statuswindow.cpp in Sources */,
- 9268583611F15F7B00A28C33 /* textdialog.cpp in Sources */,
- 9268583711F15F7E00A28C33 /* unregisterdialog.cpp in Sources */,
- 9268583A11F15FAC00A28C33 /* guild.cpp in Sources */,
- 9268583B11F15FC200A28C33 /* position.cpp in Sources */,
- 9268583C11F15FC900A28C33 /* sha256.cpp in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- C0E91AC608A95435008D54AB /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
- ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
- COPY_PHASE_STRIP = NO;
- DEAD_CODE_STRIPPING = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- FRAMEWORK_SEARCH_PATHS = (
- "$(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 = "\"/System/Library/Frameworks\"";
- GCC_DEBUGGING_SYMBOLS = default;
- GCC_ENABLE_FIX_AND_CONTINUE = NO;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- GCC_OPTIMIZATION_LEVEL = s;
- GCC_PREPROCESSOR_DEFINITIONS = (
- EATHENA_SUPPORT,
- USE_OPENGL,
- );
- 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,
- /opt/local/include/SDL,
- /opt/local/include,
- );
- INFOPLIST_FILE = Info.plist;
- LIBRARY_SEARCH_PATHS = (
- /usr/lib,
- "\"$(SRCROOT)\"",
- /opt/local/lib,
- );
- MACOSX_DEPLOYMENT_TARGET = 10.5;
- OTHER_LDFLAGS = (
- "-lz",
- "-lxml2",
- "-lcurl",
- "-lenet",
- );
- PREBINDING = NO;
- PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
- PRODUCT_NAME = "The Mana World";
- SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
- USER_HEADER_SEARCH_PATHS = src;
- };
- name = Debug;
- };
- C0E91AC708A95435008D54AB /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1)";
- ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1 = "x86_64 i386 ppc";
- COPY_PHASE_STRIP = NO;
- DEAD_CODE_STRIPPING = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)",
- );
- FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"/System/Library/Frameworks\"";
- GCC_DEBUGGING_SYMBOLS = full;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- EATHENA_SUPPORT,
- USE_OPENGL,
- );
- GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_VERSION = 4.2;
- GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = NO;
- 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,
- /opt/local/include/SDL,
- /opt/local/include,
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(HOME)/Applications";
- LIBRARY_SEARCH_PATHS = (
- /usr/lib,
- "\"$(SRCROOT)\"",
- /opt/local/lib,
- );
- MACOSX_DEPLOYMENT_TARGET = 10.5;
- OTHER_CFLAGS = "";
- OTHER_LDFLAGS = (
- "-lz",
- "-lxml2",
- "-lcurl",
- "-lenet",
- );
- PREBINDING = NO;
- PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES;
- PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO;
- PRODUCT_NAME = "The Mana World";
- SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
- SEPARATE_STRIP = NO;
- SKIP_INSTALL = YES;
- USER_HEADER_SEARCH_PATHS = src;
- };
- name = Release;
- };
- C0E91ACA08A95435008D54AB /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- DEBUG_INFORMATION_FORMAT = dwarf;
- GCC_ENABLE_FIX_AND_CONTINUE = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
- ZERO_LINK = YES;
- };
- name = Debug;
- };
- C0E91ACB08A95435008D54AB /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = (
- ppc,
- i386,
- );
- DEBUG_INFORMATION_FORMAT = dwarf;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- GCC_OPTIMIZATION_LEVEL = 2;
- GCC_PREPROCESSOR_DEFINITIONS = "";
- SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
- SEPARATE_STRIP = YES;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C0E91AC608A95435008D54AB /* Debug */,
- C0E91AC708A95435008D54AB /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C0E91AC908A95435008D54AB /* Build configuration list for PBXProject "mana" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C0E91ACA08A95435008D54AB /* Debug */,
- C0E91ACB08A95435008D54AB /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 20286C28FDCF999611CA2CEA /* Project object */;
-}
diff --git a/packaging/windows/package-helpers b/packaging/windows/package-helpers
new file mode 100644
index 00000000..de953149
--- /dev/null
+++ b/packaging/windows/package-helpers
@@ -0,0 +1,113 @@
+# Helper functions to do win32 cross builds. Source this file, and
+# you'll get a few mana- functions in your shell:
+# - mana-configure-win32 -- runs cmake to configure the source tree
+# for a win32 build
+# - mana-build-win32 -- runs mana-configure-win32, followed by make
+# - mana-build-translations -- copies the translations into a dir
+# structure suitable for nsis
+# - mana-build-nsis -- build the nsis installer (run the other stips
+# first!)
+# - mana-build-win32-installer -- runs all steps required to get the
+# windows installer
+# - mana-nuke-cmake-stuff -- cleans up all files created by cmake
+#
+# A few environement variables can influence those functions:
+# - MANA_BASE -- mana source top directory. Automatically set when
+# you source this file from the top directory, or the windows packaging
+# directory
+# - VERSION -- read from CMakeLists.txt if not specified
+# - TOOLCHAINFILE -- the cmake toolchainfile, searched in top dir,
+# your home, and /build/nightlies. See toolchain.cmake.example
+# for an example file
+# - MANALIBS -- the directory containing the dlls copied into the
+# windows installer. Default is using the last directory in the
+# toolchains SET(CMAKE_FIND_ROOT_PATH
+
+# MANA_BASE should point to the top directory of the source tree
+if [ -z "$MANA_BASE" ]; then
+ if [ -f INSTALL ]; then
+ MANA_BASE=`pwd`
+ elif [ -f setup.nsi ]; then
+ cd ../.. && MANA_BASE=`pwd`
+ else
+ echo "Unable to guess mana base directory, please set MANA_BASE manually"
+ fi
+else
+ echo "MANA_BASE already set to $MANA_BASE, ignoring"
+fi
+
+if [ -z "$VERSION" ]; then
+ VERSION=`grep 'SET(VERSION .*)' $MANA_BASE/CMakeLists.txt | \
+ sed 's/.* //' | sed 's/)//'`
+fi
+echo "Building for version $VERSION"
+
+if [ -z "`which unix2dos`" ]; then
+ echo "You're missing unix2dos. Please install it (probably in dos2unix)."
+fi
+
+# TOOLCHAINFILE should point to a cmake toolchain file,
+# see toolchain.cmake.example
+if [ -z "$TOOLCHAINFILE" ]; then
+ if [ -f $MANA_BASE/toolchain.cmake ]; then
+ TOOLCHAINFILE=$MANA_BASE/toolchain.cmake
+ elif [ -f ~/toolchain.cmake ]; then
+ TOOLCHAINFILE=~/.toolchain.cmake
+ elif [ -f /build/nightlies/toolchain.cmake ]; then
+ TOOLCHAINFILE=/build/nightlies/toolchain.cmake
+ else
+ echo "Unable to find a toolchain file, please set TOOLCHAINFILE manually"
+ fi
+else
+ echo "TOOLCHAINFILE already set to $TOOLCHAINFILE, ignoring"
+fi
+
+if [ -z "$MANALIBS" ]; then
+ MANALIBS=`grep 'SET(CMAKE_FIND_ROOT_PATH ' $TOOLCHAINFILE | \
+ sed 's/\s*)\s*//' | sed 's/.* //'`
+ if [ -z "$MANALIBS" ]; then
+ echo "Unable to guess library directory for MANALIBS"
+ fi
+fi
+
+# configure the build tree for a cross-build, which can be built
+# by just typing 'make'
+mana-configure-win32(){
+ cd $MANA_BASE
+ cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVERSION=$VERSION \
+ -DCMAKE_TOOLCHAIN_FILE=$TOOLCHAINFILE
+}
+
+mana-build-win32(){
+ mana-configure-win32
+ make
+}
+
+# build the translations for use in the nsi
+mana-build-translations(){
+ cd $MANA_BASE/po
+ for i in *.gmo; do
+ _LC=`echo $i|sed 's/\..*//'`
+ mkdir -p ../translations/$_LC/LC_MESSAGES
+ cp -v $i ../translations/$_LC/LC_MESSAGES/mana.mo
+ done
+}
+
+mana-build-nsis(){
+ unix2dos -n $MANA_BASE/README $MANA_BASE/README.txt
+ cd $MANA_BASE/packaging/windows
+ makensis -DDLLDIR=$MANALIBS/lib -DPRODUCT_VERSION=$VERSION -DUPX=true -DEXESUFFIX=/src setup.nsi
+}
+
+# do everything...
+mana-build-win32-installer(){
+ mana-configure-win32
+ mana-build-win32
+ mana-build-translations
+ mana-build-nsis
+}
+
+mana-nuke-cmake-stuff(){
+ find $MANA_BASE -name CMakeFiles -type d -exec rm -Rf '{}' \; 2>/dev/null
+ find $MANA_BASE -name CMakeCache.txt -type f -exec rm '{}' \; 2>/dev/null
+} \ No newline at end of file
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi
index 319ce9be..c845e687 100644
--- a/packaging/windows/setup.nsi
+++ b/packaging/windows/setup.nsi
@@ -13,6 +13,8 @@
; -DPRODUCT_VERSION=0.1.`date +%Y%m%d`
; -DUPX=upx
; -DEXESUFFIX=/src
+;
+; Make sure that README has DOS line endings, and copy it to README.txt
CRCCheck on
SetCompress off
@@ -83,7 +85,7 @@ SetCompressor /SOLID lzma
; Finish page
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION RunMana
-!define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README$\""'
+!define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README.txt$\""'
!define MUI_PAGE_CUSTOMFUNCTION_PRE changeFinishImage
!define MUI_FINISHPAGE_LINK "Visit Mana website for the latest news, FAQs and support"
!define MUI_FINISHPAGE_LINK_LOCATION "http://themanaworld.org"
@@ -200,7 +202,7 @@ Section "Core files (required)" SecCore
File "${SRCDIR}\AUTHORS"
File "${SRCDIR}\COPYING"
File "${SRCDIR}\NEWS"
- File "${SRCDIR}\README"
+ File "${SRCDIR}\README.txt"
SetOutPath "$INSTDIR\data\fonts"
File "${SRCDIR}\data\fonts\*.ttf"
SetOutPath "$INSTDIR\data\graphics"
@@ -254,7 +256,7 @@ SectionEnd
Section -AdditionalIcons
WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
CreateShortCut "$SMPROGRAMS\Mana\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url"
- CreateShortCut "$SMPROGRAMS\Mana\Readme.lnk" "notepad.exe" "$INSTDIR\README"
+ CreateShortCut "$SMPROGRAMS\Mana\Readme.lnk" "notepad.exe" "$INSTDIR\README.txt"
CreateShortCut "$SMPROGRAMS\Mana\FAQ.lnk" "$INSTDIR\docs\FAQ.txt"
CreateShortCut "$SMPROGRAMS\Mana\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd
diff --git a/packaging/windows/toolchain.cmake.example b/packaging/windows/toolchain.cmake.example
new file mode 100644
index 00000000..0e99bd37
--- /dev/null
+++ b/packaging/windows/toolchain.cmake.example
@@ -0,0 +1,22 @@
+# the name of the target operating system
+SET(CMAKE_SYSTEM_NAME Windows)
+
+IF (NOT TOOLCHAIN)
+ SET(TOOLCHAIN "i586-mingw32msvc-")
+ENDIF()
+
+# which compilers to use for C and C++
+SET(CMAKE_C_COMPILER ${TOOLCHAIN}gcc)
+SET(CMAKE_CXX_COMPILER ${TOOLCHAIN}g++)
+
+# here is the target environment located
+# the directories specified here should contain two directories,
+# 'include' for the headers, 'lib' for dlls and .a files
+SET(CMAKE_FIND_ROOT_PATH /build/mingw32 /build/tmw-libs )
+
+# adjust the default behaviour of the FIND_XXX() commands:
+# search headers and libraries in the target environment, search
+# programs in the host environment
+set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
+set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
+set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
diff --git a/po/de.po b/po/de.po
index 0dd54d06..c813a471 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,3 +1,12 @@
+# #-#-#-#-# po_de.po (The Mana World 0.1.0) #-#-#-#-#
+# German translation of The Mana World.
+# Copyright (C) 2007 The Mana World Development Team
+# This file is distributed under the same license as the The Mana World package.
+#
+# Matthias Hartmann <hartmann.matthias@gmail.com>, 2007; 2011.
+# Jonathan Raphael Joachim Kolberg, 2009, 2010.
+# seeseekey <seeseekey@googlemail.com>, 2009.
+# #-#-#-#-# de.po (The Mana World 0.1.0) #-#-#-#-#
# German translation of The Mana World.
# Copyright (C) 2007-2009 The Mana World Development Team
# Copyright (C) 2010 The Mana Development Team
@@ -9,6 +18,22 @@
# Andrej, 2009.
msgid ""
msgstr ""
+"#-#-#-#-# po_de.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Project-Id-Version: The Mana World 0.1.0\n"
+"Report-Msgid-Bugs-To: dev@manasource.org\n"
+"POT-Creation-Date: 2010-12-06 19:23+0100\n"
+"PO-Revision-Date: 2011-01-03 22:40+0100\n"
+"Last-Translator: Matthias Hartmann <hartmann.matthias@gmail.com>\n"
+"Language-Team: Deutsch <kde-i18n-de@kde.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Launchpad-Export-Date: 2009-06-02 17:48+0000\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"#-#-#-#-# de.po (The Mana World 0.1.0) #-#-#-#-#\n"
"Project-Id-Version: The Mana World 0.1.0\n"
"Report-Msgid-Bugs-To: dev@manasource.org\n"
"POT-Creation-Date: 2010-12-13 20:04+0100\n"
@@ -40,7 +65,7 @@ msgstr "Anmelden"
#: src/client.cpp:739
msgid "Entering game world"
-msgstr ""
+msgstr "Betrete die Spielwelt"
#: src/client.cpp:804
#, fuzzy
@@ -69,7 +94,7 @@ msgstr "Fehler"
#: src/client.cpp:888
msgid "Requesting registration details"
-msgstr ""
+msgstr "Fordere Registrierungsdetails an"
#: src/client.cpp:915
msgid "Password Change"
@@ -100,7 +125,7 @@ msgstr "Leb wohl und komme jeder Zeit wieder..."
#: src/client.cpp:1138 src/client.cpp:1161
#, c-format
msgid "%s doesn't exist and can't be created! Exiting."
-msgstr ""
+msgstr "%s existiert nicht und kann nicht erstellt werden! Beende."
#: src/client.cpp:1281
#, fuzzy, c-format
@@ -160,13 +185,19 @@ msgstr ""
msgid "/q > Alias of query"
msgstr "/q > Ersatz für query"
-#: src/commandhandler.cpp:176
-msgid "/ignore > ignore a player"
+#: src/commandhandler.cpp:181
+msgid "/away > Tell the other whispering players you're away from keyboard."
msgstr ""
+"/away > Teilt den anderen flüsternden Spielern deine Abwesenheit von der "
+"Tastatur mit."
+
+#: src/commandhandler.cpp:184
+msgid "/ignore > ignore a player"
+msgstr "/ignore > Ignoriere einen Spieler"
#: src/commandhandler.cpp:177
msgid "/unignore > stop ignoring a player"
-msgstr ""
+msgstr "/unignore > Ignorierung eines Spielers aufheben"
#: src/commandhandler.cpp:179
msgid "/list > Display all public channels"
@@ -319,7 +350,26 @@ msgstr ""
"Dieser Befehl erstellt einen neuen Tab für private Nachrichten zwischen Dir "
"und Spieler <Name>."
-#: src/commandhandler.cpp:262
+#: src/commandhandler.cpp:270
+#, fuzzy
+msgid "Command: /away <afk reason>"
+msgstr "Befehl: /w <Name> <Nachricht>"
+
+#: src/commandhandler.cpp:271
+msgid "This command tells you're away from keyboard with the given reason."
+msgstr "Dieser Befehl teilt deine Abwesenheit und deren angegebenen Grund mit."
+
+#: src/commandhandler.cpp:273
+#, fuzzy
+msgid "Command: /away"
+msgstr "Befehl: /who"
+
+#: src/commandhandler.cpp:274
+#, fuzzy
+msgid "This command clears the away status and message."
+msgstr "Dieser Befehl setzt das Theme auf <Thema>."
+
+#: src/commandhandler.cpp:278
#, fuzzy
msgid "Command: /createparty <name>"
msgstr "Befehl: /create <Party-Name>"
@@ -405,6 +455,7 @@ msgstr "Befehl: /item <Wert>"
#: src/commandhandler.cpp:301
msgid "This command stops ignoring the given player if they are being ignored"
msgstr ""
+"Dieser Befehl hebt die Ignorierung des angegeben ignorierten Spieler auf."
#: src/commandhandler.cpp:306
msgid "Command: /where"
@@ -451,7 +502,7 @@ msgstr "Name der Party fehlt."
#: src/commandhandler.cpp:432 src/commandhandler.cpp:509
#: src/commandhandler.cpp:531
msgid "Please specify a name."
-msgstr ""
+msgstr "Bitte gib einen Namen an."
#: src/commandhandler.cpp:450
msgid "Return toggles chat."
@@ -471,15 +522,15 @@ msgstr "Jetzt schließt jede Nachricht die Chatzeile."
#: src/commandhandler.cpp:476 src/commandhandler.cpp:489
msgid "Show IP: On"
-msgstr ""
+msgstr "IP Anzeige: An"
#: src/commandhandler.cpp:476 src/commandhandler.cpp:485
msgid "Show IP: Off"
-msgstr ""
+msgstr "IP Anzeige: Aus"
#: src/commandhandler.cpp:515
msgid "Player already ignored!"
-msgstr ""
+msgstr "Spieler wird bereits ignoriert!"
#: src/commandhandler.cpp:522
#, fuzzy
@@ -655,7 +706,7 @@ msgstr "Gib dein neues Passwort zweimal ein:"
#: src/gui/changepassworddialog.cpp:110
msgid "Enter the old password first."
-msgstr ""
+msgstr "Gib das alte Passwort zuerst an."
#: src/gui/changepassworddialog.cpp:116
#, c-format
@@ -685,14 +736,14 @@ msgstr "Name:"
#: src/gui/charcreatedialog.cpp:70 src/gui/charcreatedialog.cpp:75
#: src/gui/outfitwindow.cpp:67
msgid ">"
-msgstr ""
+msgstr ">"
#. TRANSLATORS: This is an arrow symbol used to denote 'previous'.
#. You may change this symbol if your language uses another.
#: src/gui/charcreatedialog.cpp:73 src/gui/charcreatedialog.cpp:76
#: src/gui/outfitwindow.cpp:66
msgid "<"
-msgstr ""
+msgstr "<"
#: src/gui/charcreatedialog.cpp:74
msgid "Hair color:"
@@ -769,7 +820,7 @@ msgstr "Wähle"
#: src/gui/charselectdialog.cpp:394 src/gui/charselectdialog.cpp:395
msgid "(empty)"
-msgstr ""
+msgstr "(leer)"
#: src/gui/chat.cpp:88
msgid "Chat"
@@ -799,17 +850,17 @@ msgstr "Nein"
#: src/gui/debugwindow.cpp:43
msgid "Debug"
-msgstr ""
+msgstr "Debug"
#: src/gui/debugwindow.cpp:56
#, c-format
msgid "%d FPS (OpenGL)"
-msgstr ""
+msgstr "%d FPS (OpenGL)"
#: src/gui/debugwindow.cpp:61 src/gui/debugwindow.cpp:64
#, c-format
msgid "%d FPS"
-msgstr ""
+msgstr "%d FPS"
#: src/gui/debugwindow.cpp:65 src/gui/debugwindow.cpp:104
#, c-format
@@ -829,7 +880,7 @@ msgstr "Übersichtskarte: %s"
#: src/gui/debugwindow.cpp:68 src/gui/debugwindow.cpp:99
#, c-format
msgid "Cursor: (%d, %d)"
-msgstr ""
+msgstr "Cursor: (%d, %d)"
#: src/gui/debugwindow.cpp:69 src/gui/debugwindow.cpp:111
#, c-format
@@ -899,7 +950,7 @@ msgstr "Aufteilen"
#: src/gui/inventorywindow.cpp:104 src/gui/outfitwindow.cpp:51
msgid "Outfits"
-msgstr ""
+msgstr "Ausrüstung"
#: src/gui/inventorywindow.cpp:106
msgid "Weight:"
@@ -975,7 +1026,7 @@ msgstr "Teilen von Gegenständen deaktiviert."
#: src/gui/login.cpp:129
msgid "You need to use the website to register an account for this server."
-msgstr ""
+msgstr "Du musst auf der Webseite ein Konto für diesen Server erstellen."
#: src/gui/minimap.cpp:45 src/gui/minimap.cpp:86
msgid "Map"
@@ -983,7 +1034,7 @@ msgstr "Karte"
#: src/gui/ministatus.cpp:235
msgid "Need"
-msgstr ""
+msgstr "Muss"
#: src/gui/npcdialog.cpp:48
msgid "Waiting for server"
@@ -1003,7 +1054,7 @@ msgstr "NPC"
#: src/gui/npcdialog.cpp:118
msgid "Clear log"
-msgstr ""
+msgstr "Protokoll leeren"
#: src/gui/npcdialog.cpp:134
msgid "Reset"
@@ -1034,7 +1085,7 @@ msgstr "Es misslang den Brief zu senden oder er war ungültig."
#: src/gui/outfitwindow.cpp:154
#, c-format
msgid "Outfit: %d"
-msgstr ""
+msgstr "Ausrüstung: %d"
#: src/gui/outfitwindow.cpp:70
msgid "Unequip first"
@@ -1092,7 +1143,7 @@ msgstr "Lade %s in deine Party ein"
#: src/gui/popupmenu.cpp:141
msgid "Kick player"
-msgstr ""
+msgstr "Spieler rauswerfen"
#: src/gui/popupmenu.cpp:150
#, c-format
@@ -1234,12 +1285,12 @@ msgstr "Fehler beim empfangen der Serverliste: %s\n"
#: src/gui/serverdialog.cpp:550
msgid "requires a newer version"
-msgstr ""
+msgstr "benötigt eine neuere Version"
#: src/gui/serverdialog.cpp:552
#, c-format
msgid "requires v%s"
-msgstr ""
+msgstr "benötigt v%s"
#: src/gui/setup_audio.cpp:42
msgid "Sound"
@@ -1514,7 +1565,7 @@ msgstr "Eigener Name"
#: src/gui/setup_video.cpp:226
msgid "Log NPC dialogue"
-msgstr ""
+msgstr "Protokoliere NPC Gespräche"
#: src/gui/setup_video.cpp:227
msgid "Show pickup notification"
@@ -1537,7 +1588,7 @@ msgstr "FPS-Limit:"
#: src/gui/setup_video.cpp:247
msgid "Disable transparency (Low CPU mode)"
-msgstr ""
+msgstr "Transparenz deaktivieren (für langsame PCs)"
#: src/gui/setup_video.cpp:250
msgid "Video"
@@ -1606,10 +1657,13 @@ msgid ""
"Applying change to OpenGL requires restart. In case OpenGL messes up your "
"game graphics, restart the game with the command line option \"--no-opengl\"."
msgstr ""
+"Der Wechsel zu OpenGL erfordert einen Neustart. Falls mit OpenGL Grafiken "
+"fehlerhaft dargestellt werden sollten bitte das Spiel mit der "
+"Kommandozeilenoption \"--no-opengl\" neustarten."
#: src/gui/setup_video.cpp:466
msgid "Deactivating OpenGL"
-msgstr ""
+msgstr "Deaktiviere OpenGL"
#: src/gui/setup_video.cpp:467
msgid "Applying change to OpenGL requires restart."
@@ -1624,11 +1678,11 @@ msgstr "Teilen der Erfahrungspunkte deaktiviert."
#: src/gui/setup_video.cpp:476 src/gui/setup_video.cpp:484
msgid "You must restart to apply changes."
-msgstr ""
+msgstr "Bitte neustarten um Änderungen zu übernehmen."
#: src/gui/setup_video.cpp:483
msgid "Transparency enabled"
-msgstr ""
+msgstr "Transparenz aktiviert."
#: src/gui/setup_video.cpp:576 src/gui/setup_video.cpp:581
#, fuzzy
@@ -1725,7 +1779,7 @@ msgstr "Spieler %s einladen"
#: src/gui/socialwindow.cpp:218
#, c-format
msgid "Party %s quit requested."
-msgstr ""
+msgstr "Partie %s Auflösung beauftragt."
#: src/gui/socialwindow.cpp:232
#, fuzzy
@@ -1739,7 +1793,7 @@ msgstr "Wen möchtest du einladen?"
#: src/gui/socialwindow.cpp:242
msgid "Leave Party?"
-msgstr ""
+msgstr "Partie verlassen?"
#: src/gui/socialwindow.cpp:243
#, fuzzy, c-format
@@ -1792,7 +1846,7 @@ msgstr "Partyeinladung von %s abgelehnt."
#: src/gui/socialwindow.cpp:497
msgid "Creating guild failed, please choose a shorter name."
-msgstr ""
+msgstr "Gilde konnte nicht erstellt werden, bitte einen kürzen Namen wählen."
#: src/gui/socialwindow.cpp:504
#, c-format
@@ -1801,7 +1855,7 @@ msgstr "Erstelle der Gilde %s."
#: src/gui/socialwindow.cpp:520
msgid "Creating party failed, please choose a shorter name."
-msgstr ""
+msgstr "Partie konte nicht erstellt werden, bitte einen kürzeren Namen wählen."
#: src/gui/socialwindow.cpp:527
#, fuzzy, c-format
@@ -1860,7 +1914,7 @@ msgstr "Nehme Partyeinladung an"
#: src/gui/socialwindow.cpp:621
msgid "Cannot create party. You are already in a party"
-msgstr ""
+msgstr "Konnte keine Partie erstellen. Du bist schon in einer Partie."
#: src/gui/socialwindow.cpp:626
#, fuzzy
@@ -1876,8 +1930,17 @@ msgstr "Wähle den Namen deiner Gilde"
msgid "Specials"
msgstr "Special"
-#: src/gui/statuswindow.cpp:113 src/gui/statuswindow.cpp:215
-#: src/gui/statuswindow.cpp:262
+#: src/gui/specialswindow.cpp:174
+#, c-format
+msgid "Specials Set %d"
+msgstr "Spezial Sets %d"
+
+#: src/gui/specialswindow.cpp:191
+#, c-format
+msgid "Special %d"
+msgstr "Spezial %d"
+
+#: src/gui/statuswindow.cpp:109 src/gui/statuswindow.cpp:253
#, c-format
msgid "Level: %d"
msgstr "Stufe: %d"
@@ -2104,11 +2167,11 @@ msgstr "Kann keine leere Nachricht senden!"
#: src/gui/widgets/whispertab.cpp:72
msgid "/ignore > Ignore the other player"
-msgstr ""
+msgstr "/ignore > Anderen Spieler ignorieren"
#: src/gui/widgets/whispertab.cpp:73
msgid "/unignore > Stop ignoring the other player"
-msgstr ""
+msgstr "/unignore > Anderen Spieler nicht mehr ignorieren"
#: src/gui/widgets/whispertab.cpp:74
msgid "/close > Close the whisper tab"
@@ -2301,11 +2364,11 @@ msgstr "Statusfenster"
#: src/keyboardconfig.cpp:82
msgid "Wear Outfit"
-msgstr ""
+msgstr "Ausrüstung anziehen"
#: src/keyboardconfig.cpp:83
msgid "Copy Outfit"
-msgstr ""
+msgstr "Ausrüstung kopieren"
#: src/keyboardconfig.cpp:84 src/keyboardconfig.cpp:85
#: src/keyboardconfig.cpp:86 src/keyboardconfig.cpp:87
@@ -2369,9 +2432,13 @@ msgid_plural "You picked up %d [@@%d|%s@@]."
msgstr[0] "Du hast %s [@@%d|%s@@] aufgehoben."
msgstr[1] "Du hast %s [@@%d|%s@@] aufgehoben."
+#: src/localplayer.cpp:1435
+msgid "Away"
+msgstr "Abwesend"
+
#: src/main.cpp:42
msgid "mana [options] [mana-file]"
-msgstr ""
+msgstr "mana [Optionen] [mana-Datei]"
#: src/main.cpp:43
msgid "[mana-file] : The mana file is an XML file (.mana)"
@@ -2625,7 +2692,7 @@ msgstr "Liste Kanäle"
#: src/net/manaserv/chathandler.cpp:226
msgid "End of channel list."
-msgstr ""
+msgstr "Ende der Channel-Liste."
#: src/net/manaserv/chathandler.cpp:303
#, c-format
@@ -2635,17 +2702,17 @@ msgstr "%s ist dem Kanal beigetreten."
#: src/net/manaserv/chathandler.cpp:308
#, c-format
msgid "%s left the channel."
-msgstr ""
+msgstr "%s hat den Channel verlassen."
#: src/net/manaserv/chathandler.cpp:324
#, c-format
msgid "%s has set mode %s on user %s."
-msgstr ""
+msgstr "%s hat den Modus %s auf den Spieler %s gesetzt."
#: src/net/manaserv/chathandler.cpp:334
#, c-format
msgid "%s has kicked %s."
-msgstr ""
+msgstr "%s hat %s gekickt."
#: src/net/manaserv/chathandler.cpp:339
#, fuzzy
@@ -2713,6 +2780,8 @@ msgstr "Die neue E-Mailadresse ist bereits vorhanden."
msgid ""
"Client registration is not allowed. Please contact server administration."
msgstr ""
+"Client Registrierung wurde deaktiviert. Bitte den Serveradministrator "
+"kontaktieren."
#: src/net/manaserv/loginhandler.cpp:263 src/net/manaserv/loginhandler.cpp:300
msgid "Client version is too old."
@@ -2729,7 +2798,7 @@ msgstr "Account abgelaufen"
#: src/net/manaserv/loginhandler.cpp:275
msgid "Login attempt too soon after previous attempt."
-msgstr ""
+msgstr "Anmeldeversuch zu früh nach vorherigem Versuch."
#: src/net/manaserv/loginhandler.cpp:303
msgid "Wrong username, password or email address."
@@ -2746,6 +2815,7 @@ msgstr "E-Mailadresse bereits vorhanden"
#: src/net/manaserv/loginhandler.cpp:312
msgid "You took too long with the captcha or your response was incorrect."
msgstr ""
+"Du hast für das Captcha zu lange gebraucht oder deine Eingabe war inkorrekt."
#: src/net/manaserv/partyhandler.cpp:87
msgid "Joined party."
@@ -2821,7 +2891,7 @@ msgstr "Verkauf fehlgeschlagen."
#: src/net/tmwa/charserverhandler.cpp:103
msgid "Access denied. Most likely, there are too many players on this server."
-msgstr ""
+msgstr "Zugriff verweigert. Wahrscheinlich zu viele Spieler auf dem Server."
#: src/net/tmwa/charserverhandler.cpp:107
msgid "Cannot use this ID."
@@ -3067,7 +3137,7 @@ msgstr "Name der Party fehlt."
#: src/net/tmwa/guildhandler.cpp:296
msgid "Could not inivte user to guild."
-msgstr ""
+msgstr "Konnte User nicht in Gilde einladen."
#: src/net/tmwa/guildhandler.cpp:301
#, fuzzy
@@ -3081,7 +3151,7 @@ msgstr "%s ist nun Mitglied Deiner Party."
#: src/net/tmwa/guildhandler.cpp:311
msgid "Your guild is full."
-msgstr ""
+msgstr "Deine Gilde ist voll."
#: src/net/tmwa/guildhandler.cpp:316
#, fuzzy
@@ -3090,7 +3160,7 @@ msgstr "Unbekannte Reaktion auf die Einladung von %s."
#: src/net/tmwa/guildhandler.cpp:393
msgid "Guild creation isn't supported yet."
-msgstr ""
+msgstr "Gildenerstellung wird nocht nicht unterstützt."
#: src/net/tmwa/gui/partytab.cpp:43
msgid "Party"
@@ -3270,7 +3340,7 @@ msgstr "Dieser Spielername ist bereits vergeben"
#: src/net/tmwa/network.cpp:145
msgid "Empty address given to Network::connect()!"
-msgstr ""
+msgstr "Empty address given to Network::connect()!"
#: src/net/tmwa/network.cpp:345
msgid "Unable to resolve host \""
@@ -3325,11 +3395,11 @@ msgstr "Ein unbekanntes Mitglied hat versucht, \"%s\" zu sagen."
#: src/net/tmwa/partyhandler.cpp:335
#, c-format
msgid "Inviting failed, because you can't see a player called %s."
-msgstr ""
+msgstr "Einladung fehlgeschlagen, da du den Spieler %s nicht sehen kannst."
#: src/net/tmwa/partyhandler.cpp:340
msgid "You can only inivte when you are in a party!"
-msgstr ""
+msgstr "Du kannst nur einladen wenn du in einer Partie bist."
#: src/net/tmwa/partyhandler.cpp:368
#, c-format
@@ -3549,13 +3619,21 @@ msgstr "@@ignore|Ignoriere %s komplett@@"
#: src/playerrelations.cpp:324
msgid "Print '...'"
-msgstr ""
+msgstr "Drucke '..'"
#: src/playerrelations.cpp:340
msgid "Blink name"
-msgstr ""
+msgstr "Blinkender Name"
+
+#: src/playerrelations.cpp:379
+msgid "Floating '...' bubble"
+msgstr "Schwebende '...' Blase"
+
+#: src/playerrelations.cpp:382
+msgid "Floating bubble"
+msgstr "Schwebende Blase"
-#: src/resources/itemdb.cpp:44
+#: src/resources/itemdb.cpp:53
#, c-format
msgid "Attack %+d"
msgstr "Angriff %+d"
diff --git a/po/fr.po b/po/fr.po
index a08725a8..e298f710 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -4,8 +4,10 @@
# Guillaume Melquiond <guillaume.melquiond@gmail.com>, 2007.
#
#
+#, fuzzy
msgid ""
msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
"Project-Id-Version: The Mana World 0.1.0\n"
"Report-Msgid-Bugs-To: dev@manasource.org\n"
"POT-Creation-Date: 2010-12-06 19:23+0100\n"
@@ -21,10 +23,24 @@ msgstr ""
"X-Generator: Launchpad (build Unknown)\n"
"X-Poedit-Language: French\n"
"X-Poedit-Country: FRANCE\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Project-Id-Version: The Mana World 0.1.0\n"
+"Report-Msgid-Bugs-To: dev@manasource.org\n"
+"POT-Creation-Date: 2010-12-06 19:23+0100\n"
+"PO-Revision-Date: 2011-01-11 22:42+0100\n"
+"Last-Translator: Yohann Ferreira <yohann ferreira orange fr>\n"
+"Language-Team: French <Yohann Ferreira <yohann ferreira orange efer>>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Launchpad-Export-Date: 2010-03-05 19:28+0000\n"
+"X-Generator: Launchpad (build Unknown)\n"
+"X-Poedit-Language: French\n"
+"X-Poedit-Country: FRANCE\n"
-#: src/client.cpp:563
-#: src/gui/setup.cpp:43
-#: src/gui/windowmenu.cpp:66
+#: src/client.cpp:563 src/gui/setup.cpp:43 src/gui/windowmenu.cpp:66
msgid "Setup"
msgstr "Configuration"
@@ -52,17 +68,11 @@ msgstr "Connexion au serveur de jeu"
msgid "Changing game servers"
msgstr "Changement de serveur de jeu"
-#: src/client.cpp:830
-#: src/client.cpp:837
-#: src/client.cpp:972
-#: src/gui/changeemaildialog.cpp:156
-#: src/gui/changepassworddialog.cpp:149
-#: src/gui/charcreatedialog.cpp:177
-#: src/gui/register.cpp:218
-#: src/gui/serverdialog.cpp:336
-#: src/gui/unregisterdialog.cpp:133
-#: src/net/manaserv/charhandler.cpp:167
-#: src/net/manaserv/charhandler.cpp:210
+#: src/client.cpp:830 src/client.cpp:837 src/client.cpp:972
+#: src/gui/changeemaildialog.cpp:156 src/gui/changepassworddialog.cpp:149
+#: src/gui/charcreatedialog.cpp:177 src/gui/register.cpp:218
+#: src/gui/serverdialog.cpp:336 src/gui/unregisterdialog.cpp:133
+#: src/net/manaserv/charhandler.cpp:167 src/net/manaserv/charhandler.cpp:210
#: src/net/tmwa/charserverhandler.cpp:138
#: src/net/tmwa/charserverhandler.cpp:155
msgid "Error"
@@ -96,8 +106,7 @@ msgstr "Désincription réussie"
msgid "Farewell, come back any time..."
msgstr "Adieu, revenez dès que vous le souhaitez..."
-#: src/client.cpp:1090
-#: src/client.cpp:1113
+#: src/client.cpp:1090 src/client.cpp:1113
#, c-format
msgid "%s doesn't exist and can't be created! Exiting."
msgstr "%s n'existe pas et ne peut pas être créé ! Fin du programme."
@@ -107,13 +116,11 @@ msgstr "%s n'existe pas et ne peut pas être créé ! Fin du programme."
msgid "Invalid update host: %s"
msgstr "Hôte de mise à jour incorrect : %s"
-#: src/client.cpp:1266
-#: src/client.cpp:1272
+#: src/client.cpp:1266 src/client.cpp:1272
msgid "Error creating updates directory!"
msgstr "Impossible de créer le dossier de mise à jour !"
-#: src/commandhandler.cpp:136
-#: src/commandhandler.cpp:333
+#: src/commandhandler.cpp:136 src/commandhandler.cpp:333
msgid "Unknown command."
msgstr "Commande inconnue."
@@ -155,7 +162,9 @@ msgstr "/w > Alias de msg"
#: src/commandhandler.cpp:177
msgid "/query > Makes a tab for private messages with another user"
-msgstr "/query > Crée un nouvel onglet pour vos messages privés avec un autre utilisateur"
+msgstr ""
+"/query > Crée un nouvel onglet pour vos messages privés avec un autre "
+"utilisateur"
#: src/commandhandler.cpp:179
msgid "/q > Alias of query"
@@ -163,7 +172,8 @@ msgstr "/q > Alias de query"
#: src/commandhandler.cpp:181
msgid "/away > Tell the other whispering players you're away from keyboard."
-msgstr "/away > Indique aux autres joueurs que vous n'êtes actuellement pas actif."
+msgstr ""
+"/away > Indique aux autres joueurs que vous n'êtes actuellement pas actif."
#: src/commandhandler.cpp:184
msgid "/ignore > ignore a player"
@@ -191,15 +201,19 @@ msgstr "/party > Invite un utilisateur dans un groupe"
#: src/commandhandler.cpp:193
msgid "/record > Start recording the chat to an external file"
-msgstr "/record > Commence à enregistrer la conversation dans un fichier externe"
+msgstr ""
+"/record > Commence à enregistrer la conversation dans un fichier externe"
#: src/commandhandler.cpp:195
msgid "/toggle > Determine whether <return> toggles the chat log"
-msgstr "/toggle > Détermine si la touche <entrée> bascule l'historique du tchat"
+msgstr ""
+"/toggle > Détermine si la touche <entrée> bascule l'historique du tchat"
#: src/commandhandler.cpp:197
msgid "/present > Get list of players present (sent to chat log, if logging)"
-msgstr "/present > Obtiens la liste des joueurs présents (envoyée dans l'historique du tchat s'il a été activé)"
+msgstr ""
+"/present > Obtiens la liste des joueurs présents (envoyée dans l'historique "
+"du tchat s'il a été activé)"
#: src/commandhandler.cpp:200
msgid "/announce > Global announcement (GM only)"
@@ -243,7 +257,9 @@ msgstr "Commande : /clear"
#: src/commandhandler.cpp:228
msgid "This command clears the chat log of previous chat."
-msgstr "Cette commande vide l'historique de conversation de la conversation précédente."
+msgstr ""
+"Cette commande vide l'historique de conversation de la conversation "
+"précédente."
#: src/commandhandler.cpp:232
msgid "Command: /ignore <player>"
@@ -297,14 +313,13 @@ msgstr "Commande : /w <nick> <message>"
msgid "This command sends the text <message> to <nick>."
msgstr "Cette commande envoie le texte <message> au joueur <nick>"
-#: src/commandhandler.cpp:258
-#: src/commandhandler.cpp:285
-#: src/gui/widgets/channeltab.cpp:82
-#: src/gui/widgets/channeltab.cpp:91
-#: src/net/tmwa/gui/guildtab.cpp:75
-#: src/net/tmwa/gui/partytab.cpp:75
+#: src/commandhandler.cpp:258 src/commandhandler.cpp:285
+#: src/gui/widgets/channeltab.cpp:82 src/gui/widgets/channeltab.cpp:91
+#: src/net/tmwa/gui/guildtab.cpp:75 src/net/tmwa/gui/partytab.cpp:75
msgid "If the <nick> has spaces in it, enclose it in double quotes (\")."
-msgstr "Si le <nick> contient des espaces, entourez le de guillemets (exemple : \"ni ck\")."
+msgstr ""
+"Si le <nick> contient des espaces, entourez le de guillemets (exemple : \"ni "
+"ck\")."
#: src/commandhandler.cpp:263
msgid "Command: /query <nick>"
@@ -316,7 +331,8 @@ msgstr "Commande : /q <nick>"
#: src/commandhandler.cpp:265
msgid "This command tries to make a tab for whispers betweenyou and <nick>."
-msgstr "Cette commande essaye de créer une fenêtre de dialogue entre vous et <nick>"
+msgstr ""
+"Cette commande essaye de créer une fenêtre de dialogue entre vous et <nick>"
#: src/commandhandler.cpp:270
msgid "Command: /away <afk reason>"
@@ -324,7 +340,8 @@ msgstr "Commande : /away <message d'absence>"
#: src/commandhandler.cpp:271
msgid "This command tells you're away from keyboard with the given reason."
-msgstr "Cette commande indique que vous n'êtes pas actif en indiquant la raison."
+msgstr ""
+"Cette commande indique que vous n'êtes pas actif en indiquant la raison."
#: src/commandhandler.cpp:273
msgid "Command: /away"
@@ -346,8 +363,7 @@ msgstr "Cette commande crée un nouveau groupe appelé <name>"
msgid "Command: /party <nick>"
msgstr "Commande : /party <nick>"
-#: src/commandhandler.cpp:284
-#: src/net/tmwa/gui/partytab.cpp:74
+#: src/commandhandler.cpp:284 src/net/tmwa/gui/partytab.cpp:74
msgid "This command invites <nick> to party with you."
msgstr "Cette commande invite <nick> à rejoindre votre groupe."
@@ -356,8 +372,13 @@ msgid "Command: /present"
msgstr "Commande : /present"
#: src/commandhandler.cpp:291
-msgid "This command gets a list of players within hearing and sends it to either the record log if recording, or the chat log otherwise."
-msgstr "Cette commande récupère une liste de tous les joueurs présents et l'envoie dans le fichier d'enregistrement s'il est activé, ou dans l'enregistrement de la conversation."
+msgid ""
+"This command gets a list of players within hearing and sends it to either "
+"the record log if recording, or the chat log otherwise."
+msgstr ""
+"Cette commande récupère une liste de tous les joueurs présents et l'envoie "
+"dans le fichier d'enregistrement s'il est activé, ou dans l'enregistrement "
+"de la conversation."
#: src/commandhandler.cpp:297
msgid "Command: /record <filename>"
@@ -365,7 +386,9 @@ msgstr "Commande : /record <filename>"
#: src/commandhandler.cpp:298
msgid "This command starts recording the chat log to the file <filename>."
-msgstr "Cette commande active l'enregistrement de la conversation dans le fichier <filename>."
+msgstr ""
+"Cette commande active l'enregistrement de la conversation dans le fichier "
+"<filename>."
#: src/commandhandler.cpp:300
msgid "Command: /record"
@@ -380,12 +403,27 @@ msgid "Command: /toggle <state>"
msgstr "Command: /toggle <state>"
#: src/commandhandler.cpp:306
-msgid "This command sets whether the return key should toggle the chat log, or whether the chat log turns off automatically."
-msgstr "Cette commande définie si la touche entrée doit fermer le fichier d'enregistrement de la conversation ou si celui-ci se fermera automatiquement."
+#, fuzzy
+msgid ""
+"This command sets whether the return key should toggle the chat log, or "
+"whether the chat log turns off automatically."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Cette commande définie si la touche entrée doit fermer le fichier "
+"d'enregistrement de la conversation ou si celui-ci se fermera "
+"automatiquement.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Cette commande définit si la touche entrée doit fermer le fichier "
+"d'enregistrement de la conversation ou si celui-ci se fermera "
+"automatiquement."
#: src/commandhandler.cpp:308
-msgid "<state> can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0\", \"no\", \"false\" to turn the toggle off."
-msgstr "<state> peut être en position \"1\", \"yes\", \"true\" pour activer le bouton sur marche, ou \"0\", \"no\", \"false\" pour désactiver le bouton."
+msgid ""
+"<state> can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or "
+"\"0\", \"no\", \"false\" to turn the toggle off."
+msgstr ""
+"<state> peut être en position \"1\", \"yes\", \"true\" pour activer le "
+"bouton sur marche, ou \"0\", \"no\", \"false\" pour désactiver le bouton."
#: src/commandhandler.cpp:311
msgid "Command: /toggle"
@@ -395,14 +433,15 @@ msgstr "Commande : /toggle"
msgid "This command displays the return toggle status."
msgstr "Cette commande vous affiche le status du toggle courant."
-#: src/commandhandler.cpp:316
-#: src/gui/widgets/whispertab.cpp:94
+#: src/commandhandler.cpp:316 src/gui/widgets/whispertab.cpp:94
msgid "Command: /unignore <player>"
msgstr "Commande : /unignore <joueur>"
#: src/commandhandler.cpp:317
msgid "This command stops ignoring the given player if they are being ignored"
-msgstr "Cette commande fait cesser d'ignorer le joueur donné s'il l'était précédemment."
+msgstr ""
+"Cette commande fait cesser d'ignorer le joueur donné s'il l'était "
+"précédemment."
#: src/commandhandler.cpp:322
msgid "Command: /where"
@@ -430,21 +469,27 @@ msgstr "Vous ne pouvez pas envoyer des messages privés vides !"
#: src/commandhandler.cpp:408
#, c-format
-msgid "Cannot create a whisper tab for nick \"%s\"! It either already exists, or is you."
-msgstr "Il ne peut être créer une fenêtre de conversation avec nick \"%s\" ! Elle existe déjà ou il s'agit de vous même."
+msgid ""
+"Cannot create a whisper tab for nick \"%s\"! It either already exists, or is "
+"you."
+msgstr ""
+"Il ne peut être créer une fenêtre de conversation avec nick \"%s\" ! Elle "
+"existe déjà ou il s'agit de vous même."
#: src/commandhandler.cpp:422
-#, c-format
+#, fuzzy, c-format
msgid "Requesting to join channel %s."
-msgstr "Il vous est demandé de rejoindre le chan %s."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Il vous est demandé de rejoindre le chan %s.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Il vous est demandé de rejoindre le salon %s."
-#: src/commandhandler.cpp:435
-#: src/net/tmwa/gui/partytab.cpp:109
+#: src/commandhandler.cpp:435 src/net/tmwa/gui/partytab.cpp:109
msgid "Party name is missing."
msgstr "Indiquez un nom de groupe."
-#: src/commandhandler.cpp:448
-#: src/commandhandler.cpp:525
+#: src/commandhandler.cpp:448 src/commandhandler.cpp:525
#: src/commandhandler.cpp:547
msgid "Please specify a name."
msgstr "Veuillez indiquer un nom."
@@ -465,13 +510,11 @@ msgstr "La touche enter ferme la ligne d'entrée de la conversation."
msgid "Message now closes chat."
msgstr "Ce message ferme maintenant la conversation."
-#: src/commandhandler.cpp:492
-#: src/commandhandler.cpp:505
+#: src/commandhandler.cpp:492 src/commandhandler.cpp:505
msgid "Show IP: On"
msgstr "Afficher l'IP : Activé"
-#: src/commandhandler.cpp:492
-#: src/commandhandler.cpp:501
+#: src/commandhandler.cpp:492 src/commandhandler.cpp:501
msgid "Show IP: Off"
msgstr "Afficher l'IP : Désactivé"
@@ -502,7 +545,9 @@ msgstr "Le joueur n'a pas pu être à nouveau écouté !"
#: src/commandhandler.h:31
#, c-format
msgid "Options to /%s are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"."
-msgstr "Les options qui peuvent être transmises à /%s sont \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"."
+msgstr ""
+"Les options qui peuvent être transmises à /%s sont \"yes\", \"no\", \"true"
+"\", \"false\", \"1\", \"0\"."
#: src/game.cpp:169
msgid "General"
@@ -518,7 +563,8 @@ msgstr "Impossible de sauvegarder la capture d'écran !"
#: src/game.cpp:368
msgid "The connection to the server was lost."
-msgstr "La connexion au serveur a été coupée, le programme va maintenant se fermer."
+msgstr ""
+"La connexion au serveur a été coupée, le programme va maintenant se fermer."
#: src/game.cpp:372
msgid "Network Error"
@@ -546,15 +592,11 @@ msgstr "Erreur durant le chargement %s"
msgid "Party: %s"
msgstr "Groupe : %s"
-#: src/gui/buy.cpp:49
-#: src/gui/buy.cpp:78
-#: src/gui/buysell.cpp:47
+#: src/gui/buy.cpp:49 src/gui/buy.cpp:78 src/gui/buysell.cpp:47
msgid "Buy"
msgstr "Acheter"
-#: src/gui/buy.cpp:69
-#: src/gui/buy.cpp:256
-#: src/gui/sell.cpp:71
+#: src/gui/buy.cpp:69 src/gui/buy.cpp:256 src/gui/sell.cpp:71
#: src/gui/sell.cpp:278
#, c-format
msgid "Price: %s / Total: %s"
@@ -562,39 +604,26 @@ msgstr "Prix : %s / Total : %s"
#. TRANSLATORS: This is a narrow symbol used to denote 'increasing'.
#. You may change this symbol if your language uses another.
-#: src/gui/buy.cpp:74
-#: src/gui/itemamount.cpp:102
-#: src/gui/npcdialog.cpp:104
-#: src/gui/sell.cpp:74
-#: src/gui/statuswindow.cpp:430
+#: src/gui/buy.cpp:74 src/gui/itemamount.cpp:102 src/gui/npcdialog.cpp:104
+#: src/gui/sell.cpp:74 src/gui/statuswindow.cpp:430
msgid "+"
msgstr "+"
#. TRANSLATORS: This is a narrow symbol used to denote 'decreasing'.
#. You may change this symbol if your language uses another.
-#: src/gui/buy.cpp:77
-#: src/gui/itemamount.cpp:101
-#: src/gui/npcdialog.cpp:105
-#: src/gui/sell.cpp:75
-#: src/gui/statuswindow.cpp:442
+#: src/gui/buy.cpp:77 src/gui/itemamount.cpp:101 src/gui/npcdialog.cpp:105
+#: src/gui/sell.cpp:75 src/gui/statuswindow.cpp:442
msgid "-"
msgstr "-"
-#: src/gui/buy.cpp:79
-#: src/gui/quitdialog.cpp:40
-#: src/gui/quitdialog.cpp:42
-#: src/gui/quitdialog.cpp:43
-#: src/gui/sell.cpp:77
-#: src/gui/serverdialog.cpp:232
+#: src/gui/buy.cpp:79 src/gui/quitdialog.cpp:40 src/gui/quitdialog.cpp:42
+#: src/gui/quitdialog.cpp:43 src/gui/sell.cpp:77 src/gui/serverdialog.cpp:232
#: src/keyboardconfig.cpp:103
msgid "Quit"
msgstr "Quitter"
-#: src/gui/buy.cpp:80
-#: src/gui/sell.cpp:78
-#: src/gui/statuswindow.cpp:354
-#: src/gui/statuswindow.cpp:429
-#: src/gui/statuswindow.cpp:463
+#: src/gui/buy.cpp:80 src/gui/sell.cpp:78 src/gui/statuswindow.cpp:354
+#: src/gui/statuswindow.cpp:429 src/gui/statuswindow.cpp:463
msgid "Max"
msgstr "Max."
@@ -602,39 +631,26 @@ msgstr "Max."
msgid "Shop"
msgstr "Magasin"
-#: src/gui/buysell.cpp:47
-#: src/gui/sell.cpp:49
-#: src/gui/sell.cpp:76
+#: src/gui/buysell.cpp:47 src/gui/sell.cpp:49 src/gui/sell.cpp:76
msgid "Sell"
msgstr "Vendre"
-#: src/gui/buysell.cpp:47
-#: src/gui/changeemaildialog.cpp:55
-#: src/gui/changepassworddialog.cpp:58
-#: src/gui/charcreatedialog.cpp:79
-#: src/gui/connectiondialog.cpp:44
-#: src/gui/itemamount.cpp:104
-#: src/gui/npcpostdialog.cpp:57
-#: src/gui/popupmenu.cpp:175
-#: src/gui/popupmenu.cpp:194
-#: src/gui/popupmenu.cpp:380
-#: src/gui/quitdialog.cpp:47
-#: src/gui/register.cpp:74
-#: src/gui/setup.cpp:51
-#: src/gui/socialwindow.cpp:279
-#: src/gui/textdialog.cpp:40
-#: src/gui/unregisterdialog.cpp:56
-#: src/gui/updatewindow.cpp:144
+#: src/gui/buysell.cpp:47 src/gui/changeemaildialog.cpp:55
+#: src/gui/changepassworddialog.cpp:58 src/gui/charcreatedialog.cpp:79
+#: src/gui/connectiondialog.cpp:44 src/gui/itemamount.cpp:104
+#: src/gui/npcpostdialog.cpp:57 src/gui/popupmenu.cpp:175
+#: src/gui/popupmenu.cpp:194 src/gui/popupmenu.cpp:380
+#: src/gui/quitdialog.cpp:47 src/gui/register.cpp:74 src/gui/setup.cpp:51
+#: src/gui/socialwindow.cpp:279 src/gui/textdialog.cpp:40
+#: src/gui/unregisterdialog.cpp:56 src/gui/updatewindow.cpp:144
msgid "Cancel"
msgstr "Annuler"
-#: src/gui/changeemaildialog.cpp:45
-#: src/gui/changeemaildialog.cpp:54
+#: src/gui/changeemaildialog.cpp:45 src/gui/changeemaildialog.cpp:54
msgid "Change Email Address"
msgstr "Modifier l'adresse mail"
-#: src/gui/changeemaildialog.cpp:49
-#: src/gui/changepassworddialog.cpp:52
+#: src/gui/changeemaildialog.cpp:49 src/gui/changepassworddialog.cpp:52
#, c-format
msgid "Account: %s"
msgstr "Compte : %s"
@@ -657,16 +673,13 @@ msgstr "L'adresse email ne doit pas être plus longue que %d caractères."
msgid "The email address entries mismatch."
msgstr "Les deux adresses email ne correspondent pas."
-#: src/gui/changepassworddialog.cpp:47
-#: src/gui/changepassworddialog.cpp:56
+#: src/gui/changepassworddialog.cpp:47 src/gui/changepassworddialog.cpp:56
#: src/gui/charselectdialog.cpp:128
msgid "Change Password"
msgstr "Changer le mot de passe"
-#: src/gui/changepassworddialog.cpp:61
-#: src/gui/login.cpp:55
-#: src/gui/register.cpp:68
-#: src/gui/unregisterdialog.cpp:53
+#: src/gui/changepassworddialog.cpp:61 src/gui/login.cpp:55
+#: src/gui/register.cpp:68 src/gui/unregisterdialog.cpp:53
msgid "Password:"
msgstr "Mot de passe :"
@@ -689,31 +702,33 @@ msgid "The new password needs to be less than %d characters long."
msgstr "Le mot de passe ne doit pas être plus long que %d caractères."
#: src/gui/changepassworddialog.cpp:130
+#, fuzzy
msgid "The new password entries mismatch."
-msgstr "Les anciens mots de passe ne correspondent pas."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Les anciens mots de passe ne correspondent pas.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Les nouveaux mots de passe ne correspondent pas."
#: src/gui/charcreatedialog.cpp:53
msgid "Create Character"
msgstr "Création du personnage"
-#: src/gui/charcreatedialog.cpp:67
-#: src/gui/login.cpp:54
+#: src/gui/charcreatedialog.cpp:67 src/gui/login.cpp:54
#: src/gui/register.cpp:67
msgid "Name:"
msgstr "Nom :"
#. TRANSLATORS: This is a narrow symbol used to denote 'next'.
#. You may change this symbol if your language uses another.
-#: src/gui/charcreatedialog.cpp:70
-#: src/gui/charcreatedialog.cpp:75
+#: src/gui/charcreatedialog.cpp:70 src/gui/charcreatedialog.cpp:75
#: src/gui/outfitwindow.cpp:67
msgid ">"
msgstr ">"
#. TRANSLATORS: This is a narrow symbol used to denote 'previous'.
#. You may change this symbol if your language uses another.
-#: src/gui/charcreatedialog.cpp:73
-#: src/gui/charcreatedialog.cpp:76
+#: src/gui/charcreatedialog.cpp:73 src/gui/charcreatedialog.cpp:76
#: src/gui/outfitwindow.cpp:66
msgid "<"
msgstr "<"
@@ -726,24 +741,20 @@ msgstr "Couleur des cheveux :"
msgid "Hair style:"
msgstr "Coupe de cheveux :"
-#: src/gui/charcreatedialog.cpp:78
-#: src/gui/charselectdialog.cpp:390
+#: src/gui/charcreatedialog.cpp:78 src/gui/charselectdialog.cpp:390
#: src/gui/socialwindow.cpp:333
msgid "Create"
msgstr "Créer"
-#: src/gui/charcreatedialog.cpp:80
-#: src/gui/register.cpp:90
+#: src/gui/charcreatedialog.cpp:80 src/gui/register.cpp:90
msgid "Male"
msgstr "Masculin"
-#: src/gui/charcreatedialog.cpp:81
-#: src/gui/register.cpp:91
+#: src/gui/charcreatedialog.cpp:81 src/gui/register.cpp:91
msgid "Female"
msgstr "Féminin"
-#: src/gui/charcreatedialog.cpp:99
-#: src/gui/charcreatedialog.cpp:251
+#: src/gui/charcreatedialog.cpp:99 src/gui/charcreatedialog.cpp:251
#, c-format
msgid "Please distribute %d points"
msgstr "Veuillez distribuer %d points"
@@ -777,8 +788,7 @@ msgstr "Gestion du compte et du personnage"
msgid "Switch Login"
msgstr "Changer de login"
-#: src/gui/charselectdialog.cpp:141
-#: src/gui/unregisterdialog.cpp:47
+#: src/gui/charselectdialog.cpp:141 src/gui/unregisterdialog.cpp:47
#: src/gui/unregisterdialog.cpp:55
msgid "Unregister"
msgstr "Se désinscrire"
@@ -787,8 +797,7 @@ msgstr "Se désinscrire"
msgid "Change Email"
msgstr "Modifier l'adresse email"
-#: src/gui/charselectdialog.cpp:336
-#: src/gui/serverdialog.cpp:235
+#: src/gui/charselectdialog.cpp:336 src/gui/serverdialog.cpp:235
#: src/gui/setup_players.cpp:228
msgid "Delete"
msgstr "Supprimer"
@@ -797,8 +806,7 @@ msgstr "Supprimer"
msgid "Choose"
msgstr "Choisir"
-#: src/gui/charselectdialog.cpp:392
-#: src/gui/charselectdialog.cpp:393
+#: src/gui/charselectdialog.cpp:392 src/gui/charselectdialog.cpp:393
msgid "(empty)"
msgstr "(vide)"
@@ -837,38 +845,32 @@ msgstr "Debug"
msgid "%d FPS (OpenGL)"
msgstr "%d FPS (OpenGL)"
-#: src/gui/debugwindow.cpp:61
-#: src/gui/debugwindow.cpp:64
+#: src/gui/debugwindow.cpp:61 src/gui/debugwindow.cpp:64
#, c-format
msgid "%d FPS"
msgstr "%d FPS"
-#: src/gui/debugwindow.cpp:65
-#: src/gui/debugwindow.cpp:104
+#: src/gui/debugwindow.cpp:65 src/gui/debugwindow.cpp:104
#, c-format
msgid "Music: %s"
msgstr "Musique : %s"
-#: src/gui/debugwindow.cpp:66
-#: src/gui/debugwindow.cpp:108
+#: src/gui/debugwindow.cpp:66 src/gui/debugwindow.cpp:108
#, c-format
msgid "Map: %s"
msgstr "Carte : %s"
-#: src/gui/debugwindow.cpp:67
-#: src/gui/debugwindow.cpp:106
+#: src/gui/debugwindow.cpp:67 src/gui/debugwindow.cpp:106
#, c-format
msgid "Minimap: %s"
msgstr "Plan : %s"
-#: src/gui/debugwindow.cpp:68
-#: src/gui/debugwindow.cpp:99
+#: src/gui/debugwindow.cpp:68 src/gui/debugwindow.cpp:99
#, c-format
msgid "Cursor: (%d, %d)"
msgstr "Curseur : (%d, %d)"
-#: src/gui/debugwindow.cpp:69
-#: src/gui/debugwindow.cpp:111
+#: src/gui/debugwindow.cpp:69 src/gui/debugwindow.cpp:111
#, c-format
msgid "Particle count: %d"
msgstr "Effets de particules : %d"
@@ -883,15 +885,12 @@ msgstr "Détail des particules : %s"
msgid "Ambient FX: %s"
msgstr "Effets ambiants : %s"
-#: src/gui/equipmentwindow.cpp:69
-#: src/gui/windowmenu.cpp:55
+#: src/gui/equipmentwindow.cpp:69 src/gui/windowmenu.cpp:55
msgid "Equipment"
msgstr "Équipement"
-#: src/gui/equipmentwindow.cpp:87
-#: src/gui/inventorywindow.cpp:87
-#: src/gui/inventorywindow.cpp:313
-#: src/gui/popupmenu.cpp:350
+#: src/gui/equipmentwindow.cpp:87 src/gui/inventorywindow.cpp:87
+#: src/gui/inventorywindow.cpp:313 src/gui/popupmenu.cpp:350
msgid "Unequip"
msgstr "Retirer"
@@ -899,13 +898,11 @@ msgstr "Retirer"
msgid "Help"
msgstr "Aide"
-#: src/gui/help.cpp:51
-#: src/gui/npcdialog.cpp:47
+#: src/gui/help.cpp:51 src/gui/npcdialog.cpp:47
msgid "Close"
msgstr "Fermer"
-#: src/gui/inventorywindow.cpp:59
-#: src/gui/windowmenu.cpp:56
+#: src/gui/inventorywindow.cpp:59 src/gui/windowmenu.cpp:56
msgid "Inventory"
msgstr "Inventaire"
@@ -917,31 +914,26 @@ msgstr "Stockage"
msgid "Slots:"
msgstr "Cases :"
-#: src/gui/inventorywindow.cpp:85
-#: src/gui/inventorywindow.cpp:315
+#: src/gui/inventorywindow.cpp:85 src/gui/inventorywindow.cpp:315
#: src/gui/popupmenu.cpp:352
msgid "Equip"
msgstr "Équiper"
-#: src/gui/inventorywindow.cpp:86
-#: src/gui/inventorywindow.cpp:319
+#: src/gui/inventorywindow.cpp:86 src/gui/inventorywindow.cpp:319
#: src/gui/popupmenu.cpp:355
msgid "Use"
msgstr "Utiliser"
-#: src/gui/inventorywindow.cpp:99
-#: src/gui/inventorywindow.cpp:323
+#: src/gui/inventorywindow.cpp:99 src/gui/inventorywindow.cpp:323
#: src/gui/popupmenu.cpp:358
msgid "Drop..."
msgstr "Jeter..."
-#: src/gui/inventorywindow.cpp:100
-#: src/gui/popupmenu.cpp:364
+#: src/gui/inventorywindow.cpp:100 src/gui/popupmenu.cpp:364
msgid "Split"
msgstr "Partager"
-#: src/gui/inventorywindow.cpp:101
-#: src/gui/outfitwindow.cpp:51
+#: src/gui/inventorywindow.cpp:101 src/gui/outfitwindow.cpp:51
msgid "Outfits"
msgstr "Tenues"
@@ -949,26 +941,20 @@ msgstr "Tenues"
msgid "Weight:"
msgstr "Poids :"
-#: src/gui/inventorywindow.cpp:120
-#: src/gui/popupmenu.cpp:369
+#: src/gui/inventorywindow.cpp:120 src/gui/popupmenu.cpp:369
msgid "Store"
msgstr "Entreposer"
-#: src/gui/inventorywindow.cpp:121
-#: src/gui/popupmenu.cpp:376
+#: src/gui/inventorywindow.cpp:121 src/gui/popupmenu.cpp:376
msgid "Retrieve"
msgstr "Récupérer"
-#: src/gui/inventorywindow.cpp:325
-#: src/gui/popupmenu.cpp:360
+#: src/gui/inventorywindow.cpp:325 src/gui/popupmenu.cpp:360
msgid "Drop"
msgstr "Jeter"
-#: src/gui/itemamount.cpp:103
-#: src/gui/okdialog.cpp:42
-#: src/gui/quitdialog.cpp:46
-#: src/gui/textdialog.cpp:39
-#: src/gui/trade.cpp:71
+#: src/gui/itemamount.cpp:103 src/gui/okdialog.cpp:42
+#: src/gui/quitdialog.cpp:46 src/gui/textdialog.cpp:39 src/gui/trade.cpp:71
#: src/gui/trade.cpp:73
msgid "OK"
msgstr "Ok"
@@ -1002,8 +988,7 @@ msgstr "Choisissez le nombre d'objets à déplacer."
msgid "Weight: %s"
msgstr "Poids : %s"
-#: src/gui/login.cpp:51
-#: src/gui/login.cpp:63
+#: src/gui/login.cpp:51 src/gui/login.cpp:63
msgid "Login"
msgstr "Connexion"
@@ -1011,9 +996,7 @@ msgstr "Connexion"
msgid "Remember username"
msgstr "Se souvenir du nom d'utilisateur"
-#: src/gui/login.cpp:61
-#: src/gui/register.cpp:58
-#: src/gui/register.cpp:73
+#: src/gui/login.cpp:61 src/gui/register.cpp:58 src/gui/register.cpp:73
msgid "Register"
msgstr "S'inscrire"
@@ -1027,10 +1010,10 @@ msgstr "Enregistrement désactivé"
#: src/gui/login.cpp:129
msgid "You need to use the website to register an account for this server."
-msgstr "Veuillez enregistrer votre compte sur la page du site prévue à cet effet."
+msgstr ""
+"Veuillez enregistrer votre compte sur la page du site prévue à cet effet."
-#: src/gui/minimap.cpp:46
-#: src/gui/minimap.cpp:87
+#: src/gui/minimap.cpp:46 src/gui/minimap.cpp:87
msgid "Map"
msgstr "Plan"
@@ -1050,8 +1033,7 @@ msgstr "Suivant"
msgid "Submit"
msgstr "Soumettre"
-#: src/gui/npcdialog.cpp:53
-#: src/gui/npcpostdialog.cpp:41
+#: src/gui/npcdialog.cpp:53 src/gui/npcpostdialog.cpp:41
msgid "NPC"
msgstr "PNJ"
@@ -1084,8 +1066,7 @@ msgstr "Envoyer"
msgid "Failed to send as sender or letter invalid."
msgstr "Echec de l'envoi comme émetteur ou caractère invalide."
-#: src/gui/outfitwindow.cpp:68
-#: src/gui/outfitwindow.cpp:141
+#: src/gui/outfitwindow.cpp:68 src/gui/outfitwindow.cpp:141
#: src/gui/outfitwindow.cpp:154
#, c-format
msgid "Outfit: %d"
@@ -1100,8 +1081,7 @@ msgstr "Retirer d'abord l'équipement"
msgid "Trade with %s..."
msgstr "Troquer avec %s..."
-#: src/gui/popupmenu.cpp:87
-#: src/gui/popupmenu.cpp:158
+#: src/gui/popupmenu.cpp:87 src/gui/popupmenu.cpp:158
#, c-format
msgid "Attack %s"
msgstr "Attaquer %s"
@@ -1126,8 +1106,7 @@ msgstr "Ignorer %s"
msgid "Ignore %s"
msgstr "Ignorer %s"
-#: src/gui/popupmenu.cpp:114
-#: src/gui/popupmenu.cpp:123
+#: src/gui/popupmenu.cpp:114 src/gui/popupmenu.cpp:123
#, c-format
msgid "Unignore %s"
msgstr "Cesser d'ignorer %s"
@@ -1169,8 +1148,7 @@ msgstr "Ajouter les noms dans le flux de conversation"
msgid "Pick up %s"
msgstr "Ramasser %s"
-#: src/gui/popupmenu.cpp:190
-#: src/gui/popupmenu.cpp:378
+#: src/gui/popupmenu.cpp:190 src/gui/popupmenu.cpp:378
msgid "Add to chat"
msgstr "Ajouter à la conversation"
@@ -1228,14 +1206,12 @@ msgstr "Le nom d'utilisateur doit faire au moins %d caractères."
msgid "The username needs to be less than %d characters long."
msgstr "Le nom d'utilisateur doit faire moins de %d caractères."
-#: src/gui/register.cpp:182
-#: src/gui/unregisterdialog.cpp:117
+#: src/gui/register.cpp:182 src/gui/unregisterdialog.cpp:117
#, c-format
msgid "The password needs to be at least %d characters long."
msgstr "Le mot de passe doit faire au moins %d caractères."
-#: src/gui/register.cpp:190
-#: src/gui/unregisterdialog.cpp:124
+#: src/gui/register.cpp:190 src/gui/unregisterdialog.cpp:124
#, c-format
msgid "The password needs to be less than %d characters long."
msgstr "Le mot de passe doit faire moins de %d caractères."
@@ -1248,8 +1224,7 @@ msgstr "Les deux mots de passe sont différents"
msgid "Choose Your Server"
msgstr "Choisissez le serveur"
-#: src/gui/serverdialog.cpp:208
-#: src/gui/widgets/chattab.cpp:141
+#: src/gui/serverdialog.cpp:208 src/gui/widgets/chattab.cpp:141
msgid "Server:"
msgstr "Serveur :"
@@ -1325,7 +1300,9 @@ msgstr "Message"
#: src/gui/setup_audio.cpp:94
msgid "You may have to restart your client if you want to download new music"
-msgstr "Le client devra être redémarré afin de vous permettre de télécharger la musique."
+msgstr ""
+"Le client devra être redémarré afin de vous permettre de télécharger la "
+"musique."
#: src/gui/setup_audio.cpp:106
msgid "Sound Engine"
@@ -1343,25 +1320,21 @@ msgstr "Couleurs"
msgid "Type:"
msgstr "Type : "
-#: src/gui/setup_colors.cpp:82
-#: src/gui/setup_colors.cpp:330
+#: src/gui/setup_colors.cpp:82 src/gui/setup_colors.cpp:330
msgid "Static"
msgstr "Statique"
-#: src/gui/setup_colors.cpp:84
-#: src/gui/setup_colors.cpp:85
+#: src/gui/setup_colors.cpp:84 src/gui/setup_colors.cpp:85
#: src/gui/setup_colors.cpp:331
msgid "Pulse"
msgstr "Impulsion"
-#: src/gui/setup_colors.cpp:86
-#: src/gui/setup_colors.cpp:87
+#: src/gui/setup_colors.cpp:86 src/gui/setup_colors.cpp:87
#: src/gui/setup_colors.cpp:332
msgid "Rainbow"
msgstr "Arc-en-ciel"
-#: src/gui/setup_colors.cpp:88
-#: src/gui/setup_colors.cpp:89
+#: src/gui/setup_colors.cpp:88 src/gui/setup_colors.cpp:89
#: src/gui/setup_colors.cpp:332
msgid "Spectrum"
msgstr "Spectre"
@@ -1390,13 +1363,11 @@ msgstr "Appliquer"
msgid "Reset Windows"
msgstr "Rétablir les fenêtres"
-#: src/gui/setup_joystick.cpp:37
-#: src/gui/setup_joystick.cpp:78
+#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:78
msgid "Press the button to start calibration"
msgstr "Presser le bouton pour démarrer la calibration"
-#: src/gui/setup_joystick.cpp:38
-#: src/gui/setup_joystick.cpp:76
+#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:76
msgid "Calibrate"
msgstr "Calibrer"
@@ -1460,8 +1431,7 @@ msgstr "Négligé"
msgid "Ignored"
msgstr "Ignoré"
-#: src/gui/setup_players.cpp:206
-#: src/gui/setup_video.cpp:153
+#: src/gui/setup_players.cpp:206 src/gui/setup_video.cpp:153
msgid "???"
msgstr "???"
@@ -1490,8 +1460,13 @@ msgid "When ignoring:"
msgstr "Quand ignoré :"
#: src/gui/setup_video.cpp:134
+#, fuzzy
msgid "Tiny"
-msgstr "fin"
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"fin\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Fin"
#: src/gui/setup_video.cpp:135
msgid "Small"
@@ -1525,13 +1500,11 @@ msgstr "Bulles avec noms"
msgid "off"
msgstr "aucun"
-#: src/gui/setup_video.cpp:179
-#: src/gui/setup_video.cpp:192
+#: src/gui/setup_video.cpp:179 src/gui/setup_video.cpp:192
msgid "low"
msgstr "léger"
-#: src/gui/setup_video.cpp:180
-#: src/gui/setup_video.cpp:194
+#: src/gui/setup_video.cpp:180 src/gui/setup_video.cpp:194
msgid "high"
msgstr "élevé"
@@ -1621,19 +1594,24 @@ msgstr "Détail des particules"
msgid "Font size"
msgstr "Taille de police"
-#: src/gui/setup_video.cpp:279
-#: src/gui/setup_video.cpp:535
+#: src/gui/setup_video.cpp:279 src/gui/setup_video.cpp:535
#: src/gui/setup_video.cpp:665
msgid "None"
msgstr "Rien"
#: src/gui/setup_video.cpp:428
-msgid "Failed to switch to windowed mode and restoration of old mode also failed!"
-msgstr "Impossible de passer en mode fenêtré, et l'ancienne résolution n'est également pas accessible !"
+msgid ""
+"Failed to switch to windowed mode and restoration of old mode also failed!"
+msgstr ""
+"Impossible de passer en mode fenêtré, et l'ancienne résolution n'est "
+"également pas accessible !"
#: src/gui/setup_video.cpp:434
-msgid "Failed to switch to fullscreen mode and restoration of old mode also failed!"
-msgstr "Impossible de passer en mode plein-écran, et l'ancienne résolution n'est également pas accessible !"
+msgid ""
+"Failed to switch to fullscreen mode and restoration of old mode also failed!"
+msgstr ""
+"Impossible de passer en mode plein-écran, et l'ancienne résolution n'est "
+"également pas accessible !"
#: src/gui/setup_video.cpp:445
msgid "Switching to Full Screen"
@@ -1641,15 +1619,21 @@ msgstr "Passage en plein écran"
#: src/gui/setup_video.cpp:446
msgid "Restart needed for changes to take effect."
-msgstr "Les changements ne seront pris en compte qu'au prochain démarrage du jeu."
+msgstr ""
+"Les changements ne seront pris en compte qu'au prochain démarrage du jeu."
#: src/gui/setup_video.cpp:460
msgid "Changing to OpenGL"
msgstr "Activation d'OpenGL"
#: src/gui/setup_video.cpp:461
-msgid "Applying change to OpenGL requires restart. In case OpenGL messes up your game graphics, restart the game with the command line option \"--no-opengl\"."
-msgstr "Il est nécessaire de redémarrer le client pour appliquer les changements liés à OpenGL. Si OpenGL empêche un affichage correct, redémarrez le jeu avec l'option en ligne de commande : \"--no-opengl\"."
+msgid ""
+"Applying change to OpenGL requires restart. In case OpenGL messes up your "
+"game graphics, restart the game with the command line option \"--no-opengl\"."
+msgstr ""
+"Il est nécessaire de redémarrer le client pour appliquer les changements "
+"liés à OpenGL. Si OpenGL empêche un affichage correct, redémarrez le jeu "
+"avec l'option en ligne de commande : \"--no-opengl\"."
#: src/gui/setup_video.cpp:468
msgid "Deactivating OpenGL"
@@ -1657,14 +1641,14 @@ msgstr "Désactiver OpenGL"
#: src/gui/setup_video.cpp:469
msgid "Applying change to OpenGL requires restart."
-msgstr "Le changement OpenGL ne sera pris en compte qu'au prochain démarrage du jeu."
+msgstr ""
+"Le changement OpenGL ne sera pris en compte qu'au prochain démarrage du jeu."
#: src/gui/setup_video.cpp:477
msgid "Transparency disabled"
msgstr "Transparence désactivée"
-#: src/gui/setup_video.cpp:478
-#: src/gui/setup_video.cpp:486
+#: src/gui/setup_video.cpp:478 src/gui/setup_video.cpp:486
msgid "You must restart to apply changes."
msgstr "Vous devez redémarrer pour appliquer les changements."
@@ -1672,19 +1656,24 @@ msgstr "Vous devez redémarrer pour appliquer les changements."
msgid "Transparency enabled"
msgstr "Transparence activée."
-#: src/gui/setup_video.cpp:579
-#: src/gui/setup_video.cpp:584
+#: src/gui/setup_video.cpp:579 src/gui/setup_video.cpp:584
msgid "Screen Resolution Changed"
msgstr "Résolution de l'écran modifiée"
-#: src/gui/setup_video.cpp:580
-#: src/gui/setup_video.cpp:585
+#: src/gui/setup_video.cpp:580 src/gui/setup_video.cpp:585
msgid "Restart your client for the change to take effect."
msgstr "Redémarrez le jeu pour que les changements soient appliqués."
#: src/gui/setup_video.cpp:582
+#, fuzzy
msgid "Some windows may be moved to fit the lowered resolution."
-msgstr "Certaines fenêtre pourraient avoir été recentrée pour correspondre à la nouvelle résolution."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Certaines fenêtre pourraient avoir été recentrée pour correspondre à la "
+"nouvelle résolution.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Certaines fenêtre pourraient avoir été recentrées pour correspondre à la "
+"nouvelle résolution."
#: src/gui/setup_video.cpp:615
msgid "Particle Effect Settings Changed."
@@ -1694,8 +1683,7 @@ msgstr "Paramètres d'effet de particules modifiés."
msgid "Changes will take effect on map change."
msgstr "Les changements seront appliqués au changement de carte."
-#: src/gui/skilldialog.cpp:210
-#: src/gui/windowmenu.cpp:59
+#: src/gui/skilldialog.cpp:210 src/gui/windowmenu.cpp:59
msgid "Skills"
msgstr "Compétences"
@@ -1783,13 +1771,11 @@ msgstr "Êtes-vous sûr de vouloir quitter le groupe %s ?"
msgid "Create Guild"
msgstr "Créer une Guilde"
-#: src/gui/socialwindow.cpp:277
-#: src/gui/socialwindow.cpp:623
+#: src/gui/socialwindow.cpp:277 src/gui/socialwindow.cpp:623
msgid "Create Party"
msgstr "Créer un groupe"
-#: src/gui/socialwindow.cpp:316
-#: src/gui/windowmenu.cpp:64
+#: src/gui/socialwindow.cpp:316 src/gui/windowmenu.cpp:64
msgid "Social"
msgstr "Social"
@@ -1848,8 +1834,15 @@ msgid "Choose your guild's name."
msgstr "Choisissez le nom de la guilde."
#: src/gui/socialwindow.cpp:556
+#, fuzzy
msgid "Received guild request, but one already exists."
-msgstr "Vous avez reçu une demande pour rejoindre une guilde, mais il en existe déjà une autre."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Vous avez reçu une demande pour rejoindre une guilde, mais il en existe déjà "
+"une autre.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Vous avez reçu une demande pour rejoindre une guilde, mais il en existe déjà "
+"une."
#: src/gui/socialwindow.cpp:561
#, c-format
@@ -1862,7 +1855,8 @@ msgstr "Accepter l'invitation dans cette guilde"
#: src/gui/socialwindow.cpp:578
msgid "Received party request, but one already exists."
-msgstr "Vous avez reçu une demande de rejoindre un groupe, mais il en existe déjà un."
+msgstr ""
+"Vous avez reçu une demande de rejoindre un groupe, mais il en existe déjà un."
#: src/gui/socialwindow.cpp:588
msgid "You have been invited you to join a party."
@@ -1899,8 +1893,7 @@ msgstr "Nom du groupe"
msgid "Choose your party's name."
msgstr "Choisissez le nom du groupe."
-#: src/gui/specialswindow.cpp:85
-#: src/gui/windowmenu.cpp:62
+#: src/gui/specialswindow.cpp:85 src/gui/windowmenu.cpp:62
msgid "Specials"
msgstr "Cpt. spéciales"
@@ -1914,14 +1907,12 @@ msgstr "Set de Cpt. spéciales %d"
msgid "Special %d"
msgstr "Cpt. spéciale %d"
-#: src/gui/statuswindow.cpp:109
-#: src/gui/statuswindow.cpp:253
+#: src/gui/statuswindow.cpp:109 src/gui/statuswindow.cpp:253
#, c-format
msgid "Level: %d"
msgstr "Niveau : %d"
-#: src/gui/statuswindow.cpp:110
-#: src/gui/statuswindow.cpp:220
+#: src/gui/statuswindow.cpp:110 src/gui/statuswindow.cpp:220
#, c-format
msgid "Money: %s"
msgstr "Argent : %s"
@@ -1938,8 +1929,7 @@ msgstr "Exp :"
msgid "MP:"
msgstr "PM :"
-#: src/gui/statuswindow.cpp:141
-#: src/gui/statuswindow.cpp:228
+#: src/gui/statuswindow.cpp:141 src/gui/statuswindow.cpp:228
#, c-format
msgid "Job: %d"
msgstr "Metier : %d"
@@ -2002,8 +1992,7 @@ msgstr "Accepté. En attente..."
msgid "Trade: You"
msgstr "Échange : Vous"
-#: src/gui/trade.cpp:72
-#: src/gui/trade.cpp:73
+#: src/gui/trade.cpp:72 src/gui/trade.cpp:73
msgid "Trade"
msgstr "Échange"
@@ -2011,8 +2000,7 @@ msgstr "Échange"
msgid "Add"
msgstr "Ajouter"
-#: src/gui/trade.cpp:97
-#: src/gui/trade.cpp:133
+#: src/gui/trade.cpp:97 src/gui/trade.cpp:133
#, c-format
msgid "You get %s"
msgstr "Vous recevez %s"
@@ -2027,7 +2015,9 @@ msgstr "Changer"
#: src/gui/trade.cpp:273
msgid "Failed adding item. You can not overlap one kind of item on the window."
-msgstr "L'objet ne peux être ajouté. Vous ne pouvez ajouter deux fois le même objet dans cette fenêtre."
+msgstr ""
+"L'objet ne peux être ajouté. Vous ne pouvez ajouter deux fois le même objet "
+"dans cette fenêtre."
#: src/gui/trade.cpp:316
msgid "You don't have enough money."
@@ -2186,7 +2176,8 @@ msgstr "Cette commande quitte le salon."
#: src/gui/widgets/channeltab.cpp:75
msgid "If you're the last person in the channel, it will be deleted."
-msgstr "Si vous étiez la dernière personne présente dans ce salon, il sera supprimé."
+msgstr ""
+"Si vous étiez la dernière personne présente dans ce salon, il sera supprimé."
#: src/gui/widgets/channeltab.cpp:80
msgid "Command: /op <nick>"
@@ -2198,7 +2189,9 @@ msgstr "Cette commande donne les droit d'opérateur du salon à <nick>"
#: src/gui/widgets/channeltab.cpp:84
msgid "Channel operators can kick and op other users from the channel."
-msgstr "Seul les opérateurs du salon peuvent sortir des utilisateurs et donner les droit d'opérateur aux autres utilisateurs du salon."
+msgstr ""
+"Seul les opérateurs du salon peuvent sortir des utilisateurs et donner les "
+"droit d'opérateur aux autres utilisateurs du salon."
#: src/gui/widgets/channeltab.cpp:89
msgid "Command: /kick <nick>"
@@ -2260,7 +2253,9 @@ msgstr "Commande : /ignore"
#: src/gui/widgets/whispertab.cpp:89
msgid "This command ignores the other player regardless of current relations."
-msgstr "Cette commande permet d'ignorer un joueur qu'il soit indiqué comme ami ou non."
+msgstr ""
+"Cette commande permet d'ignorer un joueur qu'il soit indiqué comme ami ou "
+"non."
#: src/gui/widgets/whispertab.cpp:95
msgid "This command stops ignoring the other player if they are being ignored."
@@ -2302,8 +2297,7 @@ msgstr "Aller à gauche"
msgid "Move Right"
msgstr "Aller à droite"
-#: src/keyboardconfig.cpp:44
-#: src/net/tmwa/generalhandler.cpp:224
+#: src/keyboardconfig.cpp:44 src/net/tmwa/generalhandler.cpp:224
msgid "Attack"
msgstr "Attaquer"
@@ -2359,18 +2353,12 @@ msgstr "Activer / Désactiver les échanges"
msgid "Find Path to Mouse"
msgstr "Trouver le chemin vers la souris"
-#: src/keyboardconfig.cpp:58
-#: src/keyboardconfig.cpp:59
-#: src/keyboardconfig.cpp:60
-#: src/keyboardconfig.cpp:61
-#: src/keyboardconfig.cpp:62
-#: src/keyboardconfig.cpp:63
-#: src/keyboardconfig.cpp:64
-#: src/keyboardconfig.cpp:65
-#: src/keyboardconfig.cpp:66
-#: src/keyboardconfig.cpp:67
-#: src/keyboardconfig.cpp:68
-#: src/keyboardconfig.cpp:69
+#: src/keyboardconfig.cpp:58 src/keyboardconfig.cpp:59
+#: src/keyboardconfig.cpp:60 src/keyboardconfig.cpp:61
+#: src/keyboardconfig.cpp:62 src/keyboardconfig.cpp:63
+#: src/keyboardconfig.cpp:64 src/keyboardconfig.cpp:65
+#: src/keyboardconfig.cpp:66 src/keyboardconfig.cpp:67
+#: src/keyboardconfig.cpp:68 src/keyboardconfig.cpp:69
#, c-format
msgid "Item Shortcut %d"
msgstr "Raccourci Objet %d"
@@ -2396,8 +2384,13 @@ msgid "Skill Window"
msgstr "Fenêtre de compétences"
#: src/keyboardconfig.cpp:75
+#, fuzzy
msgid "Minimap Window"
-msgstr "Fenêtre du plan"
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Fenêtre du plan\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Fenêtre du miniplan"
#: src/keyboardconfig.cpp:76
msgid "Chat Window"
@@ -2435,18 +2428,12 @@ msgstr "Mettre la tenue"
msgid "Copy Outfit"
msgstr "Copier la tenue"
-#: src/keyboardconfig.cpp:85
-#: src/keyboardconfig.cpp:86
-#: src/keyboardconfig.cpp:87
-#: src/keyboardconfig.cpp:88
-#: src/keyboardconfig.cpp:89
-#: src/keyboardconfig.cpp:90
-#: src/keyboardconfig.cpp:91
-#: src/keyboardconfig.cpp:92
-#: src/keyboardconfig.cpp:93
-#: src/keyboardconfig.cpp:94
-#: src/keyboardconfig.cpp:95
-#: src/keyboardconfig.cpp:96
+#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86
+#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88
+#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90
+#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92
+#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94
+#: src/keyboardconfig.cpp:95 src/keyboardconfig.cpp:96
#, c-format
msgid "Emote Shortcut %d"
msgstr "Raccourci d'emote %d"
@@ -2485,8 +2472,12 @@ msgstr "Ignorer l'entrée 2"
#: src/keyboardconfig.cpp:184
#, c-format
-msgid "Conflict \"%s\" and \"%s\" keys. Resolve them, or gameplay may result in strange behaviour."
-msgstr "Conflit entre les touches \"%s\" and \"%s\". Veuillez changer au moins l'une des touches ou attendez vous à un possible comportement étrange du jeu."
+msgid ""
+"Conflict \"%s\" and \"%s\" keys. Resolve them, or gameplay may result in "
+"strange behaviour."
+msgstr ""
+"Conflit entre les touches \"%s\" and \"%s\". Veuillez changer au moins l'une "
+"des touches ou attendez vous à un possible comportement étrange du jeu."
#: src/localplayer.cpp:1248
msgid "Unable to pick up item."
@@ -2547,15 +2538,19 @@ msgstr " -p --port : Port de connexion au serveur"
#: src/main.cpp:52
msgid " --update-host : Use this update host"
-msgstr " --update-host : Utilise cette URL pour les fichiers de mises à jour"
+msgstr ""
+" --update-host : Utilise cette URL pour les fichiers de mises à jour"
#: src/main.cpp:53
msgid " -D --default : Choose default character server and character"
-msgstr " -D --default : Choisir le serveur de personnages et le personnage par défaut"
+msgstr ""
+" -D --default : Choisir le serveur de personnages et le personnage par "
+"défaut"
#: src/main.cpp:55
msgid " -u --skip-update : Skip the update downloads"
-msgstr " -u --skip-update : Ne pas effectuer le téléchargement des mises à jour"
+msgstr ""
+" -u --skip-update : Ne pas effectuer le téléchargement des mises à jour"
#: src/main.cpp:56
msgid " -d --data : Directory to load game data from"
@@ -2563,7 +2558,8 @@ msgstr " -d --data : Répertoire des données du jeu à charger"
#: src/main.cpp:57
msgid " -L --localdata-dir : Directory to use as local data directory"
-msgstr " -L --localdata-dir : Répertoire à utiliser comme répertoire principal"
+msgstr ""
+" -L --localdata-dir : Répertoire à utiliser comme répertoire principal"
#: src/main.cpp:58
msgid " --screenshot-dir : Directory to store screenshots"
@@ -2573,81 +2569,85 @@ msgstr " --screenshot-dir : Répertoire à utiliser pour les imprime-écran
msgid " --no-opengl : Disable OpenGL for this session"
msgstr " --no-opengl : Désactive l'OpenGL pour cette session"
-#: src/net/manaserv/beinghandler.cpp:304
-#: src/net/tmwa/playerhandler.cpp:103
+#: src/net/manaserv/beinghandler.cpp:304 src/net/tmwa/playerhandler.cpp:103
msgid "You are dead."
msgstr "Vous êtes mort."
-#: src/net/manaserv/beinghandler.cpp:305
-#: src/net/tmwa/playerhandler.cpp:104
+#: src/net/manaserv/beinghandler.cpp:305 src/net/tmwa/playerhandler.cpp:104
msgid "We regret to inform you that your character was killed in battle."
-msgstr "Nous avons le regret de vous informer que votre personnage est mort sur le champ de bataille."
+msgstr ""
+"Nous avons le regret de vous informer que votre personnage est mort sur le "
+"champ de bataille."
-#: src/net/manaserv/beinghandler.cpp:307
-#: src/net/tmwa/playerhandler.cpp:106
+#: src/net/manaserv/beinghandler.cpp:307 src/net/tmwa/playerhandler.cpp:106
msgid "You are not that alive anymore."
msgstr "Vous n'êtes plus vraiment en vie."
-#: src/net/manaserv/beinghandler.cpp:308
-#: src/net/tmwa/playerhandler.cpp:107
+#: src/net/manaserv/beinghandler.cpp:308 src/net/tmwa/playerhandler.cpp:107
msgid "The cold hands of the grim reaper are grabbing for your soul."
msgstr "Les mains gelées de la faucheuse viennent réclamer votre âme."
-#: src/net/manaserv/beinghandler.cpp:309
-#: src/net/tmwa/playerhandler.cpp:108
+#: src/net/manaserv/beinghandler.cpp:309 src/net/tmwa/playerhandler.cpp:108
msgid "Game Over!"
msgstr "Fin de la partie !"
-#: src/net/manaserv/beinghandler.cpp:310
-#: src/net/tmwa/playerhandler.cpp:110
-msgid "No, kids. Your character did not really die. It... err... went to a better place."
-msgstr "Non, les enfants. Ton personnage n'est pas vraiment mort... Il... enfin,.. il... est parti dans un monde meilleur."
+#: src/net/manaserv/beinghandler.cpp:310 src/net/tmwa/playerhandler.cpp:110
+msgid ""
+"No, kids. Your character did not really die. It... err... went to a better "
+"place."
+msgstr ""
+"Non, les enfants. Ton personnage n'est pas vraiment mort... Il... enfin,.. "
+"il... est parti dans un monde meilleur."
-#: src/net/manaserv/beinghandler.cpp:312
-#: src/net/tmwa/playerhandler.cpp:112
-msgid "Your plan of breaking your enemies weapon by bashing it with your throat failed."
-msgstr "Votre tentative de casser l'arme de votre ennemi en la frappant avec votre gorge a échoué."
+#: src/net/manaserv/beinghandler.cpp:312 src/net/tmwa/playerhandler.cpp:112
+msgid ""
+"Your plan of breaking your enemies weapon by bashing it with your throat "
+"failed."
+msgstr ""
+"Votre tentative de casser l'arme de votre ennemi en la frappant avec votre "
+"gorge a échoué."
-#: src/net/manaserv/beinghandler.cpp:314
-#: src/net/tmwa/playerhandler.cpp:114
+#: src/net/manaserv/beinghandler.cpp:314 src/net/tmwa/playerhandler.cpp:114
msgid "I guess this did not run too well."
msgstr "J'ai la sensation que cela ne s'est pas aussi bien passé que prévu."
-#: src/net/manaserv/beinghandler.cpp:315
-#: src/net/tmwa/playerhandler.cpp:116
+#: src/net/manaserv/beinghandler.cpp:315 src/net/tmwa/playerhandler.cpp:116
msgid "Do you want your possessions identified?"
msgstr "Voulez-vous que vos biens soient identifiés ?"
-#: src/net/manaserv/beinghandler.cpp:316
-#: src/net/tmwa/playerhandler.cpp:118
+#: src/net/manaserv/beinghandler.cpp:316 src/net/tmwa/playerhandler.cpp:118
msgid "Sadly, no trace of you was ever found..."
msgstr "Tristement, aucune trace de vous ne fut jamais retrouvée..."
-#: src/net/manaserv/beinghandler.cpp:317
-#: src/net/tmwa/playerhandler.cpp:120
+#: src/net/manaserv/beinghandler.cpp:317 src/net/tmwa/playerhandler.cpp:120
msgid "Annihilated."
msgstr "Vaporisé."
-#: src/net/manaserv/beinghandler.cpp:318
-#: src/net/tmwa/playerhandler.cpp:122
+#: src/net/manaserv/beinghandler.cpp:318 src/net/tmwa/playerhandler.cpp:122
msgid "Looks like you got your head handed to you."
msgstr "Il semble que l'on vous ait rendu votre tête."
-#: src/net/manaserv/beinghandler.cpp:319
-#: src/net/tmwa/playerhandler.cpp:124
-msgid "You screwed up again, dump your body down the tubes and get you another one."
-msgstr "Vous avez encore échoué, jetez votre corps aux oubliettes et prenez en un autre."
+#: src/net/manaserv/beinghandler.cpp:319 src/net/tmwa/playerhandler.cpp:124
+msgid ""
+"You screwed up again, dump your body down the tubes and get you another one."
+msgstr ""
+"Vous avez encore échoué, jetez votre corps aux oubliettes et prenez en un "
+"autre."
#: src/net/manaserv/beinghandler.cpp:324
+#, fuzzy
msgid "Press OK to respawn."
-msgstr " Cliquer sur OK pour ressusciter"
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+" Cliquer sur OK pour ressusciter\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Cliquer sur OK pour ressusciter"
#: src/net/manaserv/beinghandler.cpp:325
msgid "You Died"
msgstr "Vous êtes mort"
-#: src/net/manaserv/charhandler.cpp:134
-#: src/net/manaserv/charhandler.cpp:202
+#: src/net/manaserv/charhandler.cpp:134 src/net/manaserv/charhandler.cpp:202
msgid "Not logged in."
msgstr "Non connecté."
@@ -2687,19 +2687,14 @@ msgstr "Les caractéristiques du personnage sont trop basses."
msgid "One stat is zero."
msgstr "L'une des statistiques est à zéro."
-#: src/net/manaserv/charhandler.cpp:164
-#: src/net/manaserv/loginhandler.cpp:96
-#: src/net/manaserv/loginhandler.cpp:127
-#: src/net/manaserv/loginhandler.cpp:161
-#: src/net/manaserv/loginhandler.cpp:279
-#: src/net/manaserv/loginhandler.cpp:316
-#: src/net/tmwa/loginhandler.cpp:95
-#: src/net/tmwa/loginhandler.cpp:182
+#: src/net/manaserv/charhandler.cpp:164 src/net/manaserv/loginhandler.cpp:96
+#: src/net/manaserv/loginhandler.cpp:127 src/net/manaserv/loginhandler.cpp:161
+#: src/net/manaserv/loginhandler.cpp:279 src/net/manaserv/loginhandler.cpp:316
+#: src/net/tmwa/loginhandler.cpp:95 src/net/tmwa/loginhandler.cpp:182
msgid "Unknown error."
msgstr "Erreur inconnue."
-#: src/net/manaserv/charhandler.cpp:193
-#: src/net/tmwa/charserverhandler.cpp:150
+#: src/net/manaserv/charhandler.cpp:193 src/net/tmwa/charserverhandler.cpp:150
msgid "Info"
msgstr "Informations"
@@ -2720,15 +2715,13 @@ msgstr "Erreur inconnue (%d)."
msgid "No gameservers are available."
msgstr "Pas de serveur de jeu disponible."
-#: src/net/manaserv/chathandler.cpp:180
-#: src/net/manaserv/chathandler.cpp:301
+#: src/net/manaserv/chathandler.cpp:180 src/net/manaserv/chathandler.cpp:301
#: src/net/manaserv/guildhandler.cpp:259
#, c-format
msgid "Topic: %s"
msgstr "Sujet : %s"
-#: src/net/manaserv/chathandler.cpp:184
-#: src/net/manaserv/chathandler.cpp:262
+#: src/net/manaserv/chathandler.cpp:184 src/net/manaserv/chathandler.cpp:262
msgid "Players in this channel:"
msgstr "Joueurs dans ce canal :"
@@ -2792,8 +2785,7 @@ msgstr "Echec lors de la promotion du membre"
msgid "Wrong magic_token."
msgstr "Mauvais jeton de sécurité."
-#: src/net/manaserv/loginhandler.cpp:90
-#: src/net/manaserv/loginhandler.cpp:269
+#: src/net/manaserv/loginhandler.cpp:90 src/net/manaserv/loginhandler.cpp:269
msgid "Already logged in."
msgstr "Déjà connecté."
@@ -2805,13 +2797,11 @@ msgstr "Compte banni."
msgid "New password incorrect."
msgstr "Nouveau mot de passe incorrect."
-#: src/net/manaserv/loginhandler.cpp:121
-#: src/net/tmwa/loginhandler.cpp:89
+#: src/net/manaserv/loginhandler.cpp:121 src/net/tmwa/loginhandler.cpp:89
msgid "Old password incorrect."
msgstr "Ancien mot de passe incorrect."
-#: src/net/manaserv/loginhandler.cpp:124
-#: src/net/manaserv/loginhandler.cpp:155
+#: src/net/manaserv/loginhandler.cpp:124 src/net/manaserv/loginhandler.cpp:155
msgid "Account not connected. Please login first."
msgstr "Compte non connecté. Identifiez-vous tout d'abord."
@@ -2828,11 +2818,13 @@ msgid "The new email address already exists."
msgstr "Cette adresse email existe déjà pour un autre compte."
#: src/net/manaserv/loginhandler.cpp:239
-msgid "Client registration is not allowed. Please contact server administration."
-msgstr "L'enregistrement de comptes en utilisant le client n'est pas permis. Veuillez contacter l'administrateur du serveur."
+msgid ""
+"Client registration is not allowed. Please contact server administration."
+msgstr ""
+"L'enregistrement de comptes en utilisant le client n'est pas permis. "
+"Veuillez contacter l'administrateur du serveur."
-#: src/net/manaserv/loginhandler.cpp:263
-#: src/net/manaserv/loginhandler.cpp:300
+#: src/net/manaserv/loginhandler.cpp:263 src/net/manaserv/loginhandler.cpp:300
msgid "Client version is too old."
msgstr "La version de votre client est trop ancienne."
@@ -2846,7 +2838,9 @@ msgstr "Compte banni"
#: src/net/manaserv/loginhandler.cpp:275
msgid "Login attempt too soon after previous attempt."
-msgstr "La tentative de connexion a été faite trop rapidement depuis la dernière tentative."
+msgstr ""
+"La tentative de connexion a été faite trop rapidement depuis la dernière "
+"tentative."
#: src/net/manaserv/loginhandler.cpp:303
msgid "Wrong username, password or email address."
@@ -2862,73 +2856,74 @@ msgstr "Cette adresse email existe déjà."
#: src/net/manaserv/loginhandler.cpp:312
msgid "You took too long with the captcha or your response was incorrect."
-msgstr "Vous avez mis trop de temps pour répondre au Captcha ou votre réponse est incorrecte."
+msgstr ""
+"Vous avez mis trop de temps pour répondre au Captcha ou votre réponse est "
+"incorrecte."
#: src/net/manaserv/partyhandler.cpp:88
+#, fuzzy
msgid "Joined party."
-msgstr "Groupe rejoind."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Groupe rejoind.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Groupe rejoint."
#: src/net/manaserv/partyhandler.cpp:106
-#, c-format
+#, fuzzy, c-format
msgid "%s joined the party."
-msgstr "%s a rejoind le groupe."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"%s a rejoind le groupe.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"%s a rejoint le groupe."
#: src/net/manaserv/partyhandler.cpp:123
#, c-format
msgid "%s rejected your invite."
msgstr "%s a refusé votre invitation."
-#: src/net/manaserv/stats.cpp:56
-#: src/net/tmwa/generalhandler.cpp:217
+#: src/net/manaserv/stats.cpp:56 src/net/tmwa/generalhandler.cpp:217
msgid "Strength"
msgstr "Force"
-#: src/net/manaserv/stats.cpp:58
-#: src/net/tmwa/generalhandler.cpp:101
+#: src/net/manaserv/stats.cpp:58 src/net/tmwa/generalhandler.cpp:101
#, c-format
msgid "Strength %+d"
msgstr "Force %+d"
-#: src/net/manaserv/stats.cpp:68
-#: src/net/tmwa/generalhandler.cpp:218
+#: src/net/manaserv/stats.cpp:68 src/net/tmwa/generalhandler.cpp:218
msgid "Agility"
msgstr "Agilité"
-#: src/net/manaserv/stats.cpp:70
-#: src/net/tmwa/generalhandler.cpp:102
+#: src/net/manaserv/stats.cpp:70 src/net/tmwa/generalhandler.cpp:102
#, c-format
msgid "Agility %+d"
msgstr "Agilité %+d"
-#: src/net/manaserv/stats.cpp:80
-#: src/net/tmwa/generalhandler.cpp:221
+#: src/net/manaserv/stats.cpp:80 src/net/tmwa/generalhandler.cpp:221
msgid "Dexterity"
msgstr "Dextérité"
-#: src/net/manaserv/stats.cpp:82
-#: src/net/tmwa/generalhandler.cpp:105
+#: src/net/manaserv/stats.cpp:82 src/net/tmwa/generalhandler.cpp:105
#, c-format
msgid "Dexterity %+d"
msgstr "Dextérité %+d"
-#: src/net/manaserv/stats.cpp:92
-#: src/net/tmwa/generalhandler.cpp:219
+#: src/net/manaserv/stats.cpp:92 src/net/tmwa/generalhandler.cpp:219
msgid "Vitality"
msgstr "Vitalité"
-#: src/net/manaserv/stats.cpp:94
-#: src/net/tmwa/generalhandler.cpp:103
+#: src/net/manaserv/stats.cpp:94 src/net/tmwa/generalhandler.cpp:103
#, c-format
msgid "Vitality %+d"
msgstr "Vitalité %+d"
-#: src/net/manaserv/stats.cpp:104
-#: src/net/tmwa/generalhandler.cpp:220
+#: src/net/manaserv/stats.cpp:104 src/net/tmwa/generalhandler.cpp:220
msgid "Intelligence"
msgstr "Intelligence"
-#: src/net/manaserv/stats.cpp:106
-#: src/net/tmwa/generalhandler.cpp:104
+#: src/net/manaserv/stats.cpp:106 src/net/tmwa/generalhandler.cpp:104
#, c-format
msgid "Intelligence %+d"
msgstr "Intelligence %+d"
@@ -2950,13 +2945,11 @@ msgstr "Accepter les demandes d'échanges."
msgid "Ignoring incoming trade requests."
msgstr "Ignorer les demandes d'échanges."
-#: src/net/manaserv/tradehandler.cpp:116
-#: src/net/tmwa/tradehandler.cpp:107
+#: src/net/manaserv/tradehandler.cpp:116 src/net/tmwa/tradehandler.cpp:107
msgid "Request for Trade"
msgstr "Demande d'échange"
-#: src/net/manaserv/tradehandler.cpp:117
-#: src/net/tmwa/tradehandler.cpp:108
+#: src/net/manaserv/tradehandler.cpp:117 src/net/tmwa/tradehandler.cpp:108
#, c-format
msgid "%s wants to trade with you, do you accept?"
msgstr "%s souhaite réaliser un échange avec vous. Acceptez-vous ?"
@@ -2966,13 +2959,11 @@ msgstr "%s souhaite réaliser un échange avec vous. Acceptez-vous ?"
msgid "Trading with %s"
msgstr "Echange avec %s"
-#: src/net/manaserv/tradehandler.cpp:149
-#: src/net/tmwa/tradehandler.cpp:224
+#: src/net/manaserv/tradehandler.cpp:149 src/net/tmwa/tradehandler.cpp:224
msgid "Trade canceled."
msgstr "Echange annulé."
-#: src/net/manaserv/tradehandler.cpp:156
-#: src/net/tmwa/tradehandler.cpp:231
+#: src/net/manaserv/tradehandler.cpp:156 src/net/tmwa/tradehandler.cpp:231
msgid "Trade completed."
msgstr "Echange finalisé."
@@ -3009,16 +3000,28 @@ msgid "Access denied. Most likely, there are too many players on this server."
msgstr "Accès refusé. Il y a probablement trop de joueurs sur le serveur."
#: src/net/tmwa/charserverhandler.cpp:109
+#, fuzzy
msgid "Cannot use this ID."
-msgstr "Impossible d'utiliser cet Id."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Impossible d'utiliser cet Id.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Impossible d'utiliser cette Id."
#: src/net/tmwa/charserverhandler.cpp:112
+#, fuzzy
msgid "Unknown char-server failure."
-msgstr "Erreur inconnue provenant du serveur de personnages"
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Erreur inconnue provenant du serveur de personnages\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Erreur inconnue provenant du serveur de personnages."
#: src/net/tmwa/charserverhandler.cpp:138
msgid "Failed to create character. Most likely the name is already taken."
-msgstr "Impossible de créer ce personnage. Il est probable que ce nom soit déjà utilisé."
+msgstr ""
+"Impossible de créer ce personnage. Il est probable que ce nom soit déjà "
+"utilisé."
#: src/net/tmwa/charserverhandler.cpp:150
msgid "Character deleted."
@@ -3054,7 +3057,8 @@ msgstr "Chance :"
#: src/net/tmwa/chathandler.cpp:80
msgid "Whisper could not be sent, user is offline."
-msgstr "Le message privé n'a pu être envoyé, le destinataire n'est pas connecté."
+msgstr ""
+"Le message privé n'a pu être envoyé, le destinataire n'est pas connecté."
#: src/net/tmwa/chathandler.cpp:84
msgid "Whisper could not be sent, ignored by user."
@@ -3064,14 +3068,10 @@ msgstr "Le message privé n'a pu être envoyé, le destinataire l'a ignoré."
msgid "MVP player."
msgstr "Joueur MVP"
-#: src/net/tmwa/chathandler.cpp:223
-#: src/net/tmwa/chathandler.cpp:229
-#: src/net/tmwa/chathandler.cpp:234
-#: src/net/tmwa/chathandler.cpp:239
-#: src/net/tmwa/chathandler.cpp:244
-#: src/net/tmwa/chathandler.cpp:249
-#: src/net/tmwa/chathandler.cpp:254
-#: src/net/tmwa/chathandler.cpp:259
+#: src/net/tmwa/chathandler.cpp:223 src/net/tmwa/chathandler.cpp:229
+#: src/net/tmwa/chathandler.cpp:234 src/net/tmwa/chathandler.cpp:239
+#: src/net/tmwa/chathandler.cpp:244 src/net/tmwa/chathandler.cpp:249
+#: src/net/tmwa/chathandler.cpp:254 src/net/tmwa/chathandler.cpp:259
msgid "Channels are not supported!"
msgstr "Les salons ne sont pas gérés !"
@@ -3159,8 +3159,7 @@ msgstr "% Coup critique"
msgid "Guild"
msgstr "Guilde"
-#: src/net/tmwa/gui/guildtab.cpp:61
-#: src/net/tmwa/gui/partytab.cpp:59
+#: src/net/tmwa/gui/guildtab.cpp:61 src/net/tmwa/gui/partytab.cpp:59
msgid "/help > Display this help."
msgstr "/help > Affiche cette aide."
@@ -3176,8 +3175,7 @@ msgstr "/leave > Quitter la guilde courante"
msgid "/kick > Kick some one from the guild you are in"
msgstr "/kick > Ejecter quelqu'un du groupe dont vous faites partie"
-#: src/net/tmwa/gui/guildtab.cpp:73
-#: src/net/tmwa/gui/partytab.cpp:73
+#: src/net/tmwa/gui/guildtab.cpp:73 src/net/tmwa/gui/partytab.cpp:73
msgid "Command: /invite <nick>"
msgstr "Commande : /invite <nick>"
@@ -3185,8 +3183,7 @@ msgstr "Commande : /invite <nick>"
msgid "This command invites <nick> to the guild you're in."
msgstr "Cette commande invite <nick> à rejoindre votre groupe."
-#: src/net/tmwa/gui/guildtab.cpp:80
-#: src/net/tmwa/gui/partytab.cpp:80
+#: src/net/tmwa/gui/guildtab.cpp:80 src/net/tmwa/gui/partytab.cpp:80
msgid "Command: /leave"
msgstr "Commande : /leave"
@@ -3259,8 +3256,12 @@ msgid "This command changes the party's item sharing policy."
msgstr "Cette commande change les préférences d'échange d'objet du groupe."
#: src/net/tmwa/gui/partytab.cpp:87
-msgid "<policy> can be one of \"1\", \"yes\", \"true\" to enable item sharing, or \"0\", \"no\", \"false\" to disable item sharing."
-msgstr "<préférences> peut être \"1\", \"yes\", \"true\" pour activer l'échange d'objet, ou \"0\", \"no\", \"false\" pour le désactiver."
+msgid ""
+"<policy> can be one of \"1\", \"yes\", \"true\" to enable item sharing, or "
+"\"0\", \"no\", \"false\" to disable item sharing."
+msgstr ""
+"<préférences> peut être \"1\", \"yes\", \"true\" pour activer l'échange "
+"d'objet, ou \"0\", \"no\", \"false\" pour le désactiver."
#: src/net/tmwa/gui/partytab.cpp:90
msgid "Command: /item"
@@ -3268,7 +3269,9 @@ msgstr "Commande : /item"
#: src/net/tmwa/gui/partytab.cpp:91
msgid "This command displays the party's current item sharing policy."
-msgstr "Cette commande affiche les préférences actuelles du groupe sur le partage d'objet."
+msgstr ""
+"Cette commande affiche les préférences actuelles du groupe sur le partage "
+"d'objet."
#: src/net/tmwa/gui/partytab.cpp:95
msgid "Command: /exp <policy>"
@@ -3276,11 +3279,16 @@ msgstr "Commande : /exp <policy>"
#: src/net/tmwa/gui/partytab.cpp:96
msgid "This command changes the party's experience sharing policy."
-msgstr "Cette commande change les préférences du groupe sur le partage d'expérience."
+msgstr ""
+"Cette commande change les préférences du groupe sur le partage d'expérience."
#: src/net/tmwa/gui/partytab.cpp:97
-msgid "<policy> can be one of \"1\", \"yes\", \"true\" to enable experience sharing, or \"0\", \"no\", \"false\" to disable experience sharing."
-msgstr "<préférences> peut être \"1\", \"yes\", \"true\" pour activer le partage d'expérience, ou \"0\", \"no\", \"false\" pour le désactiver."
+msgid ""
+"<policy> can be one of \"1\", \"yes\", \"true\" to enable experience "
+"sharing, or \"0\", \"no\", \"false\" to disable experience sharing."
+msgstr ""
+"<préférences> peut être \"1\", \"yes\", \"true\" pour activer le partage "
+"d'expérience, ou \"0\", \"no\", \"false\" pour le désactiver."
#: src/net/tmwa/gui/partytab.cpp:100
msgid "Command: /exp"
@@ -3288,20 +3296,19 @@ msgstr "Commande : /exp"
#: src/net/tmwa/gui/partytab.cpp:101
msgid "This command displays the party's current experience sharing policy."
-msgstr "Cette commande affiche les préférences actuelles du groupe sur le partage d'expérience."
+msgstr ""
+"Cette commande affiche les préférences actuelles du groupe sur le partage "
+"d'expérience."
-#: src/net/tmwa/gui/partytab.cpp:132
-#: src/net/tmwa/partyhandler.cpp:201
+#: src/net/tmwa/gui/partytab.cpp:132 src/net/tmwa/partyhandler.cpp:201
msgid "Item sharing enabled."
msgstr "Partage d'objet activé."
-#: src/net/tmwa/gui/partytab.cpp:135
-#: src/net/tmwa/partyhandler.cpp:207
+#: src/net/tmwa/gui/partytab.cpp:135 src/net/tmwa/partyhandler.cpp:207
msgid "Item sharing disabled."
msgstr "Partage d'objet desactivé."
-#: src/net/tmwa/gui/partytab.cpp:138
-#: src/net/tmwa/partyhandler.cpp:213
+#: src/net/tmwa/gui/partytab.cpp:138 src/net/tmwa/partyhandler.cpp:213
msgid "Item sharing not possible."
msgstr "Partage d'objet impossible."
@@ -3309,18 +3316,15 @@ msgstr "Partage d'objet impossible."
msgid "Item sharing unknown."
msgstr "Paramètre de partage d'objets inconnu."
-#: src/net/tmwa/gui/partytab.cpp:167
-#: src/net/tmwa/partyhandler.cpp:177
+#: src/net/tmwa/gui/partytab.cpp:167 src/net/tmwa/partyhandler.cpp:177
msgid "Experience sharing enabled."
msgstr "Partage d'expérience authorisé."
-#: src/net/tmwa/gui/partytab.cpp:170
-#: src/net/tmwa/partyhandler.cpp:183
+#: src/net/tmwa/gui/partytab.cpp:170 src/net/tmwa/partyhandler.cpp:183
msgid "Experience sharing disabled."
msgstr "Partage d'expérience non authorisé."
-#: src/net/tmwa/gui/partytab.cpp:173
-#: src/net/tmwa/partyhandler.cpp:189
+#: src/net/tmwa/gui/partytab.cpp:173 src/net/tmwa/partyhandler.cpp:189
msgid "Experience sharing not possible."
msgstr "Partage d'expérience impossible."
@@ -3365,17 +3369,24 @@ msgid "Rejected from server."
msgstr "Rejeté par le serveur."
#: src/net/tmwa/loginhandler.cpp:168
-msgid "You have been permanently banned from the game. Please contact the GM team."
-msgstr "Vous avez été banni de façon permanente du jeu. Merci de vous mettre en contact avec l'équipe des GM."
+msgid ""
+"You have been permanently banned from the game. Please contact the GM team."
+msgstr ""
+"Vous avez été banni de façon permanente du jeu. Merci de vous mettre en "
+"contact avec l'équipe des GM."
#: src/net/tmwa/loginhandler.cpp:172
-#, c-format
+#, fuzzy, c-format
msgid ""
"You have been temporarily banned from the game until %s.\n"
"Please contact the GM team via the forums."
msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
"Vous avez été banni temporairement du jeu depuis %s.\n"
-"Merci de contacter un MJ par le forum."
+"Merci de contacter un MJ par le forum.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Vous avez été banni temporairement du jeu depuis %s.\n"
+"Merci de contacter un GM par le forum."
#: src/net/tmwa/loginhandler.cpp:179
msgid "This user name is already taken."
@@ -3422,8 +3433,13 @@ msgid "Unknown invite response for %s."
msgstr "Réponse d'invitation de %s inconnue."
#: src/net/tmwa/partyhandler.cpp:241
+#, fuzzy
msgid "You have left the party."
-msgstr "vous avez quitté le groupe."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"vous avez quitté le groupe.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Vous avez quitté le groupe."
#: src/net/tmwa/partyhandler.cpp:252
#, c-format
@@ -3441,9 +3457,13 @@ msgid "Invited user %s to party."
msgstr "/party > Inviter l'utilisateur %s dans le groupe."
#: src/net/tmwa/partyhandler.cpp:340
-#, c-format
+#, fuzzy, c-format
msgid "Inviting failed, because you can't see a player called %s."
-msgstr "L'invitation à échouée, le joueur %s n'est pas à portée de vue."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"L'invitation à échouée, le joueur %s n'est pas à portée de vue.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"L'invitation a échouée, le joueur %s n'est pas à portée de vue."
#: src/net/tmwa/partyhandler.cpp:345
msgid "You can only inivte when you are in a party!"
@@ -3455,8 +3475,13 @@ msgid "%s is not in your party!"
msgstr "%s n'est pas membre de votre groupe !"
#: src/net/tmwa/playerhandler.cpp:109
+#, fuzzy
msgid "Insert coin to continue."
-msgstr "veuillez insérer une pièce pour continuer."
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"veuillez insérer une pièce pour continuer.\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Veuillez insérer une pièce pour continuer."
#: src/net/tmwa/playerhandler.cpp:127
msgid "You're not dead yet. You're just resting."
@@ -3484,7 +3509,9 @@ msgstr "Privé de toute essence de vie, vous reposez en paix."
#: src/net/tmwa/playerhandler.cpp:133
msgid "If you weren't so animated, you'd be pushing up the daisies."
-msgstr "Si tu n'étais pas autant en forme, tu serais en train de manger les pissenlits par la racine."
+msgstr ""
+"Si tu n'étais pas autant en forme, tu serais en train de manger les "
+"pissenlits par la racine."
#: src/net/tmwa/playerhandler.cpp:134
msgid "Your metabolic processes are now history."
@@ -3499,8 +3526,12 @@ msgid "You've kicked the bucket."
msgstr "Tu viens de toucher le fond."
#: src/net/tmwa/playerhandler.cpp:137
-msgid "You've shuffled off your mortal coil, run down the curtain and joined the bleedin' choir invisibile."
-msgstr "Vous êtes sorti de votre enveloppe charnelle et mortelle. Vous avez rejoint l'armée de l'ombre."
+msgid ""
+"You've shuffled off your mortal coil, run down the curtain and joined the "
+"bleedin' choir invisibile."
+msgstr ""
+"Vous êtes sorti de votre enveloppe charnelle et mortelle. Vous avez rejoint "
+"l'armée de l'ombre."
#: src/net/tmwa/playerhandler.cpp:139
msgid "You are an ex-player."
@@ -3510,14 +3541,16 @@ msgstr "Tu n'es plus qu'un ancien joueur sans intérêt."
msgid "You're pining for the fjords."
msgstr "Tu reposes au fond de l'eau."
-#: src/net/tmwa/playerhandler.cpp:256
-#: src/net/tmwa/playerhandler.cpp:317
+#: src/net/tmwa/playerhandler.cpp:256 src/net/tmwa/playerhandler.cpp:317
msgid "Message"
msgstr "Message"
#: src/net/tmwa/playerhandler.cpp:257
-msgid "You are carrying more than half your weight. You are unable to regain health."
-msgstr "Vous portez plus de la moitié du poids de votre inventaire. Vous n'êtes plus en mesure de regagner vos points de vie."
+msgid ""
+"You are carrying more than half your weight. You are unable to regain health."
+msgstr ""
+"Vous portez plus de la moitié du poids de votre inventaire. Vous n'êtes plus "
+"en mesure de regagner vos points de vie."
#: src/net/tmwa/playerhandler.cpp:344
#, c-format
@@ -3557,8 +3590,13 @@ msgid "Cannot shout!"
msgstr "Vous ne pouvez pas crier !"
#: src/net/tmwa/specialhandler.cpp:171
+#, fuzzy
msgid "You have not yet reached a high enough lvl!"
-msgstr "Vous n'avez pas encore atteind le niveau requis !"
+msgstr ""
+"#-#-#-#-# fr.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Vous n'avez pas encore atteind le niveau requis !\n"
+"#-#-#-#-# po_fr rewiew1.po (The Mana World 0.1.0) #-#-#-#-#\n"
+"Vous n'avez pas encore atteint le niveau requis !"
#: src/net/tmwa/specialhandler.cpp:174
msgid "Insufficient HP!"
@@ -3640,11 +3678,15 @@ msgstr "Echange non pris en compte."
#: src/net/tmwa/tradehandler.cpp:202
msgid "Failed adding item. Trade partner is over weighted."
-msgstr "Impossible de rajouter un objet. Votre partenaire pour cet échange est surchargé."
+msgstr ""
+"Impossible de rajouter un objet. Votre partenaire pour cet échange est "
+"surchargé."
#: src/net/tmwa/tradehandler.cpp:207
msgid "Failed adding item. Trade partner has no free slot."
-msgstr "Impossible de rajouter un objet. Votre partenaire pour cet échange n'a plus de place libre."
+msgstr ""
+"Impossible de rajouter un objet. Votre partenaire pour cet échange n'a plus "
+"de place libre."
#: src/net/tmwa/tradehandler.cpp:211
msgid "Failed adding item for unknown reason."
@@ -3694,8 +3736,7 @@ msgstr "PM %+d"
msgid "Unknown item"
msgstr "Objet inconnu"
-#: src/resources/itemdb.cpp:162
-#: src/resources/monsterdb.cpp:74
+#: src/resources/itemdb.cpp:162 src/resources/monsterdb.cpp:74
#: src/resources/monsterinfo.cpp:29
msgid "unnamed"
msgstr "anonyme"
@@ -3707,24 +3748,32 @@ msgstr "anonyme"
#, fuzzy
#~ msgid "Unknown failure to select character."
#~ msgstr "Problème inconnu lors de la séléction du personnage"
+
#~ msgid "Inviting like this isn't supported at the moment."
#~ msgstr "Cette manière d'inviter n'est pas en place actuellement."
+
#~ msgid "Willpower:"
#~ msgstr "Volonté :"
#, fuzzy
#~ msgid "Server is full."
#~ msgstr "Le serveur est plein"
+
#~ msgid "Text Shadow"
#~ msgstr "Ombre du texte"
+
#~ msgid "Text Outline"
#~ msgstr "Bordure du texte"
+
#~ msgid "Progress Bar Labels"
#~ msgstr "Texte des barres de progression"
+
#~ msgid "Background"
#~ msgstr "Arrière-plan"
+
#~ msgid "Highlight"
#~ msgstr "Surbrillance"
+
#~ msgid "Tab Highlight"
#~ msgstr "Onglet mis en surbrillance"
@@ -3735,254 +3784,370 @@ msgstr "anonyme"
#, fuzzy
#~ msgid "Item Is Equipped"
#~ msgstr "L'objet est équipé"
+
#~ msgid "GM"
#~ msgstr "MJ"
+
#~ msgid "Player"
#~ msgstr "Joueur"
+
#~ msgid "Whisper"
#~ msgstr "Message privé"
+
#~ msgid "Is"
#~ msgstr "Est"
+
#~ msgid "Server"
#~ msgstr "Serveur"
+
#~ msgid "Logger"
#~ msgstr "Historique"
+
#~ msgid "Hyperlink"
#~ msgstr "Lien"
+
#~ msgid "Unknown Item Type"
#~ msgstr "Type inconnu d'objet"
+
#~ msgid "Generics"
#~ msgstr "Génériques"
+
#~ msgid "Hats"
#~ msgstr "Chapeaux"
+
#~ msgid "Usables"
#~ msgstr "Utilisables"
+
#~ msgid "Shirts"
#~ msgstr "Chemises"
#, fuzzy
#~ msgid "One Handed Weapons"
#~ msgstr "Armes à une main"
+
#~ msgid "Pants"
#~ msgstr "Pantalon"
+
#~ msgid "Shoes"
#~ msgstr "Chaussures"
#, fuzzy
#~ msgid "Two Handed Weapons"
#~ msgstr "Armes à une main"
+
#~ msgid "Shields"
#~ msgstr "Boucliers"
+
#~ msgid "Rings"
#~ msgstr "Anneaux"
+
#~ msgid "Necklaces"
#~ msgstr "Colliers"
+
#~ msgid "Arms"
#~ msgstr "Bras"
+
#~ msgid "Ammo"
#~ msgstr "Munitions"
+
#~ msgid "HP Bar"
#~ msgstr "Barre de vie (niveau maximum)"
+
#~ msgid "3/4 HP Bar"
#~ msgstr "3/4 Barre de vie"
+
#~ msgid "1/2 HP Bar"
#~ msgstr "1/2 Barre de vie"
+
#~ msgid "1/4 HP Bar"
#~ msgstr "1/4 Barre de vie"
+
#~ msgid "no"
#~ msgstr "non"
+
#~ msgid "Buddy"
#~ msgstr "Contact"
+
#~ msgid "Buddy List"
#~ msgstr "Liste de contacts"
+
#~ msgid "Description: %s"
#~ msgstr "Description : %s"
+
#~ msgid "Effect: %s"
#~ msgstr "Effet : %s"
+
#~ msgid "Previous"
#~ msgstr "Précédent"
+
#~ msgid "New"
#~ msgstr "Nouveau"
+
#~ msgid "Job Level: %d"
#~ msgstr "Niveau de Compétences : %d"
+
#~ msgid "Present: "
#~ msgstr "Présent : "
+
#~ msgid "Quit Guild"
#~ msgstr "Quitter la guilde"
+
#~ msgid "Ok"
#~ msgstr "Ok"
+
#~ msgid "Recent:"
#~ msgstr "Récent :"
+
#~ msgid "Magic"
#~ msgstr "Magie"
+
#~ msgid "Cast Test Spell 1"
#~ msgstr "Jeter le sort d'essai 1"
+
#~ msgid "Cast Test Spell 2"
#~ msgstr "Jeter le sort d'essai 2"
+
#~ msgid "Cast Test Spell 3"
#~ msgstr "Jeter le sort d'essai 3"
+
#~ msgid "2 Handed Weapons"
#~ msgstr "Armes à deux mains"
+
#~ msgid "@@trade|Trade With %s@@"
#~ msgstr "@@trade|Troquer avec %s@@"
+
#~ msgid "@@attack|Attack %s@@"
#~ msgstr "@@attack|Attaquer %s@@"
+
#~ msgid "@@disregard|Disregard %s@@"
#~ msgstr "@@disregard|Négliger%s@@"
+
#~ msgid "@@ignore|Ignore %s@@"
#~ msgstr "@@ignore|Ignorer %s@@"
+
#~ msgid "@@unignore|Un-Ignore %s@@"
#~ msgstr "@@unignore|Ne plus ignorer %s@@"
+
#~ msgid "@@admin-kick|Kick player@@"
#~ msgstr "@@admin-kick|Kick player@@"
+
#~ msgid "@@cancel|Cancel@@"
#~ msgstr "@@cancel|Annuler@@"
+
#~ msgid "@@pickup|Pick up %s@@"
#~ msgstr "@@pickup|Ramasser %s@@"
+
#~ msgid "@@use|Unequip@@"
#~ msgstr "@@use|Déséquiper@@"
+
#~ msgid "@@use|Equip@@"
#~ msgstr "@@use|Équiper@@"
+
#~ msgid "@@use|Use@@"
#~ msgstr "@@use|Utiliser@@"
+
#~ msgid "@@drop|Drop@@"
#~ msgstr "@@drop|Jeter@@"
+
#~ msgid "@@split|Split@@"
#~ msgstr "@@split|Partager@@"
+
#~ msgid "@@store|Store@@"
#~ msgstr "@@store|Magasin@@"
+
#~ msgid "@@retrieve|Retrieve@@"
#~ msgstr "@@retrieve|Retirer@@"
+
#~ msgid "Select Server"
#~ msgstr "Sélectionner un serveur"
+
#~ msgid "Failed to switch to "
#~ msgstr "Impossible de passer à "
+
#~ msgid "windowed"
#~ msgstr "fenetré"
+
#~ msgid "fullscreen"
#~ msgstr "plein écran"
+
#~ msgid "Mystery Skill"
#~ msgstr "Aptitude mystérieuse"
+
#~ msgid "Weapons"
#~ msgstr "Armes"
+
#~ msgid "Crafts"
#~ msgstr "Metiers"
+
#~ msgid "Stats"
#~ msgstr "Statut"
+
#~ msgid "Total"
#~ msgstr "Total"
+
#~ msgid "Cost"
#~ msgstr "Coût"
+
#~ msgid "Attack:"
#~ msgstr "Attaque :"
+
#~ msgid "% Reflex:"
#~ msgstr "% Réflexe :"
+
#~ msgid "Remaining Status Points: %d"
#~ msgstr "Point(s) de statut restant(s) : %d"
+
#~ msgid "Max level"
#~ msgstr "Niveau max."
+
#~ msgid "curl error "
#~ msgstr "Courbe d'erreur "
+
#~ msgid " host: "
#~ msgstr " hôte : "
+
#~ msgid "Guilds"
#~ msgstr "Guildes"
+
#~ msgid "Buddys"
#~ msgstr "Contacts"
+
#~ msgid "Party Window"
#~ msgstr "Fenêtre de groupe"
+
#~ msgid "Unarmed"
#~ msgstr "Désarmé"
+
#~ msgid "Knife"
#~ msgstr "Couteau"
+
#~ msgid "Sword"
#~ msgstr "Épée"
+
#~ msgid "Polearm"
#~ msgstr "Pique"
+
#~ msgid "Staff"
#~ msgstr "Bâton"
+
#~ msgid "Whip"
#~ msgstr "Fouet"
+
#~ msgid "Bow"
#~ msgstr "Arc"
+
#~ msgid "Shooting"
#~ msgstr "Tirer"
+
#~ msgid "Mace"
#~ msgstr "Masse"
+
#~ msgid "Axe"
#~ msgstr "Hache"
+
#~ msgid "Thrown"
#~ msgstr "Lancé"
+
#~ msgid "Craft"
#~ msgstr "Compétences"
+
#~ msgid "Unknown Skill"
#~ msgstr "Compétence inconnue"
+
#~ msgid " can't be created, but it doesn't exist! Exiting."
#~ msgstr ""
#~ " ne peut pas être créé, mais il n'existe pourtant pas ! Fermeture du "
#~ "programme."
+
#~ msgid "Couldn't set "
#~ msgstr "Impossibler d'assigner "
+
#~ msgid " video mode: "
#~ msgstr " mode d'affichage "
+
#~ msgid "mana"
#~ msgstr "mana"
+
#~ msgid "Connecting to character server..."
#~ msgstr "Connexion au serveur de personnages..."
+
#~ msgid "Connecting to account server..."
#~ msgstr "Connexion au serveur de comptes..."
+
#~ msgid "/new > Alias of create"
#~ msgstr "/new > Alias de création"
+
#~ msgid "Command: /new <party-name>"
#~ msgstr "Commande : /new <party-name>"
+
#~ msgid "a"
#~ msgstr "un(e)"
+
#~ msgid "Unnamed"
#~ msgstr "Aonyme"
+
#~ msgid "@@pickup|Pick Up %s@@"
#~ msgstr "@@pickup|Ramasser %s@@"
+
#~ msgid "Unable to load selection.png"
#~ msgstr "Impossible de charger le fichier selection.png"
+
#~ msgid "Emote"
#~ msgstr "Emote"
+
#~ msgid "NPC Text Request"
#~ msgstr "Requête de texte PNJ"
+
#~ msgid "NPC Number Request"
#~ msgstr "Requête de nombre PNJ"
+
#~ msgid ""
#~ "\n"
#~ "> Cancel\n"
#~ msgstr ""
#~ "\n"
#~ "> Annuler\n"
+
#~ msgid "skills.xml"
#~ msgstr "skills.xml"
+
#~ msgid "use"
#~ msgstr "Utiliser"
+
#~ msgid "%s: %s"
#~ msgstr "%s : %s"
+
#~ msgid "Scroll radius"
#~ msgstr "Rayon du défilement"
+
#~ msgid "Scroll laziness"
#~ msgstr "Lenteur du défilement"
+
#~ msgid "Slots: "
#~ msgstr "Cases : "
+
#~ msgid "Emote Window"
#~ msgstr "Fenêtre d'emote"
+
#~ msgid " -D --default : Bypass the login process with default settings"
#~ msgstr ""
#~ " -D --default : Bypasser le processus de connexion par la configuration "
#~ "par défaut"
+
#~ msgid " cancelled"
#~ msgstr " annulé"
+
#~ msgid "monsters.xml"
#~ msgstr "monsters.xml"
+
#~ msgid "items.xml"
#~ msgstr "items.xml"
+
#~ msgid "inc"
#~ msgstr "inc"
+
#~ msgid "; "
#~ msgstr "; "
+
#~ msgid "The Mana World %s"
#~ msgstr "The Mana World %s"
-
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index f3b5a644..f0c988dd 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -22,11 +22,14 @@ IF (CMAKE_COMPILER_IS_GNUCXX)
ENDIF()
IF (POLICY CMP0015)
- CMAKE_POLICY(SET CMP0015 OLD)
+ CMAKE_POLICY(SET CMP0015 OLD)
+ENDIF()
+
+IF (ENABLE_MANASERV)
+ INCLUDE_DIRECTORIES("../libs/enet/include")
+ LINK_DIRECTORIES("../libs/enet")
+ SET(INTERNAL_LIBRARIES enet)
ENDIF()
-INCLUDE_DIRECTORIES("../libs/enet/include")
-LINK_DIRECTORIES("../libs/enet")
-SET(INTERNAL_LIBRARIES enet)
SET(FLAGS "-DPACKAGE_VERSION=\\\"${VERSION}\\\"")
SET(FLAGS "${FLAGS} -DPKG_DATADIR=\\\"${PKG_DATADIR}/\\\"")
@@ -36,6 +39,10 @@ IF (ENABLE_NLS)
SET(FLAGS "${FLAGS} -DENABLE_NLS=1")
ENDIF()
+IF (ENABLE_MANASERV)
+ SET(FLAGS "${FLAGS} -DMANASERV_SUPPORT=1")
+ENDIF()
+
IF (CMAKE_BUILD_TYPE)
STRING(TOLOWER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_TOLOWER)
IF(CMAKE_BUILD_TYPE_TOLOWER MATCHES debug OR
@@ -636,7 +643,11 @@ ENDIF ()
SET (PROGRAMS mana)
-ADD_EXECUTABLE(mana WIN32 ${SRCS} ${SRCS_MANA} ${SRCS_TMWA})
+IF (ENABLE_MANASERV)
+ ADD_EXECUTABLE(mana WIN32 ${SRCS} ${SRCS_MANA} ${SRCS_TMWA})
+ELSE(ENABLE_MANASERV)
+ ADD_EXECUTABLE(mana WIN32 ${SRCS} ${SRCS_TMWA})
+ENDIF(ENABLE_MANASERV)
TARGET_LINK_LIBRARIES(mana
${INTERNAL_LIBRARIES}
diff --git a/src/game.cpp b/src/game.cpp
index 4da19bf8..fd453434 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -795,9 +795,6 @@ void Game::handleInput()
return;
}
- const Vector &pos = player_node->getPosition();
- const Uint16 x = (int) pos.x / 32;
- const Uint16 y = (int) pos.y / 32;
unsigned char direction = 0;
// Translate pressed keys to movement and direction
@@ -915,6 +912,9 @@ void Game::handleInput()
{
if (joystick->buttonPressed(1))
{
+ const int x = player_node->getTileX();
+ const int y = player_node->getTileY();
+
FloorItem *item = actorSpriteManager->findItem(x, y);
if (item)
diff --git a/src/net/net.cpp b/src/net/net.cpp
index 09f245b0..090ecd78 100644
--- a/src/net/net.cpp
+++ b/src/net/net.cpp
@@ -154,10 +154,11 @@ void connectToServer(ServerInfo &server)
switch (server.type)
{
+#ifdef MANASERV_SUPPORT
case ServerInfo::MANASERV:
new ManaServ::GeneralHandler;
break;
-
+#endif
case ServerInfo::TMWATHENA:
new TmwAthena::GeneralHandler;
break;
diff --git a/src/utils/sha256.cpp b/src/utils/sha256.cpp
index 57809c8b..9175352f 100644
--- a/src/utils/sha256.cpp
+++ b/src/utils/sha256.cpp
@@ -6,9 +6,8 @@
* This file has been slighly modified as part of The Mana Client.
*
* This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * any later version.
+ * it under the terms of the GNU General Public License version 2, as
+ * published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of