port.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. MegaZeux 2.80 public BETA
  2. -- Introduction --
  3. MegaZeux 2.80 is a hybrid port/rewrite of MegaZeux 2.70 for DOS (actually,
  4. development for 2.80 began a bit prior to 2.70's release, but it's 100%
  5. feature compatible). It is not a complete rewrite, in that the existing
  6. MZX source was used as a base for its development. Nonetheless, quite a lot
  7. of the code has been rewritten, and what hasn't been has been reformatted
  8. and carefully examined. As much as 75% or more of the current source is new
  9. code or code that has been heavily modified from the original. For this
  10. reason, it is not adequete to simply refer to it as a port, because a
  11. typical port will only have the bare minimum changes necessary to make the
  12. program run seamlessly on other platforms (or sometimes, just one other
  13. platform, such as MZX32). This does not fully realize this project's short
  14. and long-term goals, which include:
  15. - First and foremost, as stated, allowing MZX in its current state to run
  16. seamlessly on other platforms with no handicaps (for instance, missing
  17. robot editor)
  18. - Removing unnatural limitations within MZX itself.
  19. - Providing a relatively sane and efficient implementation of MZX's
  20. functionality.
  21. - Providing source code which is decently readable, maintainable, and
  22. can easily be modified and expanded upon.
  23. - As much portability as possible, placing portability over other ideals.
  24. In case anyone is actually interested, here is a more technical overview
  25. of what has actually been done so far on this project:
  26. - All ASM files have been rewritten to ANSI C compliant C++; this mainly
  27. involves the mammoth game2.asm.
  28. - Everything graphics related has been replaced with an SDL driven engine,
  29. including text mode rendering (also capable of rendering SMZX modes)
  30. - All keyboard and mouse events are now also handled by an SDL driven
  31. engine. All internal keyboard/mouse routines use SDL keycodes; no
  32. attempt was made to convert to MZX's old format at this level.
  33. - All world/board/robot loading and saving code has been entirely
  34. rewritten and is more modular now.
  35. - All robot handling code has been rewritten from scratch, and is more
  36. sane/efficient now (allocation, message sending, sensors, etc.)
  37. - All counter handling code has also been rewritten from scratch. This
  38. includes the functionality of builtin and "function" counters. It also
  39. includes a new string framework.
  40. - The robot interpreter has been almost entirely rewritten.
  41. - The main game playing code (game.cpp) has been almost entirely rewritten.
  42. - All module/sample playing code has been rewritten to use modplug and
  43. SDL. PC speaker effects are emulated.
  44. - The main part of the editor (edit.cpp) has been almost entirely rewritten.
  45. - The robot editor has been entirely rewritten, utilizing a modifed (fixed)
  46. version of RASM (released by me over a year ago)
  47. - All other source files (for instance, window handling code, scroll
  48. displaying, char editor, etc.) have been largely overhauled, some to more
  49. of a degree than others. At the very least, everything has been
  50. reformatted and made to work with the new systems.
  51. Now, for a disclaimer. This release is very much in beta status. What that
  52. means is that it will almost definitely have several bugs. I have every
  53. intention of fixing such bugs as soon as I can, and if I don't, someone
  54. else definitely will. The port has been tested internally by private beta
  55. testers for some time now, and I suspect that there is at least a 90%
  56. compatability rate. Nonetheless, MZX has such a diverse number of
  57. applications and worlds have so many variables that it's impossible to
  58. test exhaustively, especially with the features added after version 2.51s3.
  59. See more about bugs/reporting procedure further down.
  60. -- Platforms --
  61. See platforms_matrix.html for a list of supported platforms and the options
  62. available to each respective platform.
  63. -- Minimum Requirements --
  64. I really can't give any exact numbers here, because for one thing it depends
  65. entirely on the game being ran. Chances are the requirements will only be
  66. slightly higher than it would be for a machine that can run the DOS version
  67. correctly, and sometimes may even be slightly lower. As compared to the
  68. original, the port has to manually draw the screen pixel by pixel without
  69. acceleration. However, the renderer is optimized and quite fast.
  70. For the record, I believe the lowest specs machine that has ran the port so
  71. far is a 266MHz mobile Pentium 2 with 32-64MB of RAM. Chances are it can
  72. run fine on something even slower than this. Right now, I don't know, but
  73. in the future this section will likely have more information. If you have
  74. any specific success or failure stories on older hardware, let me know.
  75. -- Gameplay --
  76. Gameplay should be more or less the same as it always was. Some keys
  77. are changed though:
  78. - Use ctrl + alt + enter to toggle between fullscreen and windowed mode
  79. (read the disclaimer on this further down!)
  80. - Use F12 to dump the screen to a BMP; this can be done at ANY time.
  81. The default values (speed, volumes, etc) are the same as they were before,
  82. but if you change them in MZX they won't stay that way the next time you
  83. load. To change them permanently, you have to change the config file
  84. (see below).
  85. Password protected worlds are not supported natively. However, if you try
  86. to load one, you will be presented with an option to permanently decrypt
  87. the world and then load it. With that said, password protection is now
  88. 100% removed from MZX, and no trace of encryption code exists outside of
  89. the decryption module.
  90. There are a couple discrepencies that break compatability that should be
  91. noted:
  92. - key_pressed and key_code now return unsigned chars instead of signed,
  93. so if the game checks for negative values, it won't work.
  94. - The same goes for reading back characters for strings.
  95. - Some things that worked in the DOS version only worked due to chance,
  96. such as there being default (but valid) values for sprite widths or
  97. heights and thus sprites could be displayed before new values were
  98. set.
  99. These shouldn't apply to very many games (I know of one.. in the recent
  100. DoZ. The game was already really broken anyway :p)
  101. -- Limitations --
  102. The MZX port removes many limitations of the original. However, some
  103. still remain due to the world format which has not been changed. These
  104. are the changes:
  105. - Boards may now be as large as 32767x32767. Please do not make boards
  106. this large. :)
  107. - You may now have up to 250 boards.
  108. - Boards may have up to 255 robots, 255 scrolls, and 255 sensors.
  109. - There is no robot memory per board limit. However, individual robots
  110. may only be up to 64k large. If you include the global robot, this
  111. means that you effectively can have up to 16MB of robot memory per
  112. board.
  113. - The same applies to scrolls, which have separate memory spaces and
  114. may only be up to 64k in length each (so you could have almost
  115. 16MB of scroll text per board, but who would want that??)
  116. - The robot stack need not be initialized, and will be dynamically
  117. resized as necessary (useful for recursion). This refers to lines
  118. such as
  119. . "#*-1-2-3-4-5-6-7-8"
  120. at the beginning of robots. They're no longer necessary or useful
  121. (they will be ignored, like any other comment).
  122. - You may have a virtually unlimited number of counters active. The
  123. theoretical limit is some 4 billion. The effective limit depends on
  124. memory available.
  125. - The same goes for strings, which may now have any name, so long as
  126. it begins with a dollar sign ($). The same conventions regarding
  127. strings in 2.68+ still apply (see 268_info.txt for more information)
  128. - Local2 and local3 no longer have dangerous side-effects. Local4
  129. through local32 are also available per-robot now.
  130. A warning: I have tried my best to make it impossible to exceed these
  131. limits, however, you may be able to somehow. If you do, don't save the
  132. game. You will probably corrupt it. Just exit.
  133. -- Video --
  134. The port by default runs in a window that is 640x350. It can run fullscreen,
  135. but chances are you won't get 640x350. It's very likely that you'll get
  136. 640x400, which only has minor black bars at the top and bottom (I find it to
  137. be entirely satisfactory). If you're not so lucky, you might be limited to
  138. 640x480. You can manually specify a resolution in the config file. In fact,
  139. before going into fullscreen, I recommend forcing 640x480 then 640x400. So
  140. far we've experienced temporary monitor problems when trying to go into
  141. 640x350 fullscreen for one user - it may be a good idea to force 640x400's
  142. refresh rate using a tool like hztool (win9x) or NVRefresh (win2k+). You
  143. can also set these with PowerStrip, as well as experiment with custom
  144. refresh rates. It is worth trying to add 640x350 and 640x700 in this
  145. utility.
  146. If you don't get 640x400, there might be a remedy to this.. but as of now
  147. I don't know any. I believe that most video cards can handle it, though.
  148. In the cases where you can't, it's probably a driver/OS/configuration issue.
  149. It is also possible to set a multiplier for the height, for the image to be
  150. stretched. Be sure that the multiplication of 350 is within the resolution
  151. chosen or MZX will crash! On my machine, I can run MZX at 640x700 with a 2x
  152. height multiplier and it looks great.
  153. -- Audio --
  154. With this version, many more module formats are playable than compared to
  155. the previous version. The following are natively supported:
  156. XM, S3M, MOD, MED, MTM, STM, IT, 669, ULT, WAV, DSm, FAR, AMS, MDL, OKT,
  157. DMF, PTM, DBM, AMF, MT2, PSM, J2B, and UMX.
  158. Yes, WAVs can be loaded as mods, and although this is not generally
  159. recommended it could be useful sometimes (such as for short musical clips).
  160. GDM is not supported natively. However, if a GDM file is attempted to be
  161. loaded, an attempt will be made to load an alternate .S3M version, and if
  162. it does not exist, one will be created by converting the GDM file.
  163. The same goes for SAM; they will be converted to WAV. Therefore, you can
  164. now use WAV files natively as samples.
  165. It is strongly recommended that you do not include any GDM or SAM files in
  166. distributions of new MZX games; instead include only their conversions.
  167. You cannot load GDM files with alt + N in the editor at all anymore.
  168. However, you can convert SAM files by testing them with alt + L, and you
  169. can convert GDM files by loading them with a robot. Or, you can use an
  170. external convertor.
  171. Audio is always sampled to 16bit, 44KHz. If your computer cannot support
  172. this, then I believe SDL will emulate it, although I'm not 100% certain
  173. (this remains to be seen). If this is the case, you're in dire need of a
  174. new soundcard anyway.
  175. The size of the audio buffer can be changed in the config file. See the
  176. comments therein to determine the affect of this.
  177. -- Editor --
  178. Although quite a lot of the editor has been rewritten from scratch, a
  179. sincere attempt has been made to make it as compatible and similar to the
  180. original as possible. These are the differences:
  181. - You cannot click on help options to make it happen (for instance, you
  182. can't click on L:Load and expect it to bring up the load window).
  183. - You cannot import or export ANS files. Use MZM instead.
  184. - You can now perform repeated copies by selecting "Copy (repeated)"
  185. from the block command window. This will cause you to repeat the copy
  186. indefinitely until you press escape. Also, after the first paste is
  187. made, you may press ctrl + direction to move in steps that are the
  188. size of the copy (you really have to try it to get a good idea of what
  189. I mean)
  190. - Press alt + H to hide/unhide the menu/information occupying the bottom
  191. 6 lines of the screen.
  192. - Right click is similar to pressing insert (grabs whatever's under the
  193. cursor)
  194. - Exporting char sets now gives direct options to set the size/offset
  195. for partial charsets. The old format (prefixing the name) will not
  196. work.
  197. - For saving files, you may make filenames larger and use mixed case
  198. (as opposed to all caps).
  199. - Now when you import worlds their exits will actually work.
  200. - Loading worlds results in all empty boards and empty
  201. robots/scrolls/sensors within the boards being removed. When you delete
  202. a board, you won't be presented with a gap in the board list anymore.
  203. - You may once again select ASCII as a default charset and revert to it
  204. in the char editor. You may also select a default SMZX charset.
  205. - Anywhere you can enter a line of text you can now press ctrl + left
  206. and ctrl + right to go to the previous/next word.
  207. - This isn't totally limited to the editor, but now everywhere a
  208. selection box shows up (such as for files, boards, items) you can
  209. press multiple keys to seek to a specific entry. Furthermore, in
  210. file selection boxes you can press backspace to go up a directory.
  211. - The SMZX char editor has been changed quite a bit. First, to use, you
  212. must be in SMZX modes 1-3 (toggle using F11).
  213. Within the editor, press keys 1 through 4 to change the "current color."
  214. You can place this color with space, and you can toggle repeated
  215. placement on/off using tab (sorry, no clear/toggle in this mode, they
  216. got in the way far more than they helped).
  217. You now move in increments of 1 char naturally instead of "half chars."
  218. Right click grabs the current "color" underneath the cursor.
  219. - The robotic editor has been rewritten from scratch and is therefore
  220. quite different. Some options do not appear in the help at the bottom
  221. (not enough room), so refer here for information:
  222. You are now able to type invalid code within a robotic line. You will
  223. see that it's invalid due to the way the line is color coded. If you
  224. try to escape while any lines are invalid or if you press alt + V, a
  225. window will be brought up describing the nature of all erroneous lines.
  226. It will also let you mark each line to be deleted or commented out on
  227. exit. If all invalid lines are marked with anything besides ignore,
  228. you can exit safely. You may also mark invalid lines using ctrl + I, D,
  229. and C (to mark as ignore, delete, and comment respectively).
  230. ctrl + C may also be used to comment out a normal line, and then
  231. uncomment.
  232. alt + O is still available, but you may only change macros here (see
  233. the config file for the other rarely used options). This does give
  234. you more room to modify macros, though. They may be up to 64 characters
  235. in length, and you may set up to around 45 or so in this window. (To
  236. get larger, you'll have to use the config file.)
  237. There are some slight discrepencies in robot size; if you highlight the
  238. last line then leave it it will register as a compilation of that line.
  239. Yet, when you exit, the line will be discarded, so this addition is not
  240. permanent. This shouldn't be problematic.
  241. alt + enter and alt + escape no longer work; use the alternatives
  242. (alt + b and alt + u)
  243. -- Config File --
  244. The config file is named config.txt and is a plain-text file that is
  245. intended to be edited in a text editor. All information about it and
  246. options are described in the file itself. It's a good idea to keep a
  247. backup of it in case you want to be made aware of the defaults again,
  248. but if you simply delete the file these defaults will be used.
  249. You may also set config file options at commandline. Note that you
  250. may not use whitespace at all here (if you do, different words will
  251. be counted as separate options). For instance, you may run from
  252. command line:
  253. mzx280 startup_file=test.mzx mzx_speed=7
  254. To start MZX with test.mzx at speed 7.
  255. It's probably worth the time of any new user to check out the config
  256. file options.
  257. -- Misc --
  258. The default char sets for MZX, SMZX, ASCII, and even blank are stored
  259. as actual charsets in the same directory as MZX (mzx_default.chr,
  260. mzx_smzx.chr, mzx_ascii.chr, and mzx_blank.chr respectively). They
  261. are not read-only by default, but you may want to make them so. Don't
  262. change them unless you know what you're doing.
  263. See build.txt for information about building from source.
  264. -- Known Bugs --
  265. As of this release I don't KNOW of any bugs, and in general I don't
  266. make a habit of releasing something when I know of specific bugs. Since
  267. I wrote much of the code and have a good understanding of virtually all
  268. of it, and because it's much easier to debug outside of DOS, chances are
  269. I should be able to fix any bugs that crop up.
  270. -- Bug Reporting Procedure --
  271. If you find a bug, report it on DigitalMZX (there will be a special
  272. pinned thread for this) or e-mail me at exophase@adelphia.net. Here are
  273. some guidelines to consider:
  274. - Describe exactly what is happening to you. Do not attempt to diagnose
  275. the nature of the bug, because you may be wrong, and this could throw
  276. me off significantly.
  277. - I may ask for you to then send the world file where this is happening,
  278. or even better, a save file.
  279. - Include directions of how to reproduce the bug. If the bug doesn't
  280. happen every time, try to find out what is causing it some of the time
  281. and reproduce it regularly.
  282. - If possible, it would be very helpful if you were to create a new world
  283. which synthesizes the bug in as little code as possible. This may
  284. require some debugging of your own on the game in question to find out
  285. exactly what's not working.
  286. Please do NOT make reports such as:
  287. "HELP ME MZX IS CRASHING HELP THIS SUCKS"
  288. Because they won't help anything.
  289. -- Credits --
  290. Main author: Exophase (Gilead Kutnick, exophase@adelphia.net)
  291. Original MZX base code: Gregory Janson
  292. Additional MZX contributions: Spider124, MenTaLguY, CapnKev, JZig,
  293. madbrain, Akwende, Koji
  294. (I'd also like to thank MenTaLguY for idput.cpp, the first converted
  295. piece of MZX's code base, which has been included in the DOS build
  296. since version 2.51s3)
  297. Original SAM2WAV code: madbrain
  298. GDM2S3M library code: ajs
  299. Default SMZX charset: LogiCow
  300. Beta Testers:
  301. Wervyn
  302. Quasar84
  303. Terryn
  304. asgromo
  305. I'd really like to give a special thanks to my beta testers,
  306. especially Terryn. They really worked very hard in not only finding
  307. bugs but helping crush them. If not for them, the port would have
  308. never progressed at all. They were very patient and hardworking
  309. throughout this whole ordeal.