README.txt 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. Return to Castle Wolfenstein single player 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. You will need to execute src\extractfuncs\extractfuncs.bat to generate src\game\g_save.c
  22. You can test your binaries by replacing WolfSP.exe, qagamex86.dll, cgamex86.dll, uix86.dll at the top of the RTCW install
  23. Compiling on GNU/Linux x86:
  24. ---------------------------
  25. Go to the src/unix directory, and run the cons script
  26. (cons is a perl based precursor to scons, this is what we were using at the time)
  27. Run ./cons -h to review build options. Use ./cons -- release to compile in release mode.
  28. If problems occur, consult the internet.
  29. Other platforms, updated source code, security issues:
  30. ------------------------------------------------------
  31. If you have obtained this source code several weeks after the time of release
  32. (August 2010), it is likely that you can find modified and improved
  33. versions of the engine in various open source projects across the internet.
  34. Depending what is your interest with the source code, those may be a better
  35. starting point.
  36. LICENSE
  37. =======
  38. See COPYING.txt for the GNU GENERAL PUBLIC LICENSE
  39. ADDITIONAL TERMS: The Return to Castle Wolfenstein single player 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.
  40. EXCLUDED CODE: The code described below and contained in the Return to Castle Wolfenstein single player 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.
  41. IO on .zip files using portions of zlib
  42. ---------------------------------------------------------------------------
  43. lines file(s)
  44. 4301 src/qcommon/unzip.c
  45. Copyright (C) 1998 Gilles Vollant
  46. zlib is Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
  47. This software is provided 'as-is', without any express or implied
  48. warranty. In no event will the authors be held liable for any damages
  49. arising from the use of this software.
  50. Permission is granted to anyone to use this software for any purpose,
  51. including commercial applications, and to alter it and redistribute it
  52. freely, subject to the following restrictions:
  53. 1. The origin of this software must not be misrepresented; you must not
  54. claim that you wrote the original software. If you use this software
  55. in a product, an acknowledgment in the product documentation would be
  56. appreciated but is not required.
  57. 2. Altered source versions must be plainly marked as such, and must not be
  58. misrepresented as being the original software.
  59. 3. This notice may not be removed or altered from any source distribution.
  60. MD4 Message-Digest Algorithm
  61. -----------------------------------------------------------------------------
  62. lines file(s)
  63. 289 src/qcommon/md4.c
  64. Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved.
  65. License to copy and use this software is granted provided that it is identified
  66. as the <93>RSA Data Security, Inc. MD4 Message-Digest Algorithm<94> in all mater
  67. ial mentioning or referencing this software or this function.
  68. License is also granted to make and use derivative works provided that such work
  69. s are identified as <93>derived from the RSA Data Security, Inc. MD4 Message-Dig
  70. est Algorithm<94> in all material mentioning or referencing the derived work.
  71. RSA Data Security, Inc. makes no representations concerning either the merchanta
  72. bility of this software or the suitability of this software for any particular p
  73. urpose. It is provided <93>as is<94> without express or implied warranty of any
  74. kind.
  75. JPEG library
  76. -----------------------------------------------------------------------------
  77. src/jpeg-6
  78. Copyright (C) 1991-1995, Thomas G. Lane
  79. Permission is hereby granted to use, copy, modify, and distribute this
  80. software (or portions thereof) for any purpose, without fee, subject to these
  81. conditions:
  82. (1) If any part of the source code for this software is distributed, then this
  83. README file must be included, with this copyright and no-warranty notice
  84. unaltered; and any additions, deletions, or changes to the original files
  85. must be clearly indicated in accompanying documentation.
  86. (2) If only executable code is distributed, then the accompanying
  87. documentation must state that "this software is based in part on the work of
  88. the Independent JPEG Group".
  89. (3) Permission for use of this software is granted only if the user accepts
  90. full responsibility for any undesirable consequences; the authors accept
  91. NO LIABILITY for damages of any kind.
  92. These conditions apply to any software derived from or based on the IJG code,
  93. not just to the unmodified library. If you use our work, you ought to
  94. acknowledge us.
  95. NOTE: unfortunately the README that came with our copy of the library has
  96. been lost, so the one from release 6b is included instead. There are a few
  97. 'glue type' modifications to the library to make it easier to use from
  98. the engine, but otherwise the dependency can be easily cleaned up to a
  99. better release of the library.