In Memoriam: Tai'lahr

OpenUru.org, along with the rest of the Mystonline community, is mourning the loss of Tai'lahr on October 16th, 2019.

Rest in Peace, friend.

Build the client with MSVC 2010 Express

From OpenUru
Jump to navigation Jump to search


Introduction

This document provides steps to build the CWE client with MSVC 2010 SP1 Express.

Before you begin

  • If you have a version of Visual Studio later than 2010 installed, you may need to uninstall it.
  • If you have Microsoft Visual C++ 2010 Redistributable installed (x86 and/or x64), you will need to uninstall it before installing DirectX SDK. While installing Visual Studio, the Redistributable package(s) will be reinstalled for you automatically.

Items needed to compile

See Build preparation steps for installation instructions!

Newer versions of these libraries may work, but no guarantees are offered; these are what have been tested. See the next section for restrictions on using newer versions.

Notes

  • This guide assumes you are going to use the 7.0A SDK installed with Visual Studio 2010, and are using a 64 bit Windows install.
  • You can upgrade to a newer version of Speex if you like, but you will need to fix the Speex VS2010 projects first (by removing the architectures we do not have from the Speex project files).
  • Libogg 1.3.2 was used because xiph removed the VS2010 projects from 1.3.3 and above.
  • You must use a 2.6.x version of PhysX for CWE, because the cooked mesh format was changed in PhysX 2.7.x and later.
  • All libraries are compiled with "Whole Program Optimization" turned off.
  • Release version libraries are compiled as "Multi-threaded DLL (/MD)"
  • Debug version libraries are compiled as "Multi-threaded Debug DLL (/MDd)"
  • Crypto keys are located in "CWE-ou\MOULOpenSourceClientPlugin\Plasma20\Sources\Plasma\NucleusLib\pnNetBase". Edit the *.hpp files with a text editor to replace Cyan's keys with your own server's keys. Always clean your solution and rebuild when you change crypto keys, to make sure they are updated.
  • Server hostnames, IP addresses, and ports are located in the following files:
The status URL:
"CWE-ou\MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/Apps/plClient/winmain.cpp"
"CWE-ou\MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/Apps/plUruLauncher/Main.cpp"
The auth/gatekeeper address
"CWE-ou\MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetBase/Private/pnNbSrvs.cpp"
The default client port
"CWE-ou\MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetBase/pnNbConstant.h"

Build preparation steps

git (Optional)

If you plan to make changes to the source code and contribute to the community, install git (accepting the default options).

CWE-ou

Obtain CWE-OU source by one of these methods:

  • Use git clone with the repository link found on the webpage referenced above
  • Click "tree" in the top menu of the webpage reference above, then click "zip" to download a ZIP archive

DirectX

Install the DirectX 9.0c SDK and copy it to "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\DX9.0c".

Install the DirectX SDK before you install VS2010 Express, or the DirectX SDK install will throw error S1023, due to a newer version of the C++ 2010 redistributables being installed.

Directory structure in the CWE tree will look like this:

  StaticSDKs
    Win32
      DX9.0c
        include
        Lib

Visual Studio 2010 Express

  • Install Visual Studio 2010 Express
  • Install Service Pack 1 (SP1) for Visual Studio 2010, plus security updates (run Windows Update a few times)
  • Copy the include and lib directories from the SDK installed with VS2010 SP1 Express to "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\PlatformSDK". The directory where the SDK resides will most likely be "Program Files (x86)\Microsoft SDKs\Windows\v7.0A". As the SDK is in our path, this step is probably not necessary but we will do it for consistency.

Directory structure in the CWE tree will look like this:

StaticSDKs
  Win32
    PlatformSDK
      include
      lib

OpenAL SDK

Install the OpenAL SDK and copy the include and lib directories to "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\OpenAL 1.1 with EFX SDK"

Directory structure in the CWE tree will look like this:

  StaticSDKs
    win32
      OpenAL 1.1 with EFX SDK
        include
        libs

PhysX SDK

Install PhysX SDK, and copy PhysX subdirectories as follows:

  • Copy from "Program Files (x86)\AGEIA Technologies\AGEIA PhysX SDK\v2.6.4\SDKs" to "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\PhysX"
  • Copy from and "Program Files (x86)\AGEIA Technologies\AGEIA PhysX SDK\v2.6.4\Bin" to "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\PhysX"

