Changes

Z-Machine

4,742 bytes added, 19 January
/* Technical information */
The Z-Machine is a text based interpreter which runs text adventures made by Infocom and Z-code files.
CPCZVM It is a Z-Machine interpreter available for the CPC which runs under CPM. It is a modification of ZXZVM, an interpreter made by [[John Elliott] for the PCW. The Amstrad version was converted by [[Kevin Thacker]]different OS.
* A version for CPM* A version for AMSDOS* A version for SymbOS CPCZVM is a Z-Machine interpreter for the CPC. It is a modification of ZXZVM, an interpreter made by [[John Elliott]] for the PCW. The Amstrad version was converted by [[Kevin Thacker]]. There are two versions, for CPM and AMSDOS. Zym is a Z-Machine interpreter for SymbOS, made by [[prevtenet]].  =CPM version= CPCZVM for CPM features a virtual memory system supporting both the Z-machines RAM and ROM. It runs under CPM2.2 and CPM+. CPCZVM has been written to be as compatible with CPM as possible and should run on other CPMs for the Amstrad. CPCZVM will not run under Amstrad's CPM2.2 distribution because it doesn't have enough TPA. However you can use [[DkTronics_CPM]] which has a larger TPA. ==Running an adventure== * Copy CPCZVM.COM, ZXZVM.BIN and the game file (e.g. ADVENT.Z3) to media which has at least 64KB free. All of these should be in the same location. * Boot into CP/M.* Select the disc (e.g. B:)* Type: CPCZVM ADVENT.Z3 to start. Not supported:* Timed input* Italics, Bold and other font styles.* Colours* Sound NOTE:* CPM2.2 version is better than the CPM+ version because it can use windows like the AMSDOS version to allow individual sections of the display to be split or scrolling. Amstrad's implementation of CPM is assumed and that printing goes to the firmware functions and the firmware control codes can be executed. * CPM+ version uses the VT52 terminal emulation but because that doesn't support windows it is less powerful.* Using a RAMdisk under CPM+ doesn't make much of a difference to the speed of loading.
==Technical Information==
* CP/M is used because it has a random access filesystem compared to AMSDOS which doesn't. The random access is required to read blocks from the swap and game file when needed.
* Some versions of Disc accesses use normal CP/M functions so it should work with other devices such as RAM discs, Harddisks etc. =AMSDOS version= CPCZVM for AMSDOS requires additional Dk'tronics compatible memory (e.g. [[X-MEM]] ). The entire game file is loaded into available RAM so it is recommended to use a 512KB RAM expansion. Loading uses CAS IN CHAR so is very slow. NOTES:* This version supports the zv1.0 specification * It has been tested against oztest, czech, etude and strict tests. ==What is supported==* Transcript (goes to printer)* Timed input* Font styles (bold, italics etc)* Z-machine require Machine window opcodes ==What isn't supported==* UNDO* V6 or V7 games* Colours (this requires that all the screen colours can be split into more than 1 windowdisplayed at once) ==Running an adventure==* Copy CPCZVM. The VT52 terminal emulation BAS and the game file (e.g. ADVENT.Z3) to media. Both of these should be in CPM3the same location.* Make a simple BASIC loader with this form: 5 BORDER 0 on :INK 0,0:INK 1,13 10 a$="advent.z3" 20 chain"cpczvm" and save it:  save"advent * Now you can run your adventure:  run"advent NOTES:* In the CPC example above 'advent.z3' is unsuitable the name of the game file. It should not have a header. * 'a$' variable must be used. You can't use another name because CPCZVM.BAS requires it only supports to have this name.* In the example above 'advent' is the name of your basic loader. You can name it as you wish.* It is advised to use a single window compared large ram expansion (>64KB) because many game files are large and you need plenty of extra ram to load large game files.* If the VT52 terminal emulation adventure will not fit on the ZX Spectrum Plus 3 a normal CPC Data format disk, use [[ParaDOS]] and copy the PCWfiles to a ROMDOS D1 format disc. Therefore  ==Technical information== * The CPCZVM.BAS contains a fixed basic stub followed by the machine code. The BASIC stub must not be modified or it will break CPCZVM.BAS. Using a BASIC stub means I don't need to re-enable any ROMs (like I would if RUN was decided used) and the current drive and filesystem remains active allowing hard disks and other DOS to use be used. In addition I can pass HIMEM to know if there is enough RAM free (expansion ROMs can modify HIMEM to allocate work space) and a string variable containing the game filename.* The program uses the firmware except TXT WRITE CHAR is patched so that bold, italics and inverse is supported. The font is manipulated as it is drawn.* Transcript goes to the printer.* The program detects the amount of additional RAM and will warn if there is not enough when loading the game file. * The program only supports Dk'Tronics compatible RAM.* The entire game file is loaded into extra ram using "CAS IN CHAR" functions . This is used because the extra memory is paged in 16KB at a time and [[BIOS_Function_Summary#Cassette_.28or_Diskette.29_Functions|CAS IN DIRECT]] reads in an entire block and the game files exceed the size of 16KB and do not require an AMSDOS header to provide thisbe added.* The BASIC boot program allows a game filename to be passed to CPCZVM.BAS without requiring it to be modified. The use of CHAIN keeps the defined variables and HIMEM.* This version should run from [[X-MASS]] or other hardware. =SymbOS Version= Zym is a Z-Machine interpreter for SymbOS written in C. It supports Z-machine versions 3, 4, 5, and 8, so it can run most of the games published by Infocom, as well as thousands of other Z-code games created by the interactive fiction community. Zym supports different terminal window sizes and also runs on ALL SymbOS platforms, not only CPC. Zym requires SymbOS 3.1 or higher and at least 256 KB of RAM to load most games. https://i.imgur.com/W8AmmFE.png =Downloads=
* Disc accesses use normal CP[https:/M functions so it will work with other devices such as RAM discs, Harddisks etc/www.seasip.info/ZX/zxzvm.html ZXZVM homepage]* [https://www.seasip.info/index.html John Elliott's website]* [[File:Zvm.zip]] Source code (CPM+AMSDOS+Disks)* [http://www.symbos.de/appinfo.htm?00054 SymbOS homepage]
907
edits