README.txt 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. Return to Castle Wolfenstein multiplayer GPL source release
  2. ===========================================================
  3. This file contains the following sections:
  4. GENERAL NOTES
  5. LICENSE
  6. GENERAL NOTES
  7. =============
  8. Game data and patching:
  9. -----------------------
  10. This source release does not contain any game data, the game data is still
  11. covered by the original EULA and must be obeyed as usual.
  12. You must patch the game to the latest version.
  13. Note that RTCW is available from the Steam store at
  14. http://store.steampowered.com/app/9010/
  15. Linux note: due to the game CD containing only a Windows version of the game,
  16. you must install and update the game using WINE to get the game data.
  17. Compiling on win32:
  18. -------------------
  19. A Visual C++ 2008 project is provided in src\wolf.sln.
  20. The solution file is compatible with the Express release of Visual C++.
  21. In order to test your binaries, backup and remove Main\mp_bin.pk3,
  22. then replace WolfMP.exe, Main\qagame_mp_x86.dll, Main\cgame_mp_x86.dll, Main\ui_mp_x86.dll.
  23. When starting the server make sure to specify Pure Server: No (sv_pure 0).
  24. Compiling on GNU/Linux x86:
  25. ---------------------------
  26. Go to the src/unix directory, and run the cons script
  27. (cons was an old precursor to scons which we had been using in earlier projects)
  28. Run ./cons -h to review build options. Use ./cons -- release to compile in release mode.
  29. If any problems occur, consult the internet.
  30. Other platforms, updated source code, security issues:
  31. ------------------------------------------------------
  32. If you have obtained this source code several weeks after the time of release
  33. (August 2010), it is likely that you can find modified and improved
  34. versions of the engine in various open source projects across the internet.
  35. Depending what is your interest with the source code, those may be a better
  36. starting point.
  37. LICENSE
  38. =======
  39. See COPYING.txt for the GNU GENERAL PUBLIC LICENSE
  40. ADDITIONAL TERMS: The Return to Castle Wolfenstein multiplayer GPL Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU GPL which accompanied the RTCW SP Source Code. If not, please request a copy in writing from id Software at id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
  41. EXCLUDED CODE: The code described below and contained in the Return to Castle Wolfenstein multiplayer GPL Source Code release is not part of the Program covered by the GPL and is expressly excluded from its terms. You are solely responsible for obtaining from the copyright holder a license for such code and complying with the applicable license terms.
  42. IO on .zip files using portions of zlib
  43. ---------------------------------------------------------------------------
  44. lines file(s)
  45. 4301 src/qcommon/unzip.c
  46. Copyright (C) 1998 Gilles Vollant
  47. zlib is Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
  48. This software is provided 'as-is', without any express or implied
  49. warranty. In no event will the authors be held liable for any damages
  50. arising from the use of this software.
  51. Permission is granted to anyone to use this software for any purpose,
  52. including commercial applications, and to alter it and redistribute it
  53. freely, subject to the following restrictions:
  54. 1. The origin of this software must not be misrepresented; you must not
  55. claim that you wrote the original software. If you use this software
  56. in a product, an acknowledgment in the product documentation would be
  57. appreciated but is not required.
  58. 2. Altered source versions must be plainly marked as such, and must not be
  59. misrepresented as being the original software.
  60. 3. This notice may not be removed or altered from any source distribution.
  61. MD4 Message-Digest Algorithm
  62. -----------------------------------------------------------------------------
  63. lines file(s)
  64. 289 src/qcommon/md4.c
  65. Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved.
  66. License to copy and use this software is granted provided that it is identified
  67. as the <93>RSA Data Security, Inc. MD4 Message-Digest Algorithm<94> in all mater
  68. ial mentioning or referencing this software or this function.
  69. License is also granted to make and use derivative works provided that such work
  70. s are identified as <93>derived from the RSA Data Security, Inc. MD4 Message-Dig
  71. est Algorithm<94> in all material mentioning or referencing the derived work.
  72. RSA Data Security, Inc. makes no representations concerning either the merchanta
  73. bility of this software or the suitability of this software for any particular p
  74. urpose. It is provided <93>as is<94> without express or implied warranty of any
  75. kind.
  76. JPEG library
  77. -----------------------------------------------------------------------------
  78. src/jpeg-6
  79. Copyright (C) 1991-1995, Thomas G. Lane
  80. Permission is hereby granted to use, copy, modify, and distribute this
  81. software (or portions thereof) for any purpose, without fee, subject to these
  82. conditions:
  83. (1) If any part of the source code for this software is distributed, then this
  84. README file must be included, with this copyright and no-warranty notice
  85. unaltered; and any additions, deletions, or changes to the original files
  86. must be clearly indicated in accompanying documentation.
  87. (2) If only executable code is distributed, then the accompanying
  88. documentation must state that "this software is based in part on the work of
  89. the Independent JPEG Group".
  90. (3) Permission for use of this software is granted only if the user accepts
  91. full responsibility for any undesirable consequences; the authors accept
  92. NO LIABILITY for damages of any kind.
  93. These conditions apply to any software derived from or based on the IJG code,
  94. not just to the unmodified library. If you use our work, you ought to
  95. acknowledge us.
  96. NOTE: unfortunately the README that came with our copy of the library has
  97. been lost, so the one from release 6b is included instead. There are a few
  98. 'glue type' modifications to the library to make it easier to use from
  99. the engine, but otherwise the dependency can be easily cleaned up to a
  100. better release of the library.