Directory structure in the CWE tree will look like this:

  StaticSDKs
    Win32
      PhysX
        Bin
        Cooking
        Docs
        Foundation
        Framework
        lib
        ...

libogg and libvorbis

Build Ogg and Vorbis

  1. Create a directory and extract Ogg and Vorbis archives to it.
    oggvorbis
      libogg-1.3.2
      libvorbis-1.3.6
  2. Change directory to "libvorbis-1.3.6\win32\vs2010" and edit the libogg.props file. Make sure the "LIBOGG_VERSION" value matches your version of Ogg (1.3.2 in this document).
  3. Open "libogg-1.3.2\win32\VS2010\libogg_static.sln" in the Visual Studio IDE and perform the following steps:
    1. On the IDE toolbar, click on configuration drop down at the upper left (it defaults to "Debug") and change it to "Release"
    2. Right click on the project (e.g. "libogg_static") in the Solution Explorer at upper left, and select Properties.
    3. In the panel that opens, set (or verify) the following items as follows:
      Left Pane Right pane parameter Right pane value (drop down)
      Configuration Properties -> General Whole Program Optimization No Whole Program Optimization
      C/C++ -> Optimization Whole Program Optimization No
      C/C++ Code Generation Runtime Library Multi-threaded DLL (/MD)
    4. Click on "Apply"
    5. Click on configuration drop down at the upper left of the panel and select "Debug". Set (or verify) the following items as follows, noting that the 3rd item is not the same as in the previous list.
    6. Left Pane Right pane parameter Right pane value (drop down)
      Configuration Properties -> General Whole Program Optimization No Whole Program Optimization
      C/C++ -> Optimization Whole Program Optimization No
      C/C++ Code Generation Runtime Library Multi-threaded Debug DLL (/MDd)
    7. Click "Apply" and then "OK".
    8. On the IDE toolbar, verify the configuration drop down is still set to "Release". Then right click on the project in the solution explorer and select "Build".
    9. On the IDE toolbar, select "Debug" from the drop down. Then right click on the project in the solution explorer and select "Build".
  4. Open "libvorbis-1.3.6\win32\VS2010\vorbis_static.sln" in the Visual Studio IDE, and repeat the preceding steps for projects libvorbis_static and libvorbisfile.

Copy Ogg and Vorbis files to CWE

  1. Copy the ogg and vorbis include directories into "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\xiph\include". It is okay to let it overwrite.
  2. Copy the "libogg-1.3.2\win32\VS2010\Win32\Release" and "Debug" directories into "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\xiph\lib"
  3. Copy the "libvorbis-1.3.6\win32\VS2010\Win32\Release" and "Debug" directories to "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\xiph\lib"

Directory structure in the CWE tree will look like this:

  StaticSDKs
    win32
      xiph
        include
          ogg
          vorbis
        lib
          Debug
          Release

Speex

Rebuild the Speex 1.0.1 included in the CWE tree.

  1. Open CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\speex-1.0.1\win32\libspeex\libspeex.sln in the Visual Studio 2010 IDE, and convert.
  2. Click on configuration drop-down on the upper left and select "Release"
  3. Right click on project in the solution explorer and select properties.
  4. In the panel that opens, set (or verify) the following items as follows:
    Left Pane Right pane parameter Right pane value (drop down)
    Configuration Properties -> General Whole Program Optimization No Whole Program Optimization
    C/C++ -> Optimization Whole Program Optimization No
    C/C++ Code Generation Runtime Library Multi-threaded DLL (/MD)
  5. Click on "Apply".
  6. Click on configuration drop-down on the upper left of the properties page and select "Debug". Set (or verify) the following items as follows, noting that the 3rd item is not the same as in the previous list.
  7. Left Pane Right pane parameter Right pane value (drop down)
    Configuration Properties -> General Whole Program Optimization No Whole Program Optimization
    C/C++ -> Optimization Whole Program Optimization No
    C/C++ Code Generation Runtime Library Multi-threaded Debug DLL (/MDd)
  8. Click "Apply" and then "OK".
  9. On the IDE toolbar, select "Release" from the drop down. then right click on the project in the solution explorer and select "Build".
  10. On the IDE toolbar, select "Debug" from the drop down. then right click on the project in the solution explorer and select "Build".
  11. Copy the headers (.h files) from CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\speex-1.0.1\libspeex to CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\xiph\include\speex
  12. Copy CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\speex-1.0.1\win32\libspeex\Release\libspeex.lib to CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\xiph\lib\Release
  13. Copy CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\speex-1.0.1\win32\libspeex\Debug\libspeex.lib to CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\xiph\lib\Debug

