Difference between revisions of "Running AGI Games"
(31 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | To run an [[AGI|AGI]] game on your system, you will need the [[AGI Game Specific Files|game-specific files]] and an [[Interpreter|interpreter]]. The game-specific files are distributed by the author and are system independent. Games often come bundled with an interpreter. However -- barring some [[Running AGI Games#Exceptions|exceptions]] -- you will be perfectly able to run them with the interpreter of your choice. | |
− | |||
− | To run an [[AGI|AGI]] game on your system, you will need the [[Game | ||
== Choosing the right interpreter == | == Choosing the right interpreter == | ||
Line 81: | Line 79: | ||
| style="background: #ddffdd" | Yes | | style="background: #ddffdd" | Yes | ||
|} | |} | ||
+ | |||
+ | 1. Sarien has been quite inactive in years. Luckily it has been merged with ScummVM as it's AGI engine and now they are improving it, so it's a lot recommended to use ScummVM instead in the near future when the AGI engine appears on a stable build (or unstable if you want to try and not worry of finding some bugs and want to help on the betatesting). | ||
== Quick guides == | == Quick guides == | ||
Line 103: | Line 103: | ||
OBJECT. | OBJECT. | ||
− | (See [[Game | + | (See [[AGI Game Specific Files|Game Specific Files]] for more info.) |
| style="text-align: left" | | | style="text-align: left" | | ||
{| width="100%" | {| width="100%" | ||
Line 119: | Line 119: | ||
SIERRA.COM | SIERRA.COM | ||
VG_GRAF.OVL | VG_GRAF.OVL | ||
− | |||
− | |||
− | |||
|} | |} | ||
− | |||
− | |||
|} | |} | ||
Line 132: | Line 127: | ||
{| width="100%" cellspacing="20" cellpadding="10" | {| width="100%" cellspacing="20" cellpadding="10" | ||
− | | style="text-align: left; background: #f0f0ff; border: 1px solid #c6c9ff" width=" | + | | style="text-align: left; background: #f0f0ff; border: 1px solid #c6c9ff" width="50%" | |
===== Windows ===== | ===== Windows ===== | ||
# Create a folder under your NAGI directory for the game to go in<br />''Example:'' | # Create a folder under your NAGI directory for the game to go in<br />''Example:'' | ||
− | + | <code>C:\NAGI\Yourgame</code> | |
# Copy the [[Game specific files|Game Specific Files]] into that folder you created. | # Copy the [[Game specific files|Game Specific Files]] into that folder you created. | ||
# Run the game by executing <tt>N.EXE</tt> | # Run the game by executing <tt>N.EXE</tt> | ||
− | | style="border: 1px solid #ffc9c9; background-color: #fff3f3" width=" | + | | style="border: 1px solid #ffc9c9; background-color: #fff3f3" width="50%" | <font color="#000"> |
===== Linux ===== | ===== Linux ===== | ||
Line 149: | Line 144: | ||
Extact the tar.gz file to your hard drive. Now open up a terminal and browse to the src directory of the files you extracted. Now type: | Extact the tar.gz file to your hard drive. Now open up a terminal and browse to the src directory of the files you extracted. Now type: | ||
− | + | <code>make -f Makefile.linux</code> | |
If all went well if you go to the bin directory you should see a file called "nagi". | If all went well if you go to the bin directory you should see a file called "nagi". | ||
Line 161: | Line 156: | ||
==== Running an AGI game with Sarien ==== | ==== Running an AGI game with Sarien ==== | ||
+ | |||
+ | {| width="100%" cellspacing="20" cellpadding="10" | ||
+ | | style="text-align: left; background: #f0f0ff; border: 1px solid #c6c9ff" width="50%" | | ||
+ | =====Windows===== | ||
+ | |||
+ | INSERT TEXT HERE | ||
+ | | style="border: 1px solid #ffc9c9; background-color: #ececec" width="50%" | <font color="#000"> | ||
+ | =====Dos===== | ||
+ | |||
+ | INSERT TEXT HERE | ||
+ | |} | ||
+ | |||
+ | {| width="100%" cellspacing="20" cellpadding="10" | ||
+ | | style="text-align: left; background: #fff3f3; border: 1px solid #c6c9ff" width="40%" | | ||
+ | =====Linux===== | ||
+ | |||
+ | Before we start make sure you have the x11 libraries installed. | ||
+ | |||
+ | As of this writing you have 2 options when compiling sarien. The latest cvs snapshots, and 0.7.0 source code. I myself prefer the cvs snapshots because it has tons of bug fixes and new features that arn't in 0.7.0. Either way you need to download the appropriate source code that you want to compile. | ||
+ | |||
+ | Extract the tar.gz file that contains sarien's source code to your hard drive. Then open up a terminal and browse the the directory you extracted sarien into. | ||
+ | |||
+ | Now type this into the terminal: | ||
+ | |||
+ | ./configure | ||
+ | |||
+ | This should setup the configuration so that it works best with your system and setup. If by any chance the later steps fail, you can send the sarien team the Rules file that is created so they can figure out why it doesn't work on your system. | ||
+ | |||
+ | Next type in: | ||
+ | |||
+ | make | ||
+ | |||
+ | Now you should head into the etc directory of the sarien extraction and rename sarien.cfg to sarien.conf. Then copy the file to the /etc/ directory of your linux system. | ||
+ | |||
+ | Next go into the bin directory of your sarien extraction and copy the "sarien" file into the directory your AGI game is in and run it to play the game. | ||
+ | |} | ||
+ | |||
+ | ==== Running an AGI game with AGIL ==== | ||
+ | |||
+ | {| width="100%" cellspacing="20" cellpadding="10" | ||
+ | | style="text-align: left; background: #f0f0ff; border: 1px solid #c6c9ff" width="50%" | | ||
+ | =====Windows===== | ||
+ | |||
+ | Get AGIL from the AGI Development Site. Unzip all files to the game folder (i.e. the folder containing the game-specific files). Double-click agil.exe to run the game. Pressing F11 toggles between full-screen mode and windowed mode. | ||
+ | | style="border: 1px solid #ffc9c9; background-color: #ececec" width="50%" | <font color="#000"> | ||
+ | |||
+ | =====Dos===== | ||
+ | |||
+ | INSERT TEXT HERE | ||
+ | |} | ||
+ | |||
+ | {| width="100%" cellspacing="20" cellpadding="10" | ||
+ | | style="text-align: left; background: #fff3f3; border: 1px solid #c6c9ff" width="40%" | | ||
+ | =====Linux===== | ||
+ | |||
+ | First thing you need to do is get a copy of the AGIL archive. You can get one at the [http://www.agidev.com/download/#cat4 AGI Development Site]. | ||
+ | |||
+ | Now extract the archive from the tar.gz file to your hard drive. Then create a bin directory in the directory that you extracted it to. For some reason the archive doesn't include or extract the bin directory so you have to create it yourself. | ||
+ | |||
+ | Next thing you have to do is compile AGIL. To do so on you are going to need gcc installed on the system. | ||
+ | |||
+ | Compiling it depends on what graphic driver you want to use. x11 or svga. In most cases your going to want x11 since svga doesn't work on most systems. Please make sure you have the libx11 and libx11-dev packages installed, otherwise the compile will not work. | ||
+ | |||
+ | Now open up a terminal and make your way to the directory you extracted the AGIL archive to. Then type this: | ||
+ | |||
+ | <code>make x11</code> | ||
+ | |||
+ | If all went well you should now have a file in the bin directory called "agil". Now copy that file into the same directory of an AGI game and then run it to play the game. If you run it and nothing happens when it starts up and it either freezes or doesn't open a window. Chances are your sound drivers are block agil from running. To get around this type this into a terminal: | ||
+ | |||
+ | <code>killall esd</code> | ||
+ | |||
+ | Now that you have done that try running AGIL and this time it should work. But please note that we had to kill the sound server. So other sounds most likely won't work now until you restart your system. I don't know if these next 3 steps work outside of Ubuntu or not, but you can do this to restart the sound server without restarting. | ||
+ | |||
+ | First type: | ||
+ | |||
+ | <code>sudo /etc/init.d/alsa stop</code> | ||
+ | |||
+ | Now type: | ||
+ | |||
+ | <code>esd &</code> | ||
+ | |||
+ | And last type: | ||
+ | |||
+ | <code>/etc/init.d/alsa start</code> | ||
+ | |||
+ | That will restart the sound server. But as I mentioned before I don't know if those 3 commands works in linux distro's other than Ubuntu or not. | ||
+ | |} | ||
==== Running an AGI game with PocketSarien ==== | ==== Running an AGI game with PocketSarien ==== | ||
Line 175: | Line 257: | ||
==== Setting up CastCE ==== | ==== Setting up CastCE ==== | ||
+ | |||
+ | ==== Running an AGI game with ScummVM ==== | ||
== Exceptions == | == Exceptions == | ||
Line 193: | Line 277: | ||
* [[AGI|AGI]] | * [[AGI|AGI]] | ||
− | * [[Hacked | + | * [[Hacked AGI Interpreters]] |
+ | * [[AGILE]] | ||
* [[NAGI|NAGI]] | * [[NAGI|NAGI]] | ||
* [[Sarien|Sarien]] | * [[Sarien|Sarien]] | ||
Line 204: | Line 289: | ||
[[Category:Tutorials]] | [[Category:Tutorials]] | ||
+ | [[Category:How To]] |
Latest revision as of 20:50, 1 June 2024
To run an AGI game on your system, you will need the game-specific files and an interpreter. The game-specific files are distributed by the author and are system independent. Games often come bundled with an interpreter. However -- barring some exceptions -- you will be perfectly able to run them with the interpreter of your choice.
Choosing the right interpreter
The most popular choice for playing AGI games is using the NAGI interpreter. Here is a table showing available interpreters and their compatible system.
DOS | Windows | Mac OS | Linux | BSD | Pocket PC | |||
---|---|---|---|---|---|---|---|---|
Sierra's original interpreter | Yes | Yes | No | No | No | No | No | No |
Sarien | Yes | Yes | Yes | Yes | Yes | Yes | No | No |
AGIL | Yes | Yes | No | Yes | No | No | No | No |
NAGI | No | Yes | No | Yes | No | No | No | No |
ScummVM | No | Yes | Yes | Yes | Yes | Yes | No | Yes |
Other/Emulator | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
1. Sarien has been quite inactive in years. Luckily it has been merged with ScummVM as it's AGI engine and now they are improving it, so it's a lot recommended to use ScummVM instead in the near future when the AGI engine appears on a stable build (or unstable if you want to try and not worry of finding some bugs and want to help on the betatesting).
Quick guides
Interpreters
Running an AGI game with Sierra's original interpreter
To use Sierra's original DOS interpreter, you will need the following files:
Game Specific Files | Interpreter Files | ||
---|---|---|---|
VOL.??? LOGDIR. PICDIR. VIEWDIR. SNDDIR. WORDS.TOK OBJECT. (See Game Specific Files for more info.) |
|
To play your game, copy the Game Specific Files into an empty directory, then simply copy the Interpreter files into the same directory. Then execute the SIERRA.COM file from either typing it at the DOS prompt or Double-Clicking it in Windows.
Running an AGI game with NAGI
Windows
|
LinuxBefore we start, please install the development sdl libraries. Now to get NAGI working in linux you are going to need the source code of NAGI which you can get from the AGI Development Site. Extact the tar.gz file to your hard drive. Now open up a terminal and browse to the src directory of the files you extracted. Now type:
If all went well if you go to the bin directory you should see a file called "nagi". Copy all the files from the nagi directory into your games directory and run it. Note: I havn't gotten sound in nagi to work properly yet in linux... I will have to play around with it later to see if I can get it to work.
|
Running an AGI game with Sarien
WindowsINSERT TEXT HERE |
DosINSERT TEXT HERE |
LinuxBefore we start make sure you have the x11 libraries installed. As of this writing you have 2 options when compiling sarien. The latest cvs snapshots, and 0.7.0 source code. I myself prefer the cvs snapshots because it has tons of bug fixes and new features that arn't in 0.7.0. Either way you need to download the appropriate source code that you want to compile. Extract the tar.gz file that contains sarien's source code to your hard drive. Then open up a terminal and browse the the directory you extracted sarien into. Now type this into the terminal: ./configure This should setup the configuration so that it works best with your system and setup. If by any chance the later steps fail, you can send the sarien team the Rules file that is created so they can figure out why it doesn't work on your system. Next type in: make Now you should head into the etc directory of the sarien extraction and rename sarien.cfg to sarien.conf. Then copy the file to the /etc/ directory of your linux system. Next go into the bin directory of your sarien extraction and copy the "sarien" file into the directory your AGI game is in and run it to play the game. |
Running an AGI game with AGIL
WindowsGet AGIL from the AGI Development Site. Unzip all files to the game folder (i.e. the folder containing the game-specific files). Double-click agil.exe to run the game. Pressing F11 toggles between full-screen mode and windowed mode. |
DosINSERT TEXT HERE |
LinuxFirst thing you need to do is get a copy of the AGIL archive. You can get one at the AGI Development Site. Now extract the archive from the tar.gz file to your hard drive. Then create a bin directory in the directory that you extracted it to. For some reason the archive doesn't include or extract the bin directory so you have to create it yourself. Next thing you have to do is compile AGIL. To do so on you are going to need gcc installed on the system. Compiling it depends on what graphic driver you want to use. x11 or svga. In most cases your going to want x11 since svga doesn't work on most systems. Please make sure you have the libx11 and libx11-dev packages installed, otherwise the compile will not work. Now open up a terminal and make your way to the directory you extracted the AGIL archive to. Then type this:
If all went well you should now have a file in the bin directory called "agil". Now copy that file into the same directory of an AGI game and then run it to play the game. If you run it and nothing happens when it starts up and it either freezes or doesn't open a window. Chances are your sound drivers are block agil from running. To get around this type this into a terminal:
Now that you have done that try running AGIL and this time it should work. But please note that we had to kill the sound server. So other sounds most likely won't work now until you restart your system. I don't know if these next 3 steps work outside of Ubuntu or not, but you can do this to restart the sound server without restarting. First type:
Now type:
And last type:
That will restart the sound server. But as I mentioned before I don't know if those 3 commands works in linux distro's other than Ubuntu or not. |
Running an AGI game with PocketSarien
Running an AGI game with GBAGI
Running an AGI game on a Series 60 mobile phone
Emulators
Setting up DOSBox
Setting up PocketDOS
Setting up CastCE
Running an AGI game with ScummVM
Exceptions
Some games require a certain interpreter to run properly or at all.