OpenGTA/readme.txt

169 lines
4.7 KiB
Plaintext
Raw Permalink Normal View History

2015-12-03 00:37:02 +00:00
~-~-~ OGTA is OpenGTA ~-~-~
= Required software =
* OpenGL
[ http://www.opengl.org/ ]
* SDL ( & SDL_image )
[ http://www.libsdl.org/ ]
* PhysicsFS
[ http://www.icculus.org/physfs/ ]
* Loki
[ http://sourceforge.net/projects/loki-lib/ ]
* g++ ( GNU C++ )
[ http://gcc.gnu.org/ ]
* GNU Make
[ http://www.gnu.org/software/make/ ]
2015-12-03 00:38:22 +00:00
= Optional software =
* Lua
[ http://www.lua.org/ ]
* SDL_mixer
[ http://www.libsdl.org/projects/SDL_mixer/ ]
* SDL_sound
[ http://icculus.org/SDL_sound/ ]
2015-12-03 00:37:02 +00:00
= Compiling =
Only tested on GNU Linux using gcc & make; I assume that GL, SDL and
PhysicsFS are installed, Loki is downloaded and compiled automatically.
Just run 'make' or specifically 'make viewer'.
The other programs are/were used for development or debugging.
2015-12-03 00:37:37 +00:00
The distributed win32 binaries are created with a cross-compiler.
The file doc/compiling.txt in the source code release contains
2015-12-03 00:38:22 +00:00
more information about the build process.
2015-12-03 00:37:37 +00:00
2015-12-03 00:37:02 +00:00
= Installing the data-files =
You can download the game from http://www.rockstargames.com/classics/ .
These programs expect to find the data in the current directory, either
directly in the file-system or in a ZIP file (named 'gtadata.zip').
You want the content of the original game directory GTADATA, but not
the directory itself.
2015-12-03 00:38:22 +00:00
See doc/using_mods.txt for a slightly longer description.
2015-12-03 00:37:02 +00:00
Needed:
*.FXT, *.FON, *.CMP
STYLE*.GRY (for 8-bit graphics)
STYLE*.G24 (for 24-bit graphics)
2015-12-03 00:37:37 +00:00
Will be needed (in the future):
MISSION.INI
*.RAT ( 8 bit menu graphics)
*.RAW (24 bit menu graphics)
AUDIO/*.RAW AUDIO/*.SDT (sound effects)
AUDIO/*.WAV (cutscene text; in legacy format)
2015-12-03 00:38:22 +00:00
You may also want to keep the music (even though it isn't used yet).
It is safe to assume that Ogg Vorbis [ http://vorbis.com/ ] will
be supported, so you can encode the music files.
2015-12-03 00:37:02 +00:00
= Running =
2015-12-03 00:38:22 +00:00
Note: Binary releases only contain the 'viewer' application; the other
programs should only be intersting for developers (read: compile
them yourself).
2015-12-03 00:37:02 +00:00
== gfxextract ==
Export/Display textures and sprites;
run ./gfxextract -h (or without any parameters) for usage info.
2015-12-03 00:38:22 +00:00
== spriteplayer ==
Sprite graphics browser; shows internal indices, can display
animations (ped walking, car delta anims).
run ./spriteplayer -h for usage information.
2015-12-03 00:37:02 +00:00
== viewer ==
Brain-dead immediate-mode renderer of the city (now with objects); with
plenty of bugs...
start as:
./viewer [flags] [0-2]
The optional param loads the respective city; default is 0:
0 - NYC.CMP
1 - SANB.CMP
2 - MIAMI.CMP
2015-12-03 00:38:22 +00:00
There are several flags; see the compiled-in usage information.
2015-12-03 00:37:37 +00:00
-V show version and compile time switches
-h show usage
2015-12-03 00:37:02 +00:00
Using "-l 1" will make it easier to see actual error messages;
sometimes there is a lot of noise on 'info' level (0).
keys:
ESC, cursor-keys, + and - do what you might except them to do;
furthermore:
x : pseudo-3d view
z : top-down view
. : decrease visible range
, : increase visible range
t : display entire city (at a crawl)
2015-12-03 00:38:22 +00:00
f : toggle fullscreen/windowed [only works on Linux]
2015-12-03 00:37:02 +00:00
PRINT : save 'screenshot.bmp' in current directory
p : dump coords (in lua syntax) to stdout
F2 : toggle drawing of sprite bounding-boxes
F3 : toggle marking of sprite tex-border-boxes
F4 : toggle free-move vs. follow-player
2015-12-03 00:37:37 +00:00
F5 : toggle drawing of road heading arrows (& normals)
2015-12-03 00:37:02 +00:00
F6 : city map mode (ESC to exit, +, -, cursor keys)
2015-12-03 00:37:37 +00:00
F9 : toggle city blocks drawn textured
F10 : toggle blocks wireframe lines
2015-12-03 00:38:22 +00:00
F12 : show/hide screen-gamma scrollbar
2015-12-03 00:37:02 +00:00
in 3d view:
w : forward
s : backward
space : stop
r : toggle rotate cam (when not moving)
g : toggle ~gravity~ affect on 3d-cam
You can move the view with the mouse; when you switch
to 3d and the screen is black: move the mouse down.
2015-12-03 00:37:37 +00:00
in follow-player mode:
i,j,k,l : move player-char
l-shift : toggle walking/running
2015-12-03 00:38:22 +00:00
l-ctrl : shoot
2015-12-03 00:37:37 +00:00
0 : unselect weapon / unarmed
1,2,3,4 : select weapon (only switches graphic)
F7 : draw explosion at player pos (graphical effect)
F8 : create random-walker ped at player-pos
2015-12-03 00:38:22 +00:00
You can still use + and - to zoom; but the view will try
to return to the old position quickly.
2015-12-03 00:37:02 +00:00
== luaviewer: viewer + Lua (optional target) ==
Also needs Lua (only 5.1 tried) in path; run: 'make luaviewer'
then start it like with:
./luaviewer -s scripts/demo1.lua [0-2]
See the scripts for a little documentation.
= License & Credits =
This is _not_ free software, as it must not be used for commercial
applications. [ http://www.opensource.org/docs/definition.php ]
Please read license.txt for the details.
Author: tok@openlinux.org.uk
Special thanks to:
Jernej 'Delfi' L. (jernejcoder@gmail.com) for providing the vertex-data
and invaluable help concerning several of the file formats.