From 7f944f5af98927f57484ef5273a25fd92180efb4 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Tue, 4 Jan 2011 20:33:23 +0100 Subject: Fixed paste under X11 The check for whether we're not compiling for Mac was evaluating to false, apparently since it used the wrong CMake syntax. Reviewed-by: Bernd Wachter --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index accf8cd1..1418e938 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,9 +37,9 @@ 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) -- cgit v1.2.3-60-g2f50 From dfca3c3aa8144a1b1fbae49fbeaa94ed1307c067 Mon Sep 17 00:00:00 2001 From: Bernd Wachter Date: Fri, 7 Jan 2011 17:21:08 +0200 Subject: Add win32 package helper scripts, change README to README.txt for NSIS --- .gitignore | 3 +- packaging/windows/package-helpers | 113 ++++++++++++++++++++++++++++++ packaging/windows/setup.nsi | 8 ++- packaging/windows/toolchain.cmake.example | 22 ++++++ 4 files changed, 142 insertions(+), 4 deletions(-) create mode 100644 packaging/windows/package-helpers create mode 100644 packaging/windows/toolchain.cmake.example 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/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 602fc29f..221b60d6 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\gui" @@ -252,7 +254,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) -- cgit v1.2.3-60-g2f50 From 712545d76899b80a4776b51348450e3b6f014a8b Mon Sep 17 00:00:00 2001 From: Bernd Wachter Date: Fri, 7 Jan 2011 18:24:23 +0200 Subject: Remove old xcode stuff --- Info.plist | 30 - SDLMain.nib/classes.nib | 8 - SDLMain.nib/info.nib | 20 - SDLMain.nib/objects.xib | 80 -- mana.xcodeproj/garfield.mode1 | 1329 ---------------------- mana.xcodeproj/garfield.mode1v3 | 1409 ----------------------- mana.xcodeproj/project.pbxproj | 2343 --------------------------------------- 7 files changed, 5219 deletions(-) delete mode 100644 Info.plist delete mode 100644 SDLMain.nib/classes.nib delete mode 100644 SDLMain.nib/info.nib delete mode 100644 SDLMain.nib/objects.xib delete mode 100644 mana.xcodeproj/garfield.mode1 delete mode 100644 mana.xcodeproj/garfield.mode1v3 delete mode 100644 mana.xcodeproj/project.pbxproj diff --git a/Info.plist b/Info.plist deleted file mode 100644 index b5fecbee..00000000 --- a/Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIconFile - mana.icns - CFBundleIdentifier - Mana - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - APPL - CFBundleSignature - Mana - CFBundleVersion - 1.0 - NSHumanReadableCopyright - Copyright 2009 Mana Development Team - NSMainNibFile - SDLMain - NSPrincipalClass - NSApplication - NSPrincipleClass - NSApplication - - 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 @@ - - - - - IBVersion - 1 - - 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 @@ - - - - - IBFramework Version - 670 - IBLastKnownRelativeProjectPath - themanaworld.xcodeproj - IBOldestOS - 5 - IBOpenObjects - - 29 - - IBSystem Version - 9F33 - targetFramework - IBCarbonFramework - - 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 @@ - - - - - - - themanaworld - _NSAppleMenu - - - About themanaworld - 0 - abou - - - TRUE - TRUE - TRUE - - - Quit - q - TRUE - quit - - - - - FALSE - FALSE - FALSE - FALSE - FALSE - TRUE - FALSE - Window - - 0 0 800 600 - 0 0 600 800 - - 154 408 754 1208 - 64 0 1028 1680 - - - The Mana World - - - - - - main - _NSMainMenu - - - - - - - - - - - - - - - - - - - File's Owner - - MainWindow - - MenuBar - - - IBCarbonFramework - 231 - 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 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXRunSessionModule - Name - Run Log - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - Description - DefaultDescriptionKey - DockingSystemVisible - - Extension - mode1 - FavBarConfig - - PBXProjectModuleGUID - 92BC40BF0BAEE965000DAB7F - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.mode1 - MajorVersion - 31 - MinorVersion - 1 - Name - Default - Notifications - - OpenEditors - - PerspectiveWidths - - -1 - -1 - - Perspectives - - - ChosenToolbarItems - - active-target-popup - action - NSToolbarFlexibleSpaceItem - buildOrClean - build-and-runOrDebug - debug - clean-target - com.apple.ide.PBXToolbarStopButton - get-info - toggle-editor - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProjectWithEditor - Identifier - perspective.project - IsVertical - - Layout - - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 20286C29FDCF999611CA2CEA - 20286C2AFDCF999611CA2CEA - 20286C32FDCF999611CA2CEA - 1C37FBAC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 78 - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 1010}, {186, 520}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 538}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 372 210 780 579 0 0 1280 832 - - Module - PBXSmartGroupTreeModule - Proportion - 203pt - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20306471E060097A5F4 - PBXProjectModuleLabel - MyNewFile14.java - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CE0B20406471E060097A5F4 - PBXProjectModuleLabel - MyNewFile14.java - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {572, 0}} - RubberWindowFrame - 372 210 780 579 0 0 1280 832 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20506471E060097A5F4 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{0, 5}, {572, 533}} - RubberWindowFrame - 372 210 780 579 0 0 1280 832 - - Module - XCDetailModule - Proportion - 533pt - - - Proportion - 572pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDetailModule - - TableOfContents - - 924A47AB0D1069F5004FEA83 - 1CE0B1FE06471DED0097A5F4 - 924A47AC0D1069F5004FEA83 - 1CE0B20306471E060097A5F4 - 1CE0B20506471E060097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default - - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.morph - IsVertical - 0 - Layout - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 11E0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 29B97314FDCFA39411CA2CEA - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 337}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 1 - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 355}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 373 269 690 397 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 100% - - - Name - Morph - PreferredWidth - 300 - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - - TableOfContents - - 11E0B1FE06471DED0097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default.short - - - PerspectivesBarVisible - - ShelfIsVisible - - SourceDescription - file at '/System/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/Resources/XCPerspectivesSpecificationMode1.xcperspec' - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarDisplayMode - 1 - ToolbarIsVisible - - ToolbarSizeMode - 1 - Type - Perspectives - UpdateMessage - 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 '%@'? - WindowJustification - 5 - WindowOrderList - - 92BC40B30BAEE8C1000DAB7F - /Users/garfield/programming/themanaworld/tmw/branches/0.0/themanaworld.xcodeproj - - WindowString - 372 210 780 579 0 0 1280 832 - WindowTools - - - FirstTimeWindowDisplayed - - Identifier - windowTool.build - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {553, 0}} - RubberWindowFrame - 316 222 553 548 0 0 1280 832 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - - ContentConfiguration - - PBXBuildLogShowsTranscriptDefaultKey - {{0, 5}, {553, 497}} - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{0, 5}, {553, 502}} - RubberWindowFrame - 316 222 553 548 0 0 1280 832 - - Module - PBXBuildResultsModule - Proportion - 502pt - - - Proportion - 507pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - - TableOfContents - - 92BC40B30BAEE8C1000DAB7F - 924A47B10D107075004FEA83 - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.build - WindowString - 316 222 553 548 0 0 1280 832 - WindowToolGUID - 92BC40B30BAEE8C1000DAB7F - WindowToolIsVisible - - - - Identifier - windowTool.debugger - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {317, 164}} - {{317, 0}, {377, 164}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 164}} - {{0, 164}, {694, 216}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleDrawerSize - {100, 120} - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 380}} - RubberWindowFrame - 321 238 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 100% - - - Proportion - 100% - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CD10A99069EF8BA00B06720 - 1C0AD2AB069F1E9B00FABCE6 - 1C162984064C10D400B95A72 - 1C0AD2AC069F1E9B00FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.debug - WindowString - 321 238 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - 0 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.find - IsVertical - - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - playerhandler.cpp - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {781, 212}} - RubberWindowFrame - 212 362 781 470 0 0 1280 832 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 212pt - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{0, 217}, {781, 212}} - RubberWindowFrame - 212 362 781 470 0 0 1280 832 - - Module - PBXProjectFindModule - Proportion - 212pt - - - Proportion - 429pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - - TableOfContents - - 1C530D57069F1CE1000CFCEE - 92E427510C1EB4AC000361B7 - 92E427520C1EB4AC000361B7 - 1CDD528C0622207200134675 - 1CD0528E0623707200166675 - - WindowString - 212 362 781 470 0 0 1280 832 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - - - - Identifier - MENUSEPARATOR - - - Identifier - windowTool.debuggerConsole - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {440, 358}} - RubberWindowFrame - 650 41 440 400 0 0 1280 1002 - - Module - PBXDebugCLIModule - Proportion - 358pt - - - Proportion - 358pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAAD065D492600B07095 - 1C78EAAE065D492600B07095 - 1C78EAAC065D492600B07095 - - WindowString - 650 41 440 400 0 0 1280 1002 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.run - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - LauncherConfigVersion - 3 - PBXProjectModuleGUID - 1CD0528B0623707200166675 - PBXProjectModuleLabel - Run - Runner - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {493, 167}} - {{0, 176}, {493, 267}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {405, 443}} - {{414, 0}, {514, 443}} - - - - - GeometryConfiguration - - Frame - {{0, 0}, {459, 159}} - RubberWindowFrame - 316 570 459 200 0 0 1280 832 - - Module - PBXRunSessionModule - Proportion - 159pt - - - Proportion - 159pt - - - Name - Run Log - ServiceClasses - - PBXRunSessionModule - - StatusbarIsVisible - - TableOfContents - - 1C0AD2B3069F1EA900FABCE6 - 92AA62E70C21BDEA007FAAD0 - 1CD0528B0623707200166675 - 92AA62E80C21BDEA007FAAD0 - - ToolbarConfiguration - xcode.toolbar.config.run - WindowString - 316 570 459 200 0 0 1280 832 - WindowToolGUID - 1C0AD2B3069F1EA900FABCE6 - WindowToolIsVisible - - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.09500122070312 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scm - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - IsVertical - 0 - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - no - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 168 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C77FABC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {168, 350}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 0 - - GeometryConfiguration - - Frame - {{0, 0}, {185, 368}} - GroupTreeTableConfiguration - - MainColumn - 168 - - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 185pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA1AED706398EBD00589147 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{190, 0}, {554, 368}} - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - XCDetailModule - Proportion - 554pt - - - Proportion - 368pt - - - MajorVersion - 2 - MinorVersion - 0 - Name - Breakpoints - ServiceClasses - - PBXSmartGroupTreeModule - XCDetailModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CDDB66807F98D9800BB5817 - 1CDDB66907F98D9800BB5817 - 1CE0B1FE06471DED0097A5F4 - 1CA1AED706398EBD00589147 - - ToolbarConfiguration - xcode.toolbar.config.breakpoints - WindowString - 315 424 744 409 0 0 1440 878 - WindowToolGUID - 1CDDB66807F98D9800BB5817 - WindowToolIsVisible - 1 - - - Identifier - windowTool.debugAnimator - Layout - - - Dock - - - Module - PBXNavigatorGroup - Proportion - 100% - - - Proportion - 100% - - - Name - Debug Visualizer - ServiceClasses - - PBXNavigatorGroup - - StatusbarIsVisible - 1 - ToolbarConfiguration - xcode.toolbar.config.debugAnimator - WindowString - 100 100 700 500 0 0 1280 1002 - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 100% - - - Proportion - 100% - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - 0 - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {374, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {630, 331}} - MembersFrame - {{0, 105}, {374, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 97 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 385 179 630 352 0 0 1440 878 - - Module - PBXClassBrowserModule - Proportion - 332pt - - - Proportion - 332pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C0AD2AF069F1E9B00FABCE6 - 1C0AD2B0069F1E9B00FABCE6 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 385 179 630 352 0 0 1440 878 - WindowToolGUID - 1C0AD2AF069F1E9B00FABCE6 - WindowToolIsVisible - 0 - - - - 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 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCProjectFormatConflictsModule - Name - Project Format Conflicts List - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - BundleLoadPath - - MaxInstances - n - Module - XCSnapshotModule - Name - Snapshots Tool - - - Description - DefaultDescriptionKey - DockingSystemVisible - - Extension - mode1v3 - FavBarConfig - - PBXProjectModuleGUID - 92A4CC870D1C46A000CA28FB - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.mode1v3 - MajorVersion - 33 - MinorVersion - 0 - Name - Default - Notifications - - OpenEditors - - PerspectiveWidths - - -1 - -1 - - Perspectives - - - ChosenToolbarItems - - active-combo-popup - action - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - build - build-and-go - clean - com.apple.ide.PBXToolbarStopButton - get-info - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProjectWithEditor - Identifier - perspective.project - IsVertical - - Layout - - - BecomeActive - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 158 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 20286C29FDCF999611CA2CEA - 1C37FBAC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 8 - 7 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {158, 599}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {175, 617}} - GroupTreeTableConfiguration - - MainColumn - 158 - - RubberWindowFrame - 235 191 933 658 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 175pt - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20306471E060097A5F4 - PBXProjectModuleLabel - - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CE0B20406471E060097A5F4 - PBXProjectModuleLabel - - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {753, 0}} - RubberWindowFrame - 235 191 933 658 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20506471E060097A5F4 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{0, 5}, {753, 612}} - RubberWindowFrame - 235 191 933 658 0 0 1440 878 - - Module - XCDetailModule - Proportion - 612pt - - - Proportion - 753pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDetailModule - - TableOfContents - - 9228959611F662A300AE53BB - 1CE0B1FE06471DED0097A5F4 - 9228959711F662A300AE53BB - 1CE0B20306471E060097A5F4 - 1CE0B20506471E060097A5F4 - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.defaultV3 - - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.morph - IsVertical - - Layout - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 11E0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 29B97314FDCFA39411CA2CEA - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 337}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 1 - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 355}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 373 269 690 397 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 100% - - - Name - Morph - PreferredWidth - 300 - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - - TableOfContents - - 11E0B1FE06471DED0097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default.shortV3 - - - PerspectivesBarVisible - - ShelfIsVisible - - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarDisplayMode - 1 - ToolbarIsVisible - - ToolbarSizeMode - 1 - Type - Perspectives - UpdateMessage - 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 '%@'? - WindowJustification - 5 - WindowOrderList - - 1CD10A99069EF8BA00B06720 - 92A4CC8A0D1C5F1E00CA28FB - /Users/garfield/Programming/mana/mana.xcodeproj - - WindowString - 235 191 933 658 0 0 1440 878 - WindowToolsV3 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.build - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {553, 0}} - RubberWindowFrame - 107 258 553 548 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{0, 5}, {553, 502}} - RubberWindowFrame - 107 258 553 548 0 0 1440 878 - - Module - PBXBuildResultsModule - Proportion - 502pt - - - Proportion - 507pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - - TableOfContents - - 92A4CC8A0D1C5F1E00CA28FB - 9228959811F662A300AE53BB - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.buildV3 - WindowString - 107 258 553 548 0 0 1440 878 - WindowToolGUID - 92A4CC8A0D1C5F1E00CA28FB - WindowToolIsVisible - - - - FirstTimeWindowDisplayed - - Identifier - windowTool.debugger - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {316, 203}} - {{316, 0}, {378, 203}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 203}} - {{0, 203}, {694, 178}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 381}} - PBXDebugSessionStackFrameViewKey - - DebugVariablesTableConfiguration - - Name - 140 - Value - 85 - Summary - 986 - - Frame - {{316, 0}, {378, 203}} - RubberWindowFrame - 241 397 694 422 0 0 1440 878 - - RubberWindowFrame - 241 397 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 381pt - - - Proportion - 381pt - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - - TableOfContents - - 1CD10A99069EF8BA00B06720 - 9228959911F662A300AE53BB - 1C162984064C10D400B95A72 - 9228959A11F662A300AE53BB - 9228959B11F662A300AE53BB - 9228959C11F662A300AE53BB - 9228959D11F662A300AE53BB - 9228959E11F662A300AE53BB - - ToolbarConfiguration - xcode.toolbar.config.debugV3 - WindowString - 241 397 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - - - - FirstTimeWindowDisplayed - - Identifier - windowTool.find - IsVertical - - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - connection.cpp - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {781, 212}} - RubberWindowFrame - 468 332 781 470 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 212pt - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{0, 217}, {781, 212}} - RubberWindowFrame - 468 332 781 470 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 212pt - - - Proportion - 429pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - - TableOfContents - - 1C530D57069F1CE1000CFCEE - 9268580611F15D8C00A28C33 - 9268580711F15D8C00A28C33 - 1CDD528C0622207200134675 - 1CD0528E0623707200166675 - - WindowString - 468 332 781 470 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - - - - FirstTimeWindowDisplayed - - Identifier - MENUSEPARATOR - - - FirstTimeWindowDisplayed - - Identifier - windowTool.debuggerConsole - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {440, 359}} - RubberWindowFrame - 529 224 440 400 0 0 1440 878 - - Module - PBXDebugCLIModule - Proportion - 359pt - - - Proportion - 359pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - - TableOfContents - - 1C78EAAD065D492600B07095 - 92C85D7311F2998B00AB20CA - 1C78EAAC065D492600B07095 - - ToolbarConfiguration - xcode.toolbar.config.consoleV3 - WindowString - 529 224 440 400 0 0 1440 878 - WindowToolGUID - 1C78EAAD065D492600B07095 - WindowToolIsVisible - - - - Identifier - windowTool.snapshots - Layout - - - Dock - - - Module - XCSnapshotModule - Proportion - 100% - - - Proportion - 100% - - - Name - Snapshots - ServiceClasses - - XCSnapshotModule - - StatusbarIsVisible - Yes - ToolbarConfiguration - xcode.toolbar.config.snapshots - WindowString - 315 824 300 550 0 0 1440 878 - WindowToolIsVisible - Yes - - - FirstTimeWindowDisplayed - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.09500122070312 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scm - WindowString - 743 379 452 308 0 0 1280 1002 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.breakpoints - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - no - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 168 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C77FABC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {168, 350}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - - GeometryConfiguration - - Frame - {{0, 0}, {185, 368}} - GroupTreeTableConfiguration - - MainColumn - 168 - - RubberWindowFrame - 243 383 744 409 0 0 1280 832 - - Module - PBXSmartGroupTreeModule - Proportion - 185pt - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CA1AED706398EBD00589147 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{190, 0}, {554, 368}} - RubberWindowFrame - 243 383 744 409 0 0 1280 832 - - Module - XCDetailModule - Proportion - 554pt - - - Proportion - 368pt - - - MajorVersion - 3 - MinorVersion - 0 - Name - Breakpoints - ServiceClasses - - PBXSmartGroupTreeModule - XCDetailModule - - StatusbarIsVisible - - TableOfContents - - 92EE9EF30D2E0CA400DDE300 - 92EE9EF40D2E0CA400DDE300 - 1CE0B1FE06471DED0097A5F4 - 1CA1AED706398EBD00589147 - - ToolbarConfiguration - xcode.toolbar.config.breakpointsV3 - WindowString - 243 383 744 409 0 0 1280 832 - WindowToolGUID - 92EE9EF30D2E0CA400DDE300 - WindowToolIsVisible - - - - FirstTimeWindowDisplayed - - Identifier - windowTool.debugAnimator - Layout - - - Dock - - - Module - PBXNavigatorGroup - Proportion - 100% - - - Proportion - 100% - - - Name - Debug Visualizer - ServiceClasses - - PBXNavigatorGroup - - StatusbarIsVisible - - ToolbarConfiguration - xcode.toolbar.config.debugAnimatorV3 - WindowString - 100 100 700 500 0 0 1280 1002 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 100% - - - Proportion - 100% - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - - WindowString - 538 42 401 187 0 0 1280 1002 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.projectFormatConflicts - IsVertical - - Layout - - - Dock - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 9268589711F174B900A28C33 - - GeometryConfiguration - - Frame - {{0, 0}, {472, 302}} - RubberWindowFrame - 128 461 472 322 0 0 1440 878 - - Module - XCProjectFormatConflictsModule - Proportion - 302pt - - - Proportion - 302pt - - - Name - Project Format Conflicts - ServiceClasses - - XCProjectFormatConflictsModule - - StatusbarIsVisible - - TableOfContents - - 9268589811F174B900A28C33 - 9268589911F174B900A28C33 - 9268589711F174B900A28C33 - - WindowContentMinSize - 450 300 - WindowString - 128 461 472 322 0 0 1440 878 - WindowToolGUID - 9268589811F174B900A28C33 - WindowToolIsVisible - - - - FirstTimeWindowDisplayed - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {374, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {630, 331}} - MembersFrame - {{0, 105}, {374, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 97 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 385 179 630 352 0 0 1440 878 - - Module - PBXClassBrowserModule - Proportion - 332pt - - - Proportion - 332pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - - TableOfContents - - 1C0AD2AF069F1E9B00FABCE6 - 1C0AD2B0069F1E9B00FABCE6 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 385 179 630 352 0 0 1440 878 - WindowToolGUID - 1C0AD2AF069F1E9B00FABCE6 - WindowToolIsVisible - - - - Identifier - windowTool.refactoring - IncludeInToolsMenu - - Layout - - - Dock - - - BecomeActive - - GeometryConfiguration - - Frame - {0, 0}, {500, 335} - RubberWindowFrame - {0, 0}, {500, 335} - - Module - XCRefactoringModule - Proportion - 100% - - - Proportion - 100% - - - Name - Refactoring - ServiceClasses - - XCRefactoringModule - - WindowString - 200 200 500 356 0 0 1920 1200 - - - - 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 = ""; }; - 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 = ""; }; - 92024D2B0CF1BD9E006B55CB /* keyboardconfig.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = keyboardconfig.h; path = src/keyboardconfig.h; sourceTree = ""; }; - 92024D2C0CF1BD9E006B55CB /* vector.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = vector.h; path = src/vector.h; sourceTree = ""; }; - 92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_keyboard.cpp; sourceTree = ""; }; - 92024D370CF1BDF7006B55CB /* setup_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_keyboard.h; sourceTree = ""; }; - 92024D5B0CF1BE5C006B55CB /* close_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = close_button.png; sourceTree = ""; }; - 92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = item_shortcut_bgr.png; sourceTree = ""; }; - 92024D5D0CF1BE5C006B55CB /* unknown-item.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unknown-item.png"; sourceTree = ""; }; - 92024E740CF1DCF6006B55CB /* imageloader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imageloader.cpp; sourceTree = ""; }; - 92024E750CF1DCF6006B55CB /* imageloader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imageloader.h; sourceTree = ""; }; - 92037A190ED2035A00D3712D /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDLMain.h; path = src/SDLMain.h; sourceTree = ""; }; - 92037A1A0ED2037300D3712D /* particleemitterprop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particleemitterprop.h; path = src/particleemitterprop.h; sourceTree = ""; }; - 92037A1B0ED2037300D3712D /* text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = text.cpp; path = src/text.cpp; sourceTree = ""; }; - 92037A1C0ED2037300D3712D /* text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = text.h; path = src/text.h; sourceTree = ""; }; - 92037A1D0ED2037300D3712D /* textmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = textmanager.cpp; path = src/textmanager.cpp; sourceTree = ""; }; - 92037A1E0ED2037300D3712D /* textmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textmanager.h; path = src/textmanager.h; sourceTree = ""; }; - 922895B411F665A200AE53BB /* libintl.8.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libintl.8.dylib; sourceTree = ""; }; - 922895B511F665A200AE53BB /* libphysfs.1.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libphysfs.1.dylib; sourceTree = ""; }; - 922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libSDL_gfx.13.dylib; sourceTree = ""; }; - 922895BF11F6677F00AE53BB /* libiconv.2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libiconv.2.dylib; sourceTree = ""; }; - 922895C011F6677F00AE53BB /* libSDL-1.2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = "libSDL-1.2.0.dylib"; sourceTree = ""; }; - 922CD9560E3D00900074C50E /* npcdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdb.cpp; sourceTree = ""; }; - 922CD9570E3D00900074C50E /* npcdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdb.h; sourceTree = ""; }; - 922CD95D0E3D01080074C50E /* shopitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = shopitem.cpp; path = src/shopitem.cpp; sourceTree = ""; }; - 922CD95E0E3D01080074C50E /* shopitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = shopitem.h; path = src/shopitem.h; sourceTree = ""; }; - 924A39E80C0784280066885E /* animationparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = animationparticle.cpp; path = src/animationparticle.cpp; sourceTree = ""; }; - 924A39E90C0784280066885E /* animationparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = animationparticle.h; path = src/animationparticle.h; sourceTree = ""; }; - 924A39EA0C0784280066885E /* imageparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = imageparticle.cpp; path = src/imageparticle.cpp; sourceTree = ""; }; - 924A39EB0C0784280066885E /* imageparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = imageparticle.h; path = src/imageparticle.h; sourceTree = ""; }; - 924A39EC0C0784280066885E /* particle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = particle.cpp; path = src/particle.cpp; sourceTree = ""; }; - 924A39ED0C0784280066885E /* particle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = particle.h; path = src/particle.h; sourceTree = ""; }; - 924A39EE0C0784280066885E /* particleemitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = particleemitter.cpp; path = src/particleemitter.cpp; sourceTree = ""; }; - 924A39EF0C0784280066885E /* particleemitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = particleemitter.h; path = src/particleemitter.h; sourceTree = ""; }; - 924A39F00C0784280066885E /* textparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = textparticle.cpp; path = src/textparticle.cpp; sourceTree = ""; }; - 924A39F10C0784280066885E /* textparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = textparticle.h; path = src/textparticle.h; sourceTree = ""; }; - 924A3A100C07A60B0066885E /* resizegrip.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resizegrip.cpp; sourceTree = ""; }; - 924A3A110C07A60B0066885E /* resizegrip.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resizegrip.h; sourceTree = ""; }; - 924A3E620C085ED70066885E /* button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button.png; sourceTree = ""; }; - 924A3E630C085ED70066885E /* button_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button_disabled.png; sourceTree = ""; }; - 924A3E640C085ED70066885E /* buttonhi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonhi.png; sourceTree = ""; }; - 924A3E650C085ED70066885E /* buttonpress.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonpress.png; sourceTree = ""; }; - 924A3E660C085ED70066885E /* checkbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = checkbox.png; sourceTree = ""; }; - 924A3E680C085ED70066885E /* deepbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = deepbox.png; sourceTree = ""; }; - 924A3E6D0C085ED70066885E /* hscroll_left_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_default.png; sourceTree = ""; }; - 924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_highlight.png; sourceTree = ""; }; - 924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_pressed.png; sourceTree = ""; }; - 924A3E700C085ED70066885E /* hscroll_right_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_default.png; sourceTree = ""; }; - 924A3E710C085ED70066885E /* hscroll_right_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_highlight.png; sourceTree = ""; }; - 924A3E720C085ED70066885E /* hscroll_right_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_pressed.png; sourceTree = ""; }; - 924A3E780C085ED70066885E /* mouse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mouse.png; sourceTree = ""; }; - 924A3E790C085ED70066885E /* radioin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioin.png; sourceTree = ""; }; - 924A3E7A0C085ED70066885E /* radioout.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioout.png; sourceTree = ""; }; - 924A3E7B0C085ED70066885E /* resize.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = resize.png; sourceTree = ""; }; - 924A3E7E0C085ED70066885E /* selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = selection.png; sourceTree = ""; }; - 924A3E7F0C085ED70066885E /* slider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slider.png; sourceTree = ""; }; - 924A3E800C085ED70066885E /* target-cursor-blue-l.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-l.png"; sourceTree = ""; }; - 924A3E810C085ED70066885E /* target-cursor-blue-m.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-m.png"; sourceTree = ""; }; - 924A3E820C085ED70066885E /* target-cursor-blue-s.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-s.png"; sourceTree = ""; }; - 924A3E830C085ED70066885E /* target-cursor-red-l.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-l.png"; sourceTree = ""; }; - 924A3E840C085ED70066885E /* target-cursor-red-m.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-m.png"; sourceTree = ""; }; - 924A3E850C085ED70066885E /* target-cursor-red-s.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-s.png"; sourceTree = ""; }; - 924A3E880C085ED70066885E /* vscroll_down_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_default.png; sourceTree = ""; }; - 924A3E890C085ED70066885E /* vscroll_down_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_highlight.png; sourceTree = ""; }; - 924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_pressed.png; sourceTree = ""; }; - 924A3E8B0C085ED70066885E /* vscroll_grey.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_grey.png; sourceTree = ""; }; - 924A3E8D0C085ED70066885E /* vscroll_up_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_default.png; sourceTree = ""; }; - 924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_highlight.png; sourceTree = ""; }; - 924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_pressed.png; sourceTree = ""; }; - 924A3E9A0C085ED70066885E /* login_wallpaper.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = login_wallpaper.png; sourceTree = ""; }; - 924A400A0C085ED80066885E /* about.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = about.txt; sourceTree = ""; }; - 924A400B0C085ED80066885E /* changes.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = changes.txt; sourceTree = ""; }; - 924A400D0C085ED80066885E /* commands.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = commands.txt; sourceTree = ""; }; - 924A400E0C085ED80066885E /* header.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = header.txt; sourceTree = ""; }; - 924A400F0C085ED80066885E /* index.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = index.txt; sourceTree = ""; }; - 924A40110C085ED80066885E /* skills.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = skills.txt; sourceTree = ""; }; - 924A40120C085ED80066885E /* support.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = support.txt; sourceTree = ""; }; - 924A40130C085ED80066885E /* team.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = team.txt; sourceTree = ""; }; - 924A401C0C085ED80066885E /* items.xsd */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xml; path = items.xsd; sourceTree = ""; }; - 924A42600C0874D00066885E /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 925350010BC12A3200115FD5 /* imageset.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imageset.cpp; sourceTree = ""; }; - 925350020BC12A3200115FD5 /* imageset.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imageset.h; sourceTree = ""; }; - 926855E711F141D500A28C33 /* colors.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = colors.xml; sourceTree = ""; }; - 926855E811F141D500A28C33 /* progress-indicator.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "progress-indicator.png"; sourceTree = ""; }; - 926855E911F141D500A28C33 /* radioin_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioin_highlight.png; sourceTree = ""; }; - 926855EA11F141D500A28C33 /* radioout_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioout_highlight.png; sourceTree = ""; }; - 926855EB11F141D500A28C33 /* slider_hilight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slider_hilight.png; sourceTree = ""; }; - 926855EC11F141D500A28C33 /* tab_hilight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tab_hilight.png; sourceTree = ""; }; - 926855ED11F141D500A28C33 /* vscroll_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_highlight.png; sourceTree = ""; }; - 926855EE11F141D500A28C33 /* window.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = window.xml; sourceTree = ""; }; - 926855FF11F141FD00A28C33 /* mana.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = mana.icns; sourceTree = ""; }; - 9268564B11F142D500A28C33 /* avatar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = avatar.cpp; path = src/avatar.cpp; sourceTree = ""; }; - 9268564C11F142D500A28C33 /* avatar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = avatar.h; path = src/avatar.h; sourceTree = ""; }; - 9268564D11F142D500A28C33 /* client.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = client.cpp; path = src/client.cpp; sourceTree = ""; }; - 9268564E11F142D500A28C33 /* client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = client.h; path = src/client.h; sourceTree = ""; }; - 9268564F11F142D500A28C33 /* party.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = party.cpp; path = src/party.cpp; sourceTree = ""; }; - 9268565011F142D500A28C33 /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/party.h; sourceTree = ""; }; - 9268565111F142D500A28C33 /* textrenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textrenderer.h; path = src/textrenderer.h; sourceTree = ""; }; - 9268565811F142F100A28C33 /* beingpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beingpopup.cpp; sourceTree = ""; }; - 9268565911F142F100A28C33 /* beingpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beingpopup.h; sourceTree = ""; }; - 9268565A11F142F100A28C33 /* connectiondialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connectiondialog.cpp; sourceTree = ""; }; - 9268565B11F142F100A28C33 /* connectiondialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connectiondialog.h; sourceTree = ""; }; - 9268565C11F142F100A28C33 /* socialwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = socialwindow.cpp; sourceTree = ""; }; - 9268565D11F142F100A28C33 /* socialwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socialwindow.h; sourceTree = ""; }; - 9268565E11F142F100A28C33 /* specialswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialswindow.cpp; sourceTree = ""; }; - 9268565F11F142F100A28C33 /* specialswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialswindow.h; sourceTree = ""; }; - 9268566011F142F100A28C33 /* textpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpopup.cpp; sourceTree = ""; }; - 9268566111F142F100A28C33 /* textpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpopup.h; sourceTree = ""; }; - 9268566211F142F100A28C33 /* theme.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = theme.cpp; sourceTree = ""; }; - 9268566311F142F100A28C33 /* theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = theme.h; sourceTree = ""; }; - 9268566411F142F100A28C33 /* userpalette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = userpalette.cpp; sourceTree = ""; }; - 9268566511F142F100A28C33 /* userpalette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = userpalette.h; sourceTree = ""; }; - 9268566611F142F100A28C33 /* worldselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = worldselectdialog.cpp; sourceTree = ""; }; - 9268566711F142F100A28C33 /* worldselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldselectdialog.h; sourceTree = ""; }; - 9268567811F1431300A28C33 /* avatarlistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = avatarlistbox.cpp; sourceTree = ""; }; - 9268567911F1431300A28C33 /* avatarlistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avatarlistbox.h; sourceTree = ""; }; - 9268567A11F1431300A28C33 /* emoteshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emoteshortcutcontainer.cpp; sourceTree = ""; }; - 9268567B11F1431300A28C33 /* emoteshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emoteshortcutcontainer.h; sourceTree = ""; }; - 9268567C11F1431300A28C33 /* flowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flowcontainer.cpp; sourceTree = ""; }; - 9268567D11F1431300A28C33 /* flowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flowcontainer.h; sourceTree = ""; }; - 9268567E11F1431300A28C33 /* itemcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemcontainer.cpp; sourceTree = ""; }; - 9268567F11F1431300A28C33 /* itemcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemcontainer.h; sourceTree = ""; }; - 9268568011F1431300A28C33 /* itemlinkhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemlinkhandler.cpp; sourceTree = ""; }; - 9268568111F1431300A28C33 /* itemlinkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemlinkhandler.h; sourceTree = ""; }; - 9268568211F1431300A28C33 /* itemshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemshortcutcontainer.cpp; sourceTree = ""; }; - 9268568311F1431300A28C33 /* itemshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemshortcutcontainer.h; sourceTree = ""; }; - 9268568411F1431300A28C33 /* linkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linkhandler.h; sourceTree = ""; }; - 9268568511F1431300A28C33 /* playerbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerbox.cpp; sourceTree = ""; }; - 9268568611F1431300A28C33 /* playerbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerbox.h; sourceTree = ""; }; - 9268568711F1431300A28C33 /* progressindicator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressindicator.cpp; sourceTree = ""; }; - 9268568811F1431300A28C33 /* progressindicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressindicator.h; sourceTree = ""; }; - 9268568911F1431300A28C33 /* setuptab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setuptab.cpp; sourceTree = ""; }; - 9268568A11F1431300A28C33 /* setuptab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setuptab.h; sourceTree = ""; }; - 9268568B11F1431300A28C33 /* shopitems.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shopitems.cpp; sourceTree = ""; }; - 9268568C11F1431300A28C33 /* shopitems.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopitems.h; sourceTree = ""; }; - 9268568D11F1431300A28C33 /* shoplistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shoplistbox.cpp; sourceTree = ""; }; - 9268568E11F1431300A28C33 /* shoplistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shoplistbox.h; sourceTree = ""; }; - 9268568F11F1431300A28C33 /* shortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutcontainer.cpp; sourceTree = ""; }; - 9268569011F1431300A28C33 /* shortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutcontainer.h; sourceTree = ""; }; - 9268569111F1431300A28C33 /* table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = table.cpp; sourceTree = ""; }; - 9268569211F1431300A28C33 /* table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = table.h; sourceTree = ""; }; - 9268569311F1431300A28C33 /* tablemodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tablemodel.cpp; sourceTree = ""; }; - 9268569411F1431300A28C33 /* tablemodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tablemodel.h; sourceTree = ""; }; - 9268569511F1431300A28C33 /* vertcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vertcontainer.cpp; sourceTree = ""; }; - 9268569611F1431300A28C33 /* vertcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vertcontainer.h; sourceTree = ""; }; - 926856B511F1433300A28C33 /* charhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charhandler.cpp; sourceTree = ""; }; - 926856B611F1433300A28C33 /* download.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download.cpp; sourceTree = ""; }; - 926856B711F1433300A28C33 /* download.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download.h; sourceTree = ""; }; - 926856B811F1433300A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = ""; }; - 926856B911F1433300A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = ""; }; - 926856BA11F1433300A28C33 /* worldinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldinfo.h; sourceTree = ""; }; - 926856C011F1433E00A28C33 /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = ""; }; - 926856C111F1433E00A28C33 /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = ""; }; - 926856C211F1433E00A28C33 /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = ""; }; - 926856C311F1433E00A28C33 /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = ""; }; - 926856C411F1433E00A28C33 /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = ""; }; - 926856C511F1433E00A28C33 /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = ""; }; - 926856C611F1433E00A28C33 /* charhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charhandler.cpp; sourceTree = ""; }; - 926856C711F1433E00A28C33 /* charhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charhandler.h; sourceTree = ""; }; - 926856C811F1433E00A28C33 /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = ""; }; - 926856C911F1433E00A28C33 /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = ""; }; - 926856CA11F1433E00A28C33 /* connection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connection.cpp; sourceTree = ""; }; - 926856CB11F1433E00A28C33 /* connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connection.h; sourceTree = ""; }; - 926856CC11F1433E00A28C33 /* effecthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effecthandler.cpp; sourceTree = ""; }; - 926856CD11F1433E00A28C33 /* effecthandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effecthandler.h; sourceTree = ""; }; - 926856CE11F1433E00A28C33 /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = ""; }; - 926856CF11F1433E00A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = ""; }; - 926856D011F1433E00A28C33 /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = ""; }; - 926856D111F1433E00A28C33 /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = ""; }; - 926856D211F1433E00A28C33 /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = ""; }; - 926856D311F1433E00A28C33 /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = ""; }; - 926856D411F1433E00A28C33 /* internal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internal.cpp; sourceTree = ""; }; - 926856D511F1433E00A28C33 /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = ""; }; - 926856D611F1433E00A28C33 /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = ""; }; - 926856D711F1433E00A28C33 /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = ""; }; - 926856D811F1433E00A28C33 /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = ""; }; - 926856D911F1433E00A28C33 /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = ""; }; - 926856DA11F1433E00A28C33 /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = ""; }; - 926856DB11F1433E00A28C33 /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = ""; }; - 926856DC11F1433E00A28C33 /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = ""; }; - 926856DD11F1433E00A28C33 /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = ""; }; - 926856DE11F1433E00A28C33 /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = ""; }; - 926856DF11F1433E00A28C33 /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = ""; }; - 926856E011F1433E00A28C33 /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = ""; }; - 926856E111F1433E00A28C33 /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = ""; }; - 926856E211F1433E00A28C33 /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = ""; }; - 926856E311F1433E00A28C33 /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = ""; }; - 926856E411F1433E00A28C33 /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = ""; }; - 926856E511F1433E00A28C33 /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = ""; }; - 926856E611F1433E00A28C33 /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = ""; }; - 926856E711F1433E00A28C33 /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = ""; }; - 926856E811F1433E00A28C33 /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = ""; }; - 926856E911F1433E00A28C33 /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = ""; }; - 926856EA11F1433E00A28C33 /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = ""; }; - 926856EB11F1433E00A28C33 /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = ""; }; - 926856EC11F1433E00A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = ""; }; - 926856ED11F1433E00A28C33 /* stats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stats.cpp; sourceTree = ""; }; - 926856EE11F1433E00A28C33 /* stats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stats.h; sourceTree = ""; }; - 926856EF11F1433E00A28C33 /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = ""; }; - 926856F011F1433E00A28C33 /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = ""; }; - 926856F211F1433E00A28C33 /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = ""; }; - 926856F311F1433E00A28C33 /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = ""; }; - 926856F411F1433E00A28C33 /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = ""; }; - 926856F511F1433E00A28C33 /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = ""; }; - 926856F611F1433E00A28C33 /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = ""; }; - 926856F711F1433E00A28C33 /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = ""; }; - 926856F811F1433E00A28C33 /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = ""; }; - 926856F911F1433E00A28C33 /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = ""; }; - 926856FA11F1433F00A28C33 /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = ""; }; - 926856FB11F1433F00A28C33 /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = ""; }; - 926856FC11F1433F00A28C33 /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = ""; }; - 926856FD11F1433F00A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = ""; }; - 926856FE11F1433F00A28C33 /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = ""; }; - 926856FF11F1433F00A28C33 /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = ""; }; - 9268570111F1433F00A28C33 /* guildtab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildtab.cpp; sourceTree = ""; }; - 9268570211F1433F00A28C33 /* guildtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildtab.h; sourceTree = ""; }; - 9268570311F1433F00A28C33 /* partytab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partytab.cpp; sourceTree = ""; }; - 9268570411F1433F00A28C33 /* partytab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partytab.h; sourceTree = ""; }; - 9268570511F1433F00A28C33 /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = ""; }; - 9268570611F1433F00A28C33 /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = ""; }; - 9268570711F1433F00A28C33 /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = ""; }; - 9268570811F1433F00A28C33 /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = ""; }; - 9268570911F1433F00A28C33 /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = ""; }; - 9268570A11F1433F00A28C33 /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = ""; }; - 9268570B11F1433F00A28C33 /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = ""; }; - 9268570C11F1433F00A28C33 /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = ""; }; - 9268570D11F1433F00A28C33 /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = ""; }; - 9268570E11F1433F00A28C33 /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = ""; }; - 9268570F11F1433F00A28C33 /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = ""; }; - 9268571011F1433F00A28C33 /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = ""; }; - 9268571111F1433F00A28C33 /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = ""; }; - 9268571211F1433F00A28C33 /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = ""; }; - 9268571311F1433F00A28C33 /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = ""; }; - 9268571411F1433F00A28C33 /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = ""; }; - 9268571511F1433F00A28C33 /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = ""; }; - 9268571611F1433F00A28C33 /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = ""; }; - 9268571711F1433F00A28C33 /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = ""; }; - 9268571811F1433F00A28C33 /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = ""; }; - 9268571911F1433F00A28C33 /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = ""; }; - 9268571A11F1433F00A28C33 /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = ""; }; - 9268571B11F1433F00A28C33 /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = ""; }; - 9268571C11F1433F00A28C33 /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = ""; }; - 9268571D11F1433F00A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = ""; }; - 9268571E11F1433F00A28C33 /* token.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = token.h; sourceTree = ""; }; - 9268571F11F1433F00A28C33 /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = ""; }; - 9268572011F1433F00A28C33 /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = ""; }; - 9268577D11F1435200A28C33 /* ambientlayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ambientlayer.cpp; sourceTree = ""; }; - 9268577E11F1435200A28C33 /* ambientlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ambientlayer.h; sourceTree = ""; }; - 9268578111F1435F00A28C33 /* copynpaste.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = copynpaste.cpp; sourceTree = ""; }; - 9268578211F1435F00A28C33 /* copynpaste.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = copynpaste.h; sourceTree = ""; }; - 9268578311F1435F00A28C33 /* mkdir.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mkdir.cpp; sourceTree = ""; }; - 9268578411F1435F00A28C33 /* mkdir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mkdir.h; sourceTree = ""; }; - 9268578511F1435F00A28C33 /* specialfolder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialfolder.cpp; sourceTree = ""; }; - 9268578611F1435F00A28C33 /* specialfolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialfolder.h; sourceTree = ""; }; - 926857AB11F15A9300A28C33 /* guichan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = guichan.framework; path = /Library/Frameworks/guichan.framework; sourceTree = ""; }; - 926A29440F23BD88005D6466 /* layout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layout.cpp; sourceTree = ""; }; - 926A29450F23BD88005D6466 /* layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layout.h; sourceTree = ""; }; - 926A29460F23BD88005D6466 /* tab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab.cpp; sourceTree = ""; }; - 926A29470F23BD88005D6466 /* tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab.h; sourceTree = ""; }; - 926A29480F23BD88005D6466 /* tabbedarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tabbedarea.cpp; sourceTree = ""; }; - 926A29490F23BD88005D6466 /* tabbedarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tabbedarea.h; sourceTree = ""; }; - 926A29520F23BD9E005D6466 /* sdlinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlinput.cpp; sourceTree = ""; }; - 926A29530F23BD9E005D6466 /* sdlinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdlinput.h; sourceTree = ""; }; - 926A29540F23BD9E005D6466 /* truetypefont.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = truetypefont.cpp; sourceTree = ""; }; - 926A29550F23BD9E005D6466 /* truetypefont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = truetypefont.h; sourceTree = ""; }; - 926A295A0F23BDB1005D6466 /* gettext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gettext.h; sourceTree = ""; }; - 926A295B0F23BDB1005D6466 /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = ""; }; - 926A29790F23C155005D6466 /* SDL_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_ttf.framework; path = /Library/Frameworks/SDL_ttf.framework; sourceTree = ""; }; - 926A297E0F23C18E005D6466 /* tab.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tab.png; sourceTree = ""; }; - 926A297F0F23C18E005D6466 /* tabselected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tabselected.png; sourceTree = ""; }; - 926A29840F23C1C8005D6466 /* windows.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = windows.txt; sourceTree = ""; }; - 926A29980F23C988005D6466 /* dejavusans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = dejavusans.ttf; path = fonts/dejavusans.ttf; sourceTree = ""; }; - 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = itemshortcut.cpp; path = src/itemshortcut.cpp; sourceTree = ""; }; - 926F9CF70DB005FA00AACD26 /* itemshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemshortcut.h; path = src/itemshortcut.h; sourceTree = ""; }; - 9273BDFB0EF33DFD008E56E1 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; - 9273BDFD0EF33E1A008E56E1 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; - 9273BDFE0EF33E1A008E56E1 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; - 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = particlecontainer.cpp; path = src/particlecontainer.cpp; sourceTree = ""; }; - 9273BE050EF33FB3008E56E1 /* particlecontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particlecontainer.h; path = src/particlecontainer.h; sourceTree = ""; }; - 9273BE060EF33FB3008E56E1 /* statuseffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = statuseffect.cpp; path = src/statuseffect.cpp; sourceTree = ""; }; - 9273BE070EF33FB3008E56E1 /* statuseffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = statuseffect.h; path = src/statuseffect.h; sourceTree = ""; }; - 928B50E40F2FB5430011C755 /* bubble.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bubble.png; sourceTree = ""; }; - 9294DAA00C17E73200FCEDE9 /* libpng.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = libpng.framework; path = /Library/Frameworks/libpng.framework; sourceTree = ""; }; - 92A244B50F935FB400B7719B /* container.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = container.cpp; sourceTree = ""; }; - 92A244B60F935FB400B7719B /* container.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = container.h; sourceTree = ""; }; - 92A245C20F93626900B7719B /* desktop.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = desktop.cpp; sourceTree = ""; }; - 92A245C30F93626900B7719B /* desktop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = desktop.h; sourceTree = ""; }; - 92A4CC9D0D1C622E00CA28FB /* dye.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dye.cpp; sourceTree = ""; }; - 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = animatedsprite.cpp; path = src/animatedsprite.cpp; sourceTree = ""; }; - 92BC3ECB0BAEE55A000DAB7F /* animatedsprite.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = animatedsprite.h; path = src/animatedsprite.h; sourceTree = ""; }; - 92BC3ECC0BAEE55A000DAB7F /* being.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = being.cpp; path = src/being.cpp; sourceTree = ""; }; - 92BC3ECD0BAEE55A000DAB7F /* being.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = being.h; path = src/being.h; sourceTree = ""; }; - 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = beingmanager.cpp; path = src/beingmanager.cpp; sourceTree = ""; }; - 92BC3ECF0BAEE55A000DAB7F /* beingmanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = beingmanager.h; path = src/beingmanager.h; sourceTree = ""; }; - 92BC3ED10BAEE55A000DAB7F /* configlistener.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = configlistener.h; path = src/configlistener.h; sourceTree = ""; }; - 92BC3ED20BAEE55A000DAB7F /* configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cpp; path = src/configuration.cpp; sourceTree = ""; }; - 92BC3ED30BAEE55A000DAB7F /* configuration.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = configuration.h; path = src/configuration.h; sourceTree = ""; }; - 92BC3EE70BAEE55A000DAB7F /* equipment.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = equipment.h; path = src/equipment.h; sourceTree = ""; }; - 92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = flooritemmanager.cpp; path = src/flooritemmanager.cpp; sourceTree = ""; }; - 92BC3EEB0BAEE55A000DAB7F /* flooritemmanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = flooritemmanager.h; path = src/flooritemmanager.h; sourceTree = ""; }; - 92BC3EEC0BAEE55A000DAB7F /* game.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = game.cpp; path = src/game.cpp; sourceTree = ""; }; - 92BC3EED0BAEE55A000DAB7F /* game.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = game.h; path = src/game.h; sourceTree = ""; }; - 92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = src/graphics.cpp; sourceTree = ""; }; - 92BC3EEF0BAEE55A000DAB7F /* graphics.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = graphics.h; path = src/graphics.h; sourceTree = ""; }; - 92BC3EF90BAEE55A000DAB7F /* buy.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buy.cpp; sourceTree = ""; }; - 92BC3EFA0BAEE55A000DAB7F /* buy.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buy.h; sourceTree = ""; }; - 92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buysell.cpp; sourceTree = ""; }; - 92BC3EFC0BAEE55A000DAB7F /* buysell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buysell.h; sourceTree = ""; }; - 92BC3F030BAEE55A000DAB7F /* chat.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = chat.cpp; sourceTree = ""; }; - 92BC3F040BAEE55A000DAB7F /* chat.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chat.h; sourceTree = ""; }; - 92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = debugwindow.cpp; sourceTree = ""; }; - 92BC3F0E0BAEE55A000DAB7F /* debugwindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = debugwindow.h; sourceTree = ""; }; - 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = equipmentwindow.cpp; sourceTree = ""; }; - 92BC3F100BAEE55A000DAB7F /* equipmentwindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = equipmentwindow.h; sourceTree = ""; }; - 92BC3F110BAEE55A000DAB7F /* focushandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = focushandler.cpp; sourceTree = ""; }; - 92BC3F120BAEE55A000DAB7F /* focushandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = focushandler.h; sourceTree = ""; }; - 92BC3F150BAEE55A000DAB7F /* gui.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = gui.cpp; sourceTree = ""; }; - 92BC3F160BAEE55A000DAB7F /* gui.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = gui.h; sourceTree = ""; }; - 92BC3F190BAEE55A000DAB7F /* help.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = help.cpp; sourceTree = ""; }; - 92BC3F1A0BAEE55A000DAB7F /* help.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = help.h; sourceTree = ""; }; - 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = inventorywindow.cpp; sourceTree = ""; }; - 92BC3F1E0BAEE55A000DAB7F /* inventorywindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inventorywindow.h; sourceTree = ""; }; - 92BC3F260BAEE55A000DAB7F /* login.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = login.cpp; sourceTree = ""; }; - 92BC3F270BAEE55A000DAB7F /* login.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = login.h; sourceTree = ""; }; - 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = minimap.cpp; sourceTree = ""; }; - 92BC3F2B0BAEE55A000DAB7F /* minimap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = minimap.h; sourceTree = ""; }; - 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ministatus.cpp; sourceTree = ""; }; - 92BC3F2D0BAEE55A000DAB7F /* ministatus.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ministatus.h; sourceTree = ""; }; - 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = popupmenu.cpp; sourceTree = ""; }; - 92BC3F3B0BAEE55A000DAB7F /* popupmenu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = popupmenu.h; sourceTree = ""; }; - 92BC3F400BAEE55A000DAB7F /* register.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = register.cpp; sourceTree = ""; }; - 92BC3F410BAEE55A000DAB7F /* register.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = register.h; sourceTree = ""; }; - 92BC3F450BAEE55A000DAB7F /* sell.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = sell.cpp; sourceTree = ""; }; - 92BC3F460BAEE55A000DAB7F /* sell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = sell.h; sourceTree = ""; }; - 92BC3F470BAEE55A000DAB7F /* setup.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup.cpp; sourceTree = ""; }; - 92BC3F480BAEE55A000DAB7F /* setup.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup.h; sourceTree = ""; }; - 92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_audio.cpp; sourceTree = ""; }; - 92BC3F4A0BAEE55A000DAB7F /* setup_audio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_audio.h; sourceTree = ""; }; - 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_joystick.cpp; sourceTree = ""; }; - 92BC3F4C0BAEE55A000DAB7F /* setup_joystick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_joystick.h; sourceTree = ""; }; - 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_video.cpp; sourceTree = ""; }; - 92BC3F4E0BAEE55A000DAB7F /* setup_video.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_video.h; sourceTree = ""; }; - 92BC3F600BAEE55B000DAB7F /* trade.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = trade.cpp; sourceTree = ""; }; - 92BC3F610BAEE55B000DAB7F /* trade.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = trade.h; sourceTree = ""; }; - 92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = updatewindow.cpp; sourceTree = ""; }; - 92BC3F630BAEE55B000DAB7F /* updatewindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = updatewindow.h; sourceTree = ""; }; - 92BC3F660BAEE55B000DAB7F /* viewport.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = viewport.cpp; sourceTree = ""; }; - 92BC3F670BAEE55B000DAB7F /* viewport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = viewport.h; sourceTree = ""; }; - 92BC3F6C0BAEE55B000DAB7F /* guichanfwd.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = guichanfwd.h; path = src/guichanfwd.h; sourceTree = ""; }; - 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = inventory.cpp; path = src/inventory.cpp; sourceTree = ""; }; - 92BC3F6E0BAEE55B000DAB7F /* inventory.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = inventory.h; path = src/inventory.h; sourceTree = ""; }; - 92BC3F6F0BAEE55B000DAB7F /* item.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = item.cpp; path = src/item.cpp; sourceTree = ""; }; - 92BC3F700BAEE55B000DAB7F /* item.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = item.h; path = src/item.h; sourceTree = ""; }; - 92BC3F710BAEE55B000DAB7F /* joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = joystick.cpp; path = src/joystick.cpp; sourceTree = ""; }; - 92BC3F720BAEE55B000DAB7F /* joystick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = joystick.h; path = src/joystick.h; sourceTree = ""; }; - 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = localplayer.cpp; path = src/localplayer.cpp; sourceTree = ""; }; - 92BC3F740BAEE55B000DAB7F /* localplayer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = localplayer.h; path = src/localplayer.h; sourceTree = ""; }; - 92BC3F760BAEE55B000DAB7F /* log.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = src/log.cpp; sourceTree = ""; }; - 92BC3F770BAEE55B000DAB7F /* log.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = log.h; path = src/log.h; sourceTree = ""; }; - 92BC3F790BAEE55B000DAB7F /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = ""; }; - 92BC3F7A0BAEE55B000DAB7F /* main.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = main.h; path = src/main.h; sourceTree = ""; }; - 92BC3F7C0BAEE55B000DAB7F /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = map.cpp; path = src/map.cpp; sourceTree = ""; }; - 92BC3F7D0BAEE55B000DAB7F /* map.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/map.h; sourceTree = ""; }; - 92BC3F7E0BAEE55B000DAB7F /* monster.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = monster.cpp; path = src/monster.cpp; sourceTree = ""; }; - 92BC3F7F0BAEE55B000DAB7F /* monster.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = monster.h; path = src/monster.h; sourceTree = ""; }; - 92BC3F880BAEE55B000DAB7F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = ""; }; - 92BC3F8C0BAEE55B000DAB7F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = ""; }; - 92BC3F900BAEE55B000DAB7F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = ""; }; - 92BC3F940BAEE55B000DAB7F /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = ""; }; - 92BC3F950BAEE55B000DAB7F /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = ""; }; - 92BC3F960BAEE55B000DAB7F /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = ""; }; - 92BC3F970BAEE55B000DAB7F /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = ""; }; - 92BC3F980BAEE55B000DAB7F /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = ""; }; - 92BC3F9C0BAEE55B000DAB7F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = ""; }; - 92BC3F9E0BAEE55B000DAB7F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = ""; }; - 92BC3FA40BAEE55B000DAB7F /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = ""; }; - 92BC3FA50BAEE55B000DAB7F /* npc.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = npc.cpp; path = src/npc.cpp; sourceTree = ""; }; - 92BC3FA60BAEE55B000DAB7F /* npc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = npc.h; path = src/npc.h; sourceTree = ""; }; - 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = openglgraphics.cpp; path = src/openglgraphics.cpp; sourceTree = ""; }; - 92BC3FA80BAEE55B000DAB7F /* openglgraphics.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = openglgraphics.h; path = src/openglgraphics.h; sourceTree = ""; }; - 92BC3FBA0BAEE55B000DAB7F /* player.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = player.cpp; path = src/player.cpp; sourceTree = ""; }; - 92BC3FBB0BAEE55B000DAB7F /* player.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = player.h; path = src/player.h; sourceTree = ""; }; - 92BC3FBC0BAEE55B000DAB7F /* properties.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = properties.h; path = src/properties.h; sourceTree = ""; }; - 92BC3FBE0BAEE55B000DAB7F /* action.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = action.cpp; sourceTree = ""; }; - 92BC3FBF0BAEE55B000DAB7F /* action.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = action.h; sourceTree = ""; }; - 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ambientoverlay.cpp; sourceTree = ""; }; - 92BC3FC10BAEE55B000DAB7F /* ambientoverlay.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ambientoverlay.h; sourceTree = ""; }; - 92BC3FC20BAEE55B000DAB7F /* animation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = animation.cpp; sourceTree = ""; }; - 92BC3FC30BAEE55B000DAB7F /* animation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = animation.h; sourceTree = ""; }; - 92BC3FC90BAEE55B000DAB7F /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = image.cpp; sourceTree = ""; }; - 92BC3FCA0BAEE55B000DAB7F /* image.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = image.h; sourceTree = ""; }; - 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imagewriter.cpp; sourceTree = ""; }; - 92BC3FCC0BAEE55B000DAB7F /* imagewriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imagewriter.h; sourceTree = ""; }; - 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = itemdb.cpp; sourceTree = ""; }; - 92BC3FCE0BAEE55B000DAB7F /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = itemdb.h; sourceTree = ""; }; - 92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = iteminfo.cpp; sourceTree = ""; }; - 92BC3FD00BAEE55B000DAB7F /* iteminfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = iteminfo.h; sourceTree = ""; }; - 92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mapreader.cpp; sourceTree = ""; }; - 92BC3FD20BAEE55B000DAB7F /* mapreader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mapreader.h; sourceTree = ""; }; - 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monsterdb.cpp; sourceTree = ""; }; - 92BC3FD40BAEE55B000DAB7F /* monsterdb.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monsterdb.h; sourceTree = ""; }; - 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monsterinfo.cpp; sourceTree = ""; }; - 92BC3FD60BAEE55B000DAB7F /* monsterinfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monsterinfo.h; sourceTree = ""; }; - 92BC3FD70BAEE55B000DAB7F /* music.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = music.cpp; sourceTree = ""; }; - 92BC3FD80BAEE55B000DAB7F /* music.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = music.h; sourceTree = ""; }; - 92BC3FDB0BAEE55B000DAB7F /* resource.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resource.cpp; sourceTree = ""; }; - 92BC3FDC0BAEE55B000DAB7F /* resource.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = ""; }; - 92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resourcemanager.cpp; sourceTree = ""; }; - 92BC3FDE0BAEE55B000DAB7F /* resourcemanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resourcemanager.h; sourceTree = ""; }; - 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = soundeffect.cpp; sourceTree = ""; }; - 92BC3FE20BAEE55B000DAB7F /* soundeffect.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = soundeffect.h; sourceTree = ""; }; - 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = spritedef.cpp; sourceTree = ""; }; - 92BC3FE40BAEE55B000DAB7F /* spritedef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = spritedef.h; sourceTree = ""; }; - 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = simpleanimation.cpp; path = src/simpleanimation.cpp; sourceTree = ""; }; - 92BC3FE90BAEE55B000DAB7F /* simpleanimation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = simpleanimation.h; path = src/simpleanimation.h; sourceTree = ""; }; - 92BC3FEA0BAEE55B000DAB7F /* sound.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = src/sound.cpp; sourceTree = ""; }; - 92BC3FEB0BAEE55B000DAB7F /* sound.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sound.h; path = src/sound.h; sourceTree = ""; }; - 92BC3FEC0BAEE55B000DAB7F /* sprite.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sprite.h; path = src/sprite.h; sourceTree = ""; }; - 92BC3FED0BAEE55B000DAB7F /* tileset.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tileset.h; path = src/tileset.h; sourceTree = ""; }; - 92BC3FEF0BAEE55B000DAB7F /* base64.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = base64.cpp; sourceTree = ""; }; - 92BC3FF00BAEE55B000DAB7F /* base64.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = base64.h; sourceTree = ""; }; - 92BC3FF10BAEE55B000DAB7F /* dtor.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = dtor.h; sourceTree = ""; }; - 92BC3FF40BAEE55B000DAB7F /* xml.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = xml.cpp; sourceTree = ""; }; - 92BC3FF50BAEE55B000DAB7F /* xml.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = ""; }; - 92BC408E0BAEE818000DAB7F /* SDL_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_image.framework; path = /Library/Frameworks/SDL_image.framework; sourceTree = ""; }; - 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_mixer.framework; path = /Library/Frameworks/SDL_mixer.framework; sourceTree = ""; }; - 92BC40900BAEE818000DAB7F /* SDL_net.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_net.framework; path = /Library/Frameworks/SDL_net.framework; sourceTree = ""; }; - 92BC40910BAEE818000DAB7F /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; - 92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; - 92BC40D80BAEEED3000DAB7F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; - 92BC40E50BAEF54B000DAB7F /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = SDLMain.m; path = src/SDLMain.m; sourceTree = ""; }; - 92BC40E80BAEF57D000DAB7F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; - 92C1150C0F8EBB360048CA8D /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = window.cpp; sourceTree = ""; }; - 92C1150D0F8EBB360048CA8D /* window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = ""; }; - 92C115100F8EBB550048CA8D /* itempopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itempopup.cpp; sourceTree = ""; }; - 92C115110F8EBB550048CA8D /* itempopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itempopup.h; sourceTree = ""; }; - 92C115140F8EBB830048CA8D /* listbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = listbox.cpp; sourceTree = ""; }; - 92C115150F8EBB830048CA8D /* listbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = listbox.h; sourceTree = ""; }; - 92C115160F8EBB830048CA8D /* scrollarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scrollarea.cpp; sourceTree = ""; }; - 92C115170F8EBB830048CA8D /* scrollarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scrollarea.h; sourceTree = ""; }; - 92C115180F8EBB830048CA8D /* slider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slider.cpp; sourceTree = ""; }; - 92C115190F8EBB830048CA8D /* slider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slider.h; sourceTree = ""; }; - 92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = emoteshortcut.cpp; path = src/emoteshortcut.cpp; sourceTree = ""; }; - 92C1151F0F8EBBA90048CA8D /* emoteshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = emoteshortcut.h; path = src/emoteshortcut.h; sourceTree = ""; }; - 92C115220F8EBBD50048CA8D /* inttextfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inttextfield.cpp; sourceTree = ""; }; - 92C115230F8EBBD50048CA8D /* inttextfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inttextfield.h; sourceTree = ""; }; - 92C115240F8EBBD50048CA8D /* popup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = popup.cpp; sourceTree = ""; }; - 92C115250F8EBBD50048CA8D /* popup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = popup.h; sourceTree = ""; }; - 92C115260F8EBBD50048CA8D /* textfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textfield.cpp; sourceTree = ""; }; - 92C115270F8EBBD50048CA8D /* textfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textfield.h; sourceTree = ""; }; - 92C115320F8EBC450048CA8D /* browserbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browserbox.cpp; sourceTree = ""; }; - 92C115330F8EBC450048CA8D /* browserbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browserbox.h; sourceTree = ""; }; - 92C115340F8EBC450048CA8D /* windowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowcontainer.cpp; sourceTree = ""; }; - 92C115350F8EBC450048CA8D /* windowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowcontainer.h; sourceTree = ""; }; - 92C115390F8EBC730048CA8D /* chattab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chattab.cpp; sourceTree = ""; }; - 92C1153A0F8EBC730048CA8D /* chattab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chattab.h; sourceTree = ""; }; - 92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutwindow.cpp; sourceTree = ""; }; - 92C115420F8EBCB70048CA8D /* shortcutwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutwindow.h; sourceTree = ""; }; - 92C115450F8EBCD00048CA8D /* passwordfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = passwordfield.cpp; sourceTree = ""; }; - 92C115460F8EBCD00048CA8D /* passwordfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = passwordfield.h; sourceTree = ""; }; - 92C115490F8EBD000048CA8D /* checkbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkbox.cpp; sourceTree = ""; }; - 92C1154A0F8EBD000048CA8D /* checkbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkbox.h; sourceTree = ""; }; - 92C1154B0F8EBD000048CA8D /* textbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textbox.cpp; sourceTree = ""; }; - 92C1154C0F8EBD000048CA8D /* textbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textbox.h; sourceTree = ""; }; - 92C115500F8EBD250048CA8D /* label.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = label.cpp; sourceTree = ""; }; - 92C115510F8EBD250048CA8D /* label.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = label.h; sourceTree = ""; }; - 92C115520F8EBD250048CA8D /* progressbar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressbar.cpp; sourceTree = ""; }; - 92C115530F8EBD250048CA8D /* progressbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressbar.h; sourceTree = ""; }; - 92C115570F8EBD490048CA8D /* net.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net.cpp; sourceTree = ""; }; - 92C115580F8EBD490048CA8D /* net.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net.h; sourceTree = ""; }; - 92C115990F8EBD900048CA8D /* emotedb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotedb.cpp; sourceTree = ""; }; - 92C1159A0F8EBD900048CA8D /* emotedb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotedb.h; sourceTree = ""; }; - 92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = commandhandler.cpp; path = src/commandhandler.cpp; sourceTree = ""; }; - 92C1159D0F8EBDB20048CA8D /* commandhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = commandhandler.h; path = src/commandhandler.h; sourceTree = ""; }; - 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = effectmanager.cpp; path = src/effectmanager.cpp; sourceTree = ""; }; - 92C1159F0F8EBDB20048CA8D /* effectmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = effectmanager.h; path = src/effectmanager.h; sourceTree = ""; }; - 92C115A00F8EBDB20048CA8D /* units.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = units.cpp; path = src/units.cpp; sourceTree = ""; }; - 92C115A10F8EBDB20048CA8D /* units.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = units.h; path = src/units.h; sourceTree = ""; }; - 92C115AD0F8EBE450048CA8D /* palette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = palette.cpp; sourceTree = ""; }; - 92C115AE0F8EBE450048CA8D /* palette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = palette.h; sourceTree = ""; }; - 92C115B10F8EBE450048CA8D /* recorder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = recorder.cpp; sourceTree = ""; }; - 92C115B20F8EBE450048CA8D /* recorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = recorder.h; sourceTree = ""; }; - 92C115B50F8EBE450048CA8D /* speechbubble.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = speechbubble.cpp; sourceTree = ""; }; - 92C115B60F8EBE450048CA8D /* speechbubble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = speechbubble.h; sourceTree = ""; }; - 92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = channeltab.cpp; sourceTree = ""; }; - 92C115BE0F8EBE5E0048CA8D /* channeltab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = channeltab.h; sourceTree = ""; }; - 92C115C30F8EBE950048CA8D /* whispertab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = whispertab.cpp; sourceTree = ""; }; - 92C115C40F8EBE950048CA8D /* whispertab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whispertab.h; sourceTree = ""; }; - 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charcreatedialog.cpp; sourceTree = ""; }; - 92C115C80F8EBECE0048CA8D /* charcreatedialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charcreatedialog.h; sourceTree = ""; }; - 92C115CB0F8EBF090048CA8D /* channelmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channelmanager.cpp; path = src/channelmanager.cpp; sourceTree = ""; }; - 92C115CC0F8EBF090048CA8D /* channelmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channelmanager.h; path = src/channelmanager.h; sourceTree = ""; }; - 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = colordb.cpp; sourceTree = ""; }; - 92C115CF0F8EBF1C0048CA8D /* colordb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = colordb.h; sourceTree = ""; }; - 92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wallpaper.cpp; sourceTree = ""; }; - 92C115D10F8EBF1C0048CA8D /* wallpaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wallpaper.h; sourceTree = ""; }; - 92C115D50F8EBF530048CA8D /* button.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = button.cpp; sourceTree = ""; }; - 92C115D60F8EBF530048CA8D /* button.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = button.h; sourceTree = ""; }; - 92C115D70F8EBF530048CA8D /* icon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon.cpp; sourceTree = ""; }; - 92C115D80F8EBF530048CA8D /* icon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icon.h; sourceTree = ""; }; - 92C115D90F8EBF530048CA8D /* radiobutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radiobutton.cpp; sourceTree = ""; }; - 92C115DA0F8EBF530048CA8D /* radiobutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = radiobutton.h; sourceTree = ""; }; - 92C115E80F8EBFA60048CA8D /* stringutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringutils.cpp; sourceTree = ""; }; - 92C115E90F8EBFA60048CA8D /* stringutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringutils.h; sourceTree = ""; }; - 92C115EC0F8EBFC20048CA8D /* channel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cpp; path = src/channel.cpp; sourceTree = ""; }; - 92C115ED0F8EBFC20048CA8D /* channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/channel.h; sourceTree = ""; }; - 92C115F50F8EBFDD0048CA8D /* dropdown.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dropdown.cpp; sourceTree = ""; }; - 92C115F60F8EBFDD0048CA8D /* dropdown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dropdown.h; sourceTree = ""; }; - 92C115F90F8EBFF30048CA8D /* setup_colors.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_colors.cpp; sourceTree = ""; }; - 92C115FA0F8EBFF30048CA8D /* setup_colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_colors.h; sourceTree = ""; }; - 92C115FD0F8EC0150048CA8D /* textpreview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpreview.cpp; sourceTree = ""; }; - 92C115FE0F8EC0150048CA8D /* textpreview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpreview.h; sourceTree = ""; }; - 92C116010F8EC0590048CA8D /* circle-gray.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "circle-gray.png"; sourceTree = ""; }; - 92C116020F8EC0590048CA8D /* circle-green.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "circle-green.png"; sourceTree = ""; }; - 92C116070F8EC0590048CA8D /* speechbubble.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = speechbubble.xml; sourceTree = ""; }; - 92C116080F8EC0590048CA8D /* sticky_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticky_button.png; sourceTree = ""; }; - 92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changepassworddialog.cpp; sourceTree = ""; }; - 92C116E50F8ECBE80048CA8D /* changepassworddialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changepassworddialog.h; sourceTree = ""; }; - 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skilldialog.cpp; sourceTree = ""; }; - 92C117540F8ECEEA0048CA8D /* skilldialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skilldialog.h; sourceTree = ""; }; - 92C117560F8ECF0B0048CA8D /* statuswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = statuswindow.cpp; sourceTree = ""; }; - 92C117570F8ECF0B0048CA8D /* statuswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = statuswindow.h; sourceTree = ""; }; - 92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unregisterdialog.cpp; sourceTree = ""; }; - 92C117590F8ECF0B0048CA8D /* unregisterdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unregisterdialog.h; sourceTree = ""; }; - 92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quitdialog.cpp; sourceTree = ""; }; - 92C118700F8ED33F0048CA8D /* quitdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quitdialog.h; sourceTree = ""; }; - 92C1188E0F8ED4B30048CA8D /* guild.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = guild.cpp; path = src/guild.cpp; sourceTree = ""; }; - 92C1188F0F8ED4B30048CA8D /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = src/guild.h; sourceTree = ""; }; - 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textdialog.cpp; sourceTree = ""; }; - 92C118F30F8ED5DE0048CA8D /* textdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textdialog.h; sourceTree = ""; }; - 92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcpostdialog.cpp; sourceTree = ""; }; - 92C119020F8ED63F0048CA8D /* npcpostdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcpostdialog.h; sourceTree = ""; }; - 92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changeemaildialog.cpp; sourceTree = ""; }; - 92C1191C0F8ED79A0048CA8D /* changeemaildialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changeemaildialog.h; sourceTree = ""; }; - 92C119830F8ED80E0048CA8D /* serverdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = serverdialog.cpp; sourceTree = ""; }; - 92C119840F8ED80E0048CA8D /* serverdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverdialog.h; sourceTree = ""; }; - 92C1198E0F8ED85E0048CA8D /* sha256.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sha256.cpp; sourceTree = ""; }; - 92C1198F0F8ED85E0048CA8D /* sha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha256.h; sourceTree = ""; }; - 92C119980F8ED8B00048CA8D /* position.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = position.cpp; path = src/position.cpp; sourceTree = ""; }; - 92C636AF0FC5605300EE8D8D /* mathutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mathutils.h; sourceTree = ""; }; - 92C636B30FC5663000EE8D8D /* flooritem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = flooritem.cpp; path = src/flooritem.cpp; sourceTree = ""; }; - 92C636B40FC5663000EE8D8D /* flooritem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = flooritem.h; path = src/flooritem.h; sourceTree = ""; }; - 92C636B50FC5663000EE8D8D /* playerrelations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playerrelations.cpp; path = src/playerrelations.cpp; sourceTree = ""; }; - 92C636B60FC5663000EE8D8D /* playerrelations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playerrelations.h; path = src/playerrelations.h; sourceTree = ""; }; - 92C636B70FC5663000EE8D8D /* position.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = position.h; path = src/position.h; sourceTree = ""; }; - 92C636B80FC5663000EE8D8D /* rotationalparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rotationalparticle.cpp; path = src/rotationalparticle.cpp; sourceTree = ""; }; - 92C636B90FC5663000EE8D8D /* rotationalparticle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rotationalparticle.h; path = src/rotationalparticle.h; sourceTree = ""; }; - 92C636BA0FC5663000EE8D8D /* vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vector.cpp; path = src/vector.cpp; sourceTree = ""; }; - 92C636C40FC5670700EE8D8D /* charselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charselectdialog.cpp; sourceTree = ""; }; - 92C636C50FC5670700EE8D8D /* charselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charselectdialog.h; sourceTree = ""; }; - 92C636C60FC5670700EE8D8D /* confirmdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = confirmdialog.cpp; sourceTree = ""; }; - 92C636C70FC5670700EE8D8D /* confirmdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = confirmdialog.h; sourceTree = ""; }; - 92C636C80FC5670700EE8D8D /* emotepopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotepopup.cpp; sourceTree = ""; }; - 92C636C90FC5670700EE8D8D /* emotepopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotepopup.h; sourceTree = ""; }; - 92C636CA0FC5670700EE8D8D /* itemamount.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemamount.cpp; sourceTree = ""; }; - 92C636CB0FC5670700EE8D8D /* itemamount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemamount.h; sourceTree = ""; }; - 92C636CC0FC5670700EE8D8D /* npcdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdialog.cpp; sourceTree = ""; }; - 92C636CD0FC5670700EE8D8D /* npcdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdialog.h; sourceTree = ""; }; - 92C636CE0FC5670700EE8D8D /* okdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = okdialog.cpp; sourceTree = ""; }; - 92C636CF0FC5670700EE8D8D /* okdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = okdialog.h; sourceTree = ""; }; - 92C636D00FC5670700EE8D8D /* outfitwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = outfitwindow.cpp; sourceTree = ""; }; - 92C636D10FC5670700EE8D8D /* outfitwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = outfitwindow.h; sourceTree = ""; }; - 92C636D50FC5670700EE8D8D /* windowmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowmenu.cpp; sourceTree = ""; }; - 92C636D60FC5670700EE8D8D /* windowmenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowmenu.h; sourceTree = ""; }; - 92C636EA0FC5677500EE8D8D /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = ""; }; - 92C636EB0FC5677500EE8D8D /* charhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charhandler.h; sourceTree = ""; }; - 92C636EC0FC5677500EE8D8D /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = ""; }; - 92C636ED0FC5677500EE8D8D /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = ""; }; - 92C636EE0FC5677500EE8D8D /* logindata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logindata.h; sourceTree = ""; }; - 92C636F10FC5677500EE8D8D /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = ""; }; - 92C636F20FC5677500EE8D8D /* serverinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverinfo.h; sourceTree = ""; }; - 92C637800FC574B500EE8D8D /* window.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = window.png; sourceTree = ""; }; - 92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "dejavusans-bold.ttf"; path = "fonts/dejavusans-bold.ttf"; sourceTree = ""; }; - 92C85CF411F28D2300AB20CA /* error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = error.png; sourceTree = ""; }; - 92C85CF511F28D2300AB20CA /* error.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = error.xml; sourceTree = ""; }; - 92DD76450F267B3600B2B519 /* layouthelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layouthelper.cpp; sourceTree = ""; }; - 92DD76460F267B3600B2B519 /* layouthelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layouthelper.h; sourceTree = ""; }; - 92EA98B30FC5CB17003DC005 /* SDLMain.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; path = SDLMain.nib; sourceTree = ""; }; - 92FD19B30DDCE53400D14E5D /* setup_players.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_players.cpp; sourceTree = ""; }; - 92FD19B40DDCE53400D14E5D /* setup_players.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_players.h; sourceTree = ""; }; - 92FD19BD0DDCE56A00D14E5D /* dye.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dye.h; sourceTree = ""; }; -/* 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 = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - 20286C2CFDCF999611CA2CEA /* Resources */ = { - isa = PBXGroup; - children = ( - 92EA98B30FC5CB17003DC005 /* SDLMain.nib */, - 9273BDFD0EF33E1A008E56E1 /* AUTHORS */, - 9273BDFE0EF33E1A008E56E1 /* README */, - 9273BDFB0EF33DFD008E56E1 /* COPYING */, - 924A3E590C085ED70066885E /* data */, - ); - name = Resources; - sourceTree = ""; - }; - 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 = ""; - }; - 5048396909E3304600765E4B /* Configuration Files */ = { - isa = PBXGroup; - children = ( - 92037A190ED2035A00D3712D /* SDLMain.h */, - 92BC40E50BAEF54B000DAB7F /* SDLMain.m */, - ); - name = "Configuration Files"; - sourceTree = ""; - }; - 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 = ""; - }; - 924A3E590C085ED70066885E /* data */ = { - isa = PBXGroup; - children = ( - 926A29970F23C97C005D6466 /* fonts */, - 924A3E5C0C085ED70066885E /* graphics */, - 924A40090C085ED80066885E /* help */, - 924A40140C085ED80066885E /* icons */, - 924A401C0C085ED80066885E /* items.xsd */, - ); - path = data; - sourceTree = ""; - }; - 924A3E5C0C085ED70066885E /* graphics */ = { - isa = PBXGroup; - children = ( - 92C85CF211F28D2300AB20CA /* sprites */, - 924A3E5E0C085ED70066885E /* gui */, - 924A3E900C085ED70066885E /* images */, - ); - path = graphics; - sourceTree = ""; - }; - 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 = ""; - }; - 924A3E900C085ED70066885E /* images */ = { - isa = PBXGroup; - children = ( - 924A3E9A0C085ED70066885E /* login_wallpaper.png */, - ); - path = images; - sourceTree = ""; - }; - 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 = ""; - }; - 924A40140C085ED80066885E /* icons */ = { - isa = PBXGroup; - children = ( - 926855FF11F141FD00A28C33 /* mana.icns */, - ); - path = icons; - sourceTree = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - 9268570011F1433F00A28C33 /* gui */ = { - isa = PBXGroup; - children = ( - 9268570111F1433F00A28C33 /* guildtab.cpp */, - 9268570211F1433F00A28C33 /* guildtab.h */, - 9268570311F1433F00A28C33 /* partytab.cpp */, - 9268570411F1433F00A28C33 /* partytab.h */, - ); - path = gui; - sourceTree = ""; - }; - 926A29970F23C97C005D6466 /* fonts */ = { - isa = PBXGroup; - children = ( - 92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */, - 926A29980F23C988005D6466 /* dejavusans.ttf */, - ); - name = fonts; - sourceTree = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - 92C85CF211F28D2300AB20CA /* sprites */ = { - isa = PBXGroup; - children = ( - 92C85CF411F28D2300AB20CA /* error.png */, - 92C85CF511F28D2300AB20CA /* error.xml */, - ); - path = sprites; - sourceTree = ""; - }; -/* 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 */; -} -- cgit v1.2.3-60-g2f50 From da4e63f493d2da37a6f69bd35f7d2d435c986fb8 Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Tue, 11 Jan 2011 22:41:03 +0100 Subject: Updated the German translation thanks to Matt. --- po/de.po | 157 ++++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 96 insertions(+), 61 deletions(-) diff --git a/po/de.po b/po/de.po index 27a8b707..b68c0bc9 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 , 2007; 2011. +# Jonathan Raphael Joachim Kolberg, 2009, 2010. +# seeseekey , 2009. +# #-#-#-#-# 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. @@ -5,8 +14,25 @@ # Matthias Hartmann , 2007. # Jonathan Raphael Joachim Kolberg, 2009, 2010. # seeseekey , 2009. +#, fuzzy 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 \n" +"Language-Team: Deutsch \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-06 19:23+0100\n" @@ -38,7 +64,7 @@ msgstr "Anmelden" #: src/client.cpp:703 msgid "Entering game world" -msgstr "" +msgstr "Betrete die Spielwelt" #: src/client.cpp:762 #, fuzzy @@ -67,7 +93,7 @@ msgstr "Fehler" #: src/client.cpp:846 msgid "Requesting registration details" -msgstr "" +msgstr "Fordere Registrierungsdetails an" #: src/client.cpp:873 msgid "Password Change" @@ -98,7 +124,7 @@ msgstr "Leb wohl und komme jeder Zeit wieder..." #: src/client.cpp:1090 src/client.cpp:1113 #, 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:1232 #, fuzzy, c-format @@ -161,14 +187,16 @@ msgstr "/q > Ersatz für query" #: 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 "" +msgstr "/ignore > Ignoriere einen Spieler" #: src/commandhandler.cpp:185 msgid "/unignore > stop ignoring a player" -msgstr "" +msgstr "/unignore > Ignorierung eines Spielers aufheben" #: src/commandhandler.cpp:187 msgid "/list > Display all public channels" @@ -328,7 +356,7 @@ msgstr "Befehl: /w " #: src/commandhandler.cpp:271 msgid "This command tells you're away from keyboard with the given reason." -msgstr "" +msgstr "Dieser Befehl teilt deine Abwesenheit und deren angegebenen Grund mit." #: src/commandhandler.cpp:273 #, fuzzy @@ -426,6 +454,7 @@ msgstr "Befehl: /item " #: src/commandhandler.cpp:317 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:322 msgid "Command: /where" @@ -472,7 +501,7 @@ msgstr "Name der Party fehlt." #: src/commandhandler.cpp:448 src/commandhandler.cpp:525 #: src/commandhandler.cpp:547 msgid "Please specify a name." -msgstr "" +msgstr "Bitte gib einen Namen an." #: src/commandhandler.cpp:466 msgid "Return toggles chat." @@ -492,15 +521,15 @@ msgstr "Jetzt schließt jede Nachricht die Chatzeile." #: src/commandhandler.cpp:492 src/commandhandler.cpp:505 msgid "Show IP: On" -msgstr "" +msgstr "IP Anzeige: An" #: src/commandhandler.cpp:492 src/commandhandler.cpp:501 msgid "Show IP: Off" -msgstr "" +msgstr "IP Anzeige: Aus" #: src/commandhandler.cpp:531 msgid "Player already ignored!" -msgstr "" +msgstr "Spieler wird bereits ignoriert!" #: src/commandhandler.cpp:538 #, fuzzy @@ -676,7 +705,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 @@ -706,14 +735,14 @@ msgstr "Name :" #: src/gui/charcreatedialog.cpp:70 src/gui/charcreatedialog.cpp:75 #: src/gui/outfitwindow.cpp:67 msgid ">" -msgstr "" +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/outfitwindow.cpp:66 msgid "<" -msgstr "" +msgstr "<" #: src/gui/charcreatedialog.cpp:74 msgid "Hair color:" @@ -790,7 +819,7 @@ msgstr "Wähle" #: src/gui/charselectdialog.cpp:392 src/gui/charselectdialog.cpp:393 msgid "(empty)" -msgstr "" +msgstr "(leer)" #: src/gui/chat.cpp:87 msgid "Chat" @@ -820,17 +849,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 @@ -850,7 +879,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 @@ -917,7 +946,7 @@ msgstr "Aufteilen" #: src/gui/inventorywindow.cpp:101 src/gui/outfitwindow.cpp:51 msgid "Outfits" -msgstr "" +msgstr "Ausrüstung" #: src/gui/inventorywindow.cpp:103 msgid "Weight:" @@ -993,7 +1022,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:46 src/gui/minimap.cpp:87 msgid "Map" @@ -1001,7 +1030,7 @@ msgstr "Karte" #: src/gui/ministatus.cpp:157 msgid "Need" -msgstr "" +msgstr "Muss" #: src/gui/npcdialog.cpp:45 msgid "Waiting for server" @@ -1021,7 +1050,7 @@ msgstr "NPC" #: src/gui/npcdialog.cpp:98 msgid "Clear log" -msgstr "" +msgstr "Protokoll leeren" #: src/gui/npcdialog.cpp:114 msgid "Reset" @@ -1052,7 +1081,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" @@ -1110,7 +1139,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 @@ -1252,12 +1281,12 @@ msgstr "Fehler beim empfangen der Serverliste: %s\n" #: src/gui/serverdialog.cpp:556 msgid "requires a newer version" -msgstr "" +msgstr "benötigt eine neuere Version" #: src/gui/serverdialog.cpp:558 #, c-format msgid "requires v%s" -msgstr "" +msgstr "benötigt v%s" #: src/gui/setup_audio.cpp:42 msgid "Sound" @@ -1527,7 +1556,7 @@ msgstr "Eigener Name" #: src/gui/setup_video.cpp:228 msgid "Log NPC dialogue" -msgstr "" +msgstr "Protokoliere NPC Gespräche" #: src/gui/setup_video.cpp:229 msgid "Show pickup notification" @@ -1550,7 +1579,7 @@ msgstr "FPS-Limit:" #: src/gui/setup_video.cpp:249 msgid "Disable transparency (Low CPU mode)" -msgstr "" +msgstr "Transparenz deaktivieren (für langsame PCs)" #: src/gui/setup_video.cpp:252 msgid "Video" @@ -1619,10 +1648,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:468 msgid "Deactivating OpenGL" -msgstr "" +msgstr "Deaktiviere OpenGL" #: src/gui/setup_video.cpp:469 msgid "Applying change to OpenGL requires restart." @@ -1637,11 +1669,11 @@ msgstr "Teilen der Erfahrungspunkte deaktiviert." #: src/gui/setup_video.cpp:478 src/gui/setup_video.cpp:486 msgid "You must restart to apply changes." -msgstr "" +msgstr "Bitte neustarten um Änderungen zu übernehmen." #: src/gui/setup_video.cpp:485 msgid "Transparency enabled" -msgstr "" +msgstr "Transparenz aktiviert." #: src/gui/setup_video.cpp:579 src/gui/setup_video.cpp:584 #, fuzzy @@ -1733,7 +1765,7 @@ msgstr "Bist Du sicher, dass Du das Spiel verlassen möchtest?" #: src/gui/socialwindow.cpp:222 #, c-format msgid "Party %s quit requested." -msgstr "" +msgstr "Partie %s Auflösung beauftragt." #: src/gui/socialwindow.cpp:236 #, fuzzy @@ -1747,7 +1779,7 @@ msgstr "Wen möchtest du einladen?" #: src/gui/socialwindow.cpp:246 msgid "Leave Party?" -msgstr "" +msgstr "Partie verlassen?" #: src/gui/socialwindow.cpp:247 #, fuzzy, c-format @@ -1800,7 +1832,7 @@ msgstr "Partyeinladung von %s abgelehnt." #: src/gui/socialwindow.cpp:501 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:507 #, c-format @@ -1809,7 +1841,7 @@ msgstr "Erstelle der Gilde %s." #: src/gui/socialwindow.cpp:523 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:529 #, fuzzy, c-format @@ -1868,7 +1900,7 @@ msgstr "Nehme Partyeinladung an" #: src/gui/socialwindow.cpp:624 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:629 #, fuzzy @@ -1887,12 +1919,12 @@ msgstr "Special" #: src/gui/specialswindow.cpp:174 #, c-format msgid "Specials Set %d" -msgstr "" +msgstr "Spezial Sets %d" #: src/gui/specialswindow.cpp:191 #, c-format msgid "Special %d" -msgstr "" +msgstr "Spezial %d" #: src/gui/statuswindow.cpp:109 src/gui/statuswindow.cpp:253 #, c-format @@ -2228,11 +2260,11 @@ msgstr "Kann keine leere Nachricht senden!" #: src/gui/widgets/whispertab.cpp:71 msgid "/ignore > Ignore the other player" -msgstr "" +msgstr "/ignore > Anderen Spieler ignorieren" #: src/gui/widgets/whispertab.cpp:72 msgid "/unignore > Stop ignoring the other player" -msgstr "" +msgstr "/unignore > Anderen Spieler nicht mehr ignorieren" #: src/gui/widgets/whispertab.cpp:73 msgid "/close > Close the whisper tab" @@ -2425,11 +2457,11 @@ msgstr "Statusfenster" #: src/keyboardconfig.cpp:83 msgid "Wear Outfit" -msgstr "" +msgstr "Ausrüstung anziehen" #: src/keyboardconfig.cpp:84 msgid "Copy Outfit" -msgstr "" +msgstr "Ausrüstung kopieren" #: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 #: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 @@ -2495,11 +2527,11 @@ msgstr[1] "Du hast %s [@@%d|%s@@] aufgehoben." #: src/localplayer.cpp:1435 msgid "Away" -msgstr "" +msgstr "Abwesend" #: src/main.cpp:42 msgid "mana [options] [mana-file]" -msgstr "" +msgstr "mana [Optionen] [mana-Datei]" #: src/main.cpp:43 msgid "Options:" @@ -2682,7 +2714,7 @@ msgstr "Spielfigurattribute sind zu klein" #: src/net/manaserv/charhandler.cpp:161 msgid "One stat is zero." -msgstr "" +msgstr "Ein Statuspunkt ist Null." #: src/net/manaserv/charhandler.cpp:164 src/net/manaserv/loginhandler.cpp:96 #: src/net/manaserv/loginhandler.cpp:127 src/net/manaserv/loginhandler.cpp:161 @@ -2733,7 +2765,7 @@ msgstr "Liste Kanäle" #: src/net/manaserv/chathandler.cpp:219 msgid "End of channel list." -msgstr "" +msgstr "Ende der Channel-Liste." #: src/net/manaserv/chathandler.cpp:291 #, c-format @@ -2743,17 +2775,17 @@ msgstr "%s ist dem Kanal beigetreten." #: src/net/manaserv/chathandler.cpp:296 #, c-format msgid "%s left the channel." -msgstr "" +msgstr "%s hat den Channel verlassen." #: src/net/manaserv/chathandler.cpp:312 #, 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:322 #, c-format msgid "%s has kicked %s." -msgstr "" +msgstr "%s hat %s gekickt." #: src/net/manaserv/chathandler.cpp:327 #, fuzzy @@ -2821,6 +2853,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." @@ -2837,7 +2871,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." @@ -2854,6 +2888,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:88 msgid "Joined party." @@ -2983,7 +3018,7 @@ msgstr "Verkauf fehlgeschlagen." #: src/net/tmwa/charserverhandler.cpp:105 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:109 msgid "Cannot use this ID." @@ -3182,7 +3217,7 @@ msgstr "Name der Party fehlt." #: src/net/tmwa/guildhandler.cpp:295 msgid "Could not inivte user to guild." -msgstr "" +msgstr "Konnte User nicht in Gilde einladen." #: src/net/tmwa/guildhandler.cpp:300 #, fuzzy @@ -3196,7 +3231,7 @@ msgstr "%s ist nun Mitglied Deiner Party." #: src/net/tmwa/guildhandler.cpp:310 msgid "Your guild is full." -msgstr "" +msgstr "Deine Gilde ist voll." #: src/net/tmwa/guildhandler.cpp:315 #, fuzzy @@ -3205,7 +3240,7 @@ msgstr "Unbekannte Reaktion auf die Einladung von %s." #: src/net/tmwa/guildhandler.cpp:392 msgid "Guild creation isn't supported yet." -msgstr "" +msgstr "Gildenerstellung wird nocht nicht unterstützt." #: src/net/tmwa/gui/partytab.cpp:43 msgid "Party" @@ -3385,7 +3420,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 \"" @@ -3445,11 +3480,11 @@ msgstr "Spieler %s einladen" #: src/net/tmwa/partyhandler.cpp:340 #, 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:345 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:374 #, c-format @@ -3669,19 +3704,19 @@ msgstr "@@ignore|Ignoriere %s komplett@@" #: src/playerrelations.cpp:326 msgid "Print '...'" -msgstr "" +msgstr "Drucke '..'" #: src/playerrelations.cpp:342 msgid "Blink name" -msgstr "" +msgstr "Blinkender Name" #: src/playerrelations.cpp:379 msgid "Floating '...' bubble" -msgstr "" +msgstr "Schwebende '...' Blase" #: src/playerrelations.cpp:382 msgid "Floating bubble" -msgstr "" +msgstr "Schwebende Blase" #: src/resources/itemdb.cpp:53 #, c-format -- cgit v1.2.3-60-g2f50 From 27cdfc3e15846983ee877ac74c0fcc87b118bf15 Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Tue, 11 Jan 2011 22:47:21 +0100 Subject: Updated the French translation thanks to Whistler. --- po/fr.po | 1067 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 616 insertions(+), 451 deletions(-) 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 , 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 \n" +"Language-Team: French >\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 toggles the chat log" -msgstr "/toggle > Détermine si la touche bascule l'historique du tchat" +msgstr "" +"/toggle > Détermine si la touche 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 " @@ -297,14 +313,13 @@ msgstr "Commande : /w " msgid "This command sends the text to ." msgstr "Cette commande envoie le texte au joueur " -#: 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 has spaces in it, enclose it in double quotes (\")." -msgstr "Si le contient des espaces, entourez le de guillemets (exemple : \"ni ck\")." +msgstr "" +"Si le contient des espaces, entourez le de guillemets (exemple : \"ni " +"ck\")." #: src/commandhandler.cpp:263 msgid "Command: /query " @@ -316,7 +331,8 @@ msgstr "Commande : /q " #: src/commandhandler.cpp:265 msgid "This command tries to make a tab for whispers betweenyou and ." -msgstr "Cette commande essaye de créer une fenêtre de dialogue entre vous et " +msgstr "" +"Cette commande essaye de créer une fenêtre de dialogue entre vous et " #: src/commandhandler.cpp:270 msgid "Command: /away " @@ -324,7 +340,8 @@ msgstr "Commande : /away " #: 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é " msgid "Command: /party " msgstr "Commande : /party " -#: 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 to party with you." msgstr "Cette commande invite à 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 " @@ -365,7 +386,9 @@ msgstr "Commande : /record " #: src/commandhandler.cpp:298 msgid "This command starts recording the chat log to the file ." -msgstr "Cette commande active l'enregistrement de la conversation dans le fichier ." +msgstr "" +"Cette commande active l'enregistrement de la conversation dans le fichier " +"." #: src/commandhandler.cpp:300 msgid "Command: /record" @@ -380,12 +403,27 @@ msgid "Command: /toggle " msgstr "Command: /toggle " #: 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 " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0\", \"no\", \"false\" to turn the toggle off." -msgstr " peut être en position \"1\", \"yes\", \"true\" pour activer le bouton sur marche, ou \"0\", \"no\", \"false\" pour désactiver le bouton." +msgid "" +" can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or " +"\"0\", \"no\", \"false\" to turn the toggle off." +msgstr "" +" 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 " msgstr "Commande : /unignore " #: 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 " @@ -2198,7 +2189,9 @@ msgstr "Cette commande donne les droit d'opérateur du salon à " #: 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 " @@ -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 " msgstr "Commande : /invite " @@ -3185,8 +3183,7 @@ msgstr "Commande : /invite " msgid "This command invites to the guild you're in." msgstr "Cette commande invite à 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 " can be one of \"1\", \"yes\", \"true\" to enable item sharing, or \"0\", \"no\", \"false\" to disable item sharing." -msgstr " peut être \"1\", \"yes\", \"true\" pour activer l'échange d'objet, ou \"0\", \"no\", \"false\" pour le désactiver." +msgid "" +" can be one of \"1\", \"yes\", \"true\" to enable item sharing, or " +"\"0\", \"no\", \"false\" to disable item sharing." +msgstr "" +" 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 " @@ -3276,11 +3279,16 @@ msgstr "Commande : /exp " #: 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 " can be one of \"1\", \"yes\", \"true\" to enable experience sharing, or \"0\", \"no\", \"false\" to disable experience sharing." -msgstr " peut être \"1\", \"yes\", \"true\" pour activer le partage d'expérience, ou \"0\", \"no\", \"false\" pour le désactiver." +msgid "" +" can be one of \"1\", \"yes\", \"true\" to enable experience " +"sharing, or \"0\", \"no\", \"false\" to disable experience sharing." +msgstr "" +" 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 " #~ msgstr "Commande : /new " + #~ 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" - -- cgit v1.2.3-60-g2f50 From 10e5f2e1d88897c16f2ce5e2ef26898ae05ab9ef Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Thu, 13 Jan 2011 16:06:07 +0100 Subject: Fix a segfault when attempting to buy free items. Resolves: Mana-mantis #277 Trivial fix. --- src/gui/buy.cpp | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/gui/buy.cpp b/src/gui/buy.cpp index 031c53dd..faa86cc9 100644 --- a/src/gui/buy.cpp +++ b/src/gui/buy.cpp @@ -199,8 +199,10 @@ void BuyDialog::action(const gcn::ActionEvent &event) // Update money and adjust the max number of items that can be bought mMaxItems -= mAmountItems; - setMoney(mMoney - - mAmountItems * mShopItems->at(selectedItem)->getPrice()); + int price = mShopItems->at(selectedItem)->getPrice(); + if (price < 0) + price = 0; + setMoney(mMoney - mAmountItems * price); // Reset selection mAmountItems = 1; @@ -229,12 +231,20 @@ void BuyDialog::updateButtonsAndLabels() int itemPrice = mShopItems->at(selectedItem)->getPrice(); // Calculate how many the player can afford - mMaxItems = mMoney / itemPrice; - if (mAmountItems > mMaxItems) + if (itemPrice > 0) { - mAmountItems = mMaxItems; + mMaxItems = mMoney / itemPrice; + } + else + { + // Let the player no more than 1 of them at a time, since it + // shouldn't be a permitted case. + mMaxItems = 1; } + if (mAmountItems > mMaxItems) + mAmountItems = mMaxItems; + // Calculate price of pending purchase price = mAmountItems * itemPrice; } -- cgit v1.2.3-60-g2f50 From 0aa2c1373944b6d82793b91de744ce81d114474e Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Wed, 19 Jan 2011 01:13:29 +0100 Subject: Fix the wallpapers loading broken logic. Trivial. --- src/resources/wallpaper.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/resources/wallpaper.cpp b/src/resources/wallpaper.cpp index 22bbda9c..c8857745 100644 --- a/src/resources/wallpaper.cpp +++ b/src/resources/wallpaper.cpp @@ -55,9 +55,7 @@ static void initDefaultWallpaperPaths() // Init the path wallpaperPath = branding.getValue("wallpapersPath", ""); - if (!wallpaperPath.empty() && resman->isDirectory(wallpaperPath)) - return; - else + if (wallpaperPath.empty() || !resman->isDirectory(wallpaperPath)) wallpaperPath = paths.getValue("wallpapers", ""); if (wallpaperPath.empty() || !resman->isDirectory(wallpaperPath)) @@ -66,12 +64,12 @@ static void initDefaultWallpaperPaths() // Init the default file wallpaperFile = branding.getValue("wallpaperFile", ""); - if (!wallpaperFile.empty() && resman->isDirectory(wallpaperFile)) + if (!wallpaperFile.empty() && !resman->isDirectory(wallpaperFile)) return; else wallpaperFile = paths.getValue("wallpaperFile", ""); - if (wallpaperFile.empty() || !resman->isDirectory(wallpaperFile)) + if (wallpaperFile.empty() || resman->isDirectory(wallpaperFile)) wallpaperFile = "login_wallpaper.png"; } -- cgit v1.2.3-60-g2f50 From 760184661da4b96cc390ceb161646c8a83712acf Mon Sep 17 00:00:00 2001 From: Stefan Dombrowski Date: Sat, 22 Jan 2011 21:20:51 +0100 Subject: Fixing pick-up with joystick The pick-up with the joystick happend on the wrong tile. Bug was reported by Feufochmar on IRC. --- src/game.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index cd36dcdd..512b8b5f 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -779,9 +779,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 @@ -899,6 +896,9 @@ void Game::handleInput() { if (joystick->buttonPressed(1)) { + const int x = player_node->getTileX(); + const int y = player_node->getTileY(); + FloorItem *item = floorItemManager->findByCoordinates(x, y); if (item) -- cgit v1.2.3-60-g2f50 From 3f66a1934942adf3f4e81f49fe3c18476aed0177 Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Wed, 26 Jan 2011 00:12:51 +0100 Subject: Prune the enet and manaserv files dependency of the 0.5 binary. Only using cmake conditions and an ifdef. This will greatly help packaging the mana 0.5 version on other distros. --- CMakeLists.txt | 7 ++++++- src/CMakeLists.txt | 21 ++++++++++++++++----- src/net/net.cpp | 3 ++- 3 files changed, 24 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1418e938..00139b55 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 ".") @@ -46,7 +47,11 @@ ELSE (WIN32) 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/src/CMakeLists.txt b/src/CMakeLists.txt index c9f23cc1..0fd32f59 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 @@ -623,7 +630,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/net/net.cpp b/src/net/net.cpp index 25dcd981..1b4bbf36 100644 --- a/src/net/net.cpp +++ b/src/net/net.cpp @@ -159,10 +159,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; -- cgit v1.2.3-60-g2f50 From fe7a543ce0495b55122afbf11d0488289613cff5 Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Wed, 26 Jan 2011 01:09:02 +0100 Subject: Made the windows app able to load .ico files at runtime. Now the icon extension is computed against the os. This means that the 'icons/mana' appIcon branding parameter will now load icons/mana.png files for unices and mac, and icons/mana.ico for Windows. Reviewed-by: Trapdoor. Resolves: Mana-Mantis: #135. --- src/client.cpp | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/src/client.cpp b/src/client.cpp index 110420d5..b57c3ae8 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -299,17 +299,29 @@ Client::Client(const Options &options): // Add the local data directory to PhysicsFS search path resman->addToSearchPath(mLocalDataDir, false); + std::string iconFile = branding.getValue("appIcon", "icons/mana"); +#ifdef WIN32 + iconFile += ".ico"; +#else + iconFile += ".png"; +#endif + iconFile = resman->getPath(iconFile); + logger->log("Loading icon from file: %s", iconFile.c_str()); #ifdef WIN32 static SDL_SysWMinfo pInfo; SDL_GetWMInfo(&pInfo); - HICON icon = LoadIcon(GetModuleHandle(NULL), "A"); + // Attempt to load icon from .ico file + HICON icon = (HICON) LoadImage(NULL, + iconFile.c_str(), + IMAGE_ICON, 64, 64, LR_LOADFROMFILE); + // If it's failing, we load the default resource file. + if (!icon) + icon = LoadIcon(GetModuleHandle(NULL), "A"); + if (icon) - { SetClassLong(pInfo.window, GCL_HICON, (LONG) icon); - } #else - mIcon = IMG_Load(resman->getPath( - branding.getValue("appIcon", "icons/mana.png")).c_str()); + mIcon = IMG_Load(iconFile.c_str()); if (mIcon) { SDL_SetAlpha(mIcon, SDL_SRCALPHA, SDL_ALPHA_OPAQUE); -- cgit v1.2.3-60-g2f50 From a2004d367dada64bf97d62d7a42c3b7d6e6be2cf Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Fri, 28 Jan 2011 22:07:51 +0100 Subject: Fix Windows build of the 0.5 version. The rc and specialfolders files where included with the manaserv specific files. --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0fd32f59..35af94fb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -620,8 +620,8 @@ SET(SRCS_MANA ) IF (WIN32) - SET(SRCS_MANA - ${SRCS_MANA} + SET(SRCS + ${SRCS} utils/specialfolder.cpp utils/specialfolder.h mana.rc -- cgit v1.2.3-60-g2f50 From bcd1d9aff41b5c152cafade7532242c94ac1f710 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Tue, 1 Feb 2011 20:50:55 +0100 Subject: Make it clear that our current sha256 code is GPLv2 only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to taking the version from InspIRCd, our version of the file is stuck on GPLv2 and can't legally be released as "GPLv2 or later". Fix the license header accordingly. We should probably consider replacing this code once again. Reviewed-by: Patrick Matthäi --- src/utils/sha256.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 -- cgit v1.2.3-60-g2f50