-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
94 lines (60 loc) · 2.23 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
########
# 1oom #
########
1oom is a clone of the classic DOS game "Master of Orion" (MicroProse, 1993).
1oom is Free Software (GPLv2), see COPYING.
This project is in a very early state and is missing the following:
- testing
- polish
1. Installation
================
1oom requires a copy of the Master of Orion (v1.3) LBX files.
See doc/usage_common.txt for more info.
1.1. Windows
-------------
Simply copy the EXE and DLLs (if any) to your MOO1 directory.
1.2 Linux
----------
1oom requires the following libraries:
- SDL (libsdl1.2):
http://www.libsdl.org
- SDL_mixer (libsdl-mixer1.2):
http://www.libsdl.org/projects/SDL_mixer/
Also recommended:
- libsamplerate:
http://www.mega-nerd.com/libsamplerate/
Check your distribution's package manager or the library
website on how to install them.
2. Configuration
=================
See doc/usage_common.txt.
3. Development
===============
See INSTALL and HACKING for more information.
4. Executables
===============
1oom consists of a few executables:
- 1oom_classic_sdl1 (the 1993 UI)
- 1oom_cmdline (proof of concept textual UI)
- 1oom_lbxview_sdl1 (for viewing LBX files)
- 1oom_pbxmake (for creating PBX files)
- 1oom_gfxconv (for converting GFX for use in PBX files)
- 1oom_saveconv (for converting save game files)
See doc/usage_* for more documentation.
5. Acknowledgements
====================
Original game by Simtex Software, published 1993 by MicroProse.
Thanks for the great game and fuckings for not releasing the source code.
Thanks to Something Awful forum user Thotimx for the MOO1 LP which was a
major inspiration in starting this project. Unfortunately the goon writes
parenthesis without the leading space(such as here) like a retard, making the
Le'ts Play [sic] a painful read.
Thanks to
http://www.shikadi.net/wiki/modding/index.php?title=XMI_Format&oldid=6874
for the music format info.
Thanks to CivFanatics forum user sargon0 for partial save game format info in
http://forums.civfanatics.com/threads/moo-save-file-layout.275055/
This README is based on the OpenXcom one, except s/folder/directory/g like a
civilized person.
Some code has been pilfered from Chocolate Doom and VICE.
HACKING, PHILOSOPHY and CODE_OF_CONDUCT are based on Chocolate Doom.