OpenSSL

Compile and install OpenSSL (see Build OpenSSL with MS Visual C++), or obtain precompiled binaries (32-bit, not 64-bit).

If compiling it yourself, you can choose either static or dynamic linking. Note: If you link it dynamically, it will cause the Uru client to require the OpenSSL DLLs to be present in the client directory or in the system path.

Copy the installed OpenSSL files to "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\Win32\OpenSSL".

Directory structure in the CWE tree will look like this:

  StaticSDKs
     Win32
       OpenSSL
         bin
         include
           openssl
         lib

JPEG

Build in-tree JPEG library

  1. Open "Visual Studio Command Prompt (2010)" and change to the "CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\jpeg-8c-rgba directory."
  2. Copy makefile.vc to makefile.nmake
  3. Copy jconfig.vc to jconfig.h
  4. Run nmake nodebug=1 -f makefile.nmake. This will build the library in non-debug mode. If you use a debug library, the linker will complain when we link the client executable.

zlib and libpng

Build zlib and libpng

  1. Extract the files in the zlib archive to MOULOpenSourceClientPlugin/StaticSDKs/XPlatform/zlib.
  2. Extract the files in the libpng archive to MOULOpenSourceClientPlugin/StaticSDKs/XPlatform/png.
  3. Edit the png/projects/vstudio/zlib.props file. Towards the bottom is a path for ZLibSrcDir. Change the value to "..\..\..\..\zlib" (no -1.2.5 or such on the end) and save the file.
  4. Open png/projects/vstudio/vstudio.sln in the Visual Studio 2010 IDE.
  5. On the IDE toolbar, click on the configuration drop down at the upper left (it defaults to "Debug") and change it to "Release Library".
  6. The VS2010 zlib project file distributed in the png archive is set to build for embedded environments. We need to reconfigure it.
    1. Right click on the zlib project tree in the solution explorer and select "Add > Existing item"
    2. Browse to the zlib source directory (CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\zlib) and select the gzclose.c, gzlib.c, gzread.c, and gzwrite.c files (hold Ctrl while clicking to select multiple files).
    3. Click "Add".
    4. Right click on the zlib project in the solution explorer and select Properties.
    5. In the panel that opens, set (or verify) the following items as follows:
      Left Pane Right pane parameter Right pane value (drop down)
      Configuration Properties > C/C++ > Preprocessor Preprocessor Definitions Remove Z_SOLO if present, leave everything else alone
    6. Click "Apply" and then "OK".
  7. Repeat the following steps for each of these projects: "libpng", "pngtest", "pngvalid", and "zlib".
    1. Right-click on the project in the Solution Explorer and choose Properties.
    2. In the panel that opens, set (or verify) the following items as follows:
      Left Pane Right pane parameter Right pane value (drop down)
      Configuration Properties > General Project Defaults > Whole Program Optimization No Whole Program Optimization
      Configuration Properties > C/C++ > Optimization Whole Program Optimization No
      Configuration Properties > C/C++ > Code Generation Runtime Library Multi-threaded DLL (/MD)
    3. Click "Apply".
    4. Click on the configuration drop down at the upper left of the panel and select "Debug Library".
    5. Set (or verify) the following items as follows, noting that the 4th item is not the same as in the previous list.
      Left Pane Right pane parameter Right pane value (drop down)
      Configuration Properties > General Project Defaults > Whole Program Optimization No Whole Program Optimization
      Configuration Properties > C/C++ > General Treat Warnings As Errors No (/WX-)
      Configuration Properties > C/C++ > Optimization Whole Program Optimization No
      Configuration Properties > C/C++ > Code Generation Runtime Library Multi-threaded Debug DLL (/MDd)
    6. Click "Apply" and "OK".
    7. (Remember you need to follow these steps four times, once each for libpng, pngtest, pngvalid, AND zlib!)
  8. Select “Debug Library” from the Solution Configurations drop down in the IDE toolbar, then right click the top line in the Solution Explorer (Solution 'vstudio') and choose Build Solution.
  9. Select the “Release Library” configuration, and build the solution.
  10. In the CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\png folder, create a lib folder. Then:
    • Copy png/projects/vstudio/Debug Library/libpng15.lib to CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\png\lib and rename it libpngd.lib
    • Copy png/projects/vstudio/Release Library/libpng15.lib to CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\png\lib and rename it libpng.lib
  11. In the CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\zlib folder, create a lib folder. Then:
    • Copy png/projects/vstudio/Debug Library/zlib.lib to CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\zlib\lib and rename it zlibd.lib
    • Copy png/projects/vstudio/Release Library/zlib.lib to CWE-ou\MOULOpenSourceClientPlugin\StaticSDKs\XPlatform\zlib\lib

Required source code changes for newer version of DirectX SDK

Revisions of the client source code after November 2020 (newer than the branch marked VS2003_FINAL) no longer require any changes to compile under Visual Studio 2010. To compile with the Express version of VS2010, you still need the changes marked below.

Required source changes for Visual Studio 2010 Express

  • We do not have MFC with VS2010 SP1 Express, so we need to replace the first reference to afxres.h. The client portion of CWE does not use MFC (I believe the MAX plugin does), so we can make this replacement.

  • Note: If you are compiling with VS2010 Professional or greater, you do *not* need to make these edits. Only the Express edition excludes MFC.

  • Edit plClient.rc file located in "CWE-ou\MOULOpenSourceClientPlugin\Plasma20\Sources\Plasma\Apps\plClient\res\"
    Before
    // Microsoft Visual C++ generated resource script.
    //
    #include "resource.h"
    
    #define APSTUDIO_READONLY_SYMBOLS
    /////////////////////////////////////////////////////////////////////////////
    //
    // Generated from the TEXTINCLUDE 2 resource.
    //
    #include "afxres.h"
    

    After

    // Microsoft Visual C++ generated resource script.
    //
    #include "resource.h"
    
    #define APSTUDIO_READONLY_SYMBOLS
    /////////////////////////////////////////////////////////////////////////////
    //
    // Generated from the TEXTINCLUDE 2 resource.
    //
    //#include "afxres.h"
    
    #include <windows.h>
    #define IDC_STATIC (-1)
    
  • edit plUruLauncher.rc file located in "CWE-ou\MOULOpenSourceClientPlugin\Plasma20\Apps\plUruLauncher\"
    This is the same change we just made in the previous file.
    Before
    // Microsoft Visual C++ generated resource script.
    //
    #include "resource.h"
    
    #define APSTUDIO_READONLY_SYMBOLS
    /////////////////////////////////////////////////////////////////////////////
    //
    // Generated from the TEXTINCLUDE 2 resource.
    //
    #include "afxres.h"
    

    After

    // Microsoft Visual C++ generated resource script.
    //
    #include "resource.h"
    
    #define APSTUDIO_READONLY_SYMBOLS
    /////////////////////////////////////////////////////////////////////////////
    //
    // Generated from the TEXTINCLUDE 2 resource.
    //
    //#include "afxres.h"
    
    #include <windows.h>
    #define IDC_STATIC (-1)
    

Build the client

Now that the prep is done, you can actually build the client.

  1. Open the "CWE-ou\MOULOpenSourceClientPlugin\Plasma20\MSVC10Projects\Plasma\Apps\AllClient\AllClient.sln" in the VS2010 IDE.
  2. Select the type of build you want from the dropdown on the IDE toolbar.
    • Release
    • Release_Internal
    • Debug
    • Debug_Internal
  3. Right click on the "AllClient" project and select "Build".

  4. Completed builds are copied into the "CWE-ou\MOULOpenSourceClientPlugin\Plasma20\test" directory.
    Note: You *must* make sure your client is using the same versions of the PhysX DLLs that you built with. They are not compatible from version to version.

If, after building the client, you require the server prep tools (plFileSecure, plFileEncrypt, plPythonPak), right click on those specific projects and click "Build".
The compiled files will be copied into the "CWE-ou\MOULOpenSourceClientPlugin\Plasma20\tools" directory.