1 #LyX 2.0 created this file. For more info see http://www.lyx.org/
6 \use_default_options true
7 \maintain_unincluded_children false
9 \language_package default
14 \font_typewriter default
15 \font_default_family default
16 \use_non_tex_fonts false
23 \default_output_format default
25 \bibtex_command default
26 \index_command default
27 \paperfontsize default
31 \pdf_bookmarksnumbered false
32 \pdf_bookmarksopen false
33 \pdf_bookmarksopenlevel 1
48 \paperorientation portrait
64 \paragraph_separation indent
65 \paragraph_indentation default
66 \quotes_language english
69 \paperpagestyle default
70 \tracking_changes false
80 lsnes Lua functions reference
87 \begin_layout Standard
88 \begin_inset CommandInset toc
89 LatexCommand tableofcontents
96 \begin_layout Standard
97 \begin_inset Newpage pagebreak
103 \begin_layout Section
107 \begin_layout Standard
108 These tokens are special, and are expanded while the script is being loaded
111 \begin_layout Subsection
112 @@LUA_SCRIPT_FILENAME@@
115 \begin_layout Standard
116 Expanded to string token containing path and filename of this Lua script.
117 Handy for referencing other lua scripts or resources that are relative
121 \begin_layout Standard
122 In practicular, this is suitable to be passed as base argument of various
123 functions like loadfile, dofile, resolve_filename, gui.bitmap_load, gui.bitmap_lo
124 ad_png and gui.bitmap_load_pal.
127 \begin_layout Section
131 \begin_layout Subsection
132 print: Print values to console
135 \begin_layout Itemize
136 Syntax: none print(value...
140 \begin_layout Standard
141 Prints specified values to console.
142 Can print any Lua type at least enough to identify the type and instance.
145 \begin_layout Subsection
146 tostringx: Format a value to string
149 \begin_layout Itemize
150 Syntax: string tostringx(value val)
153 \begin_layout Standard
154 Formats value <val> like print would, and returns the result as a string.
157 \begin_layout Subsection
158 exec: Execute lsnes commands
161 \begin_layout Itemize
162 Syntax: none exec(string cmd)
165 \begin_layout Standard
166 Execute lsnes command <cmd>.
169 \begin_layout Subsection
170 utime: Get current time
173 \begin_layout Itemize
174 Syntax: (number,number) utime()
177 \begin_layout Standard
179 First is time since some epoch in seconds, the second is microseconds mod
180 10^6 since that epoch.
183 \begin_layout Subsection
184 emulator_ready: Check if emulator has been fully initialized
187 \begin_layout Itemize
188 Syntax: boolean emulator_ready()
191 \begin_layout Standard
192 Returns true if emulator has finished booting, false if not (on_startup()
193 will be issued later).
196 \begin_layout Subsection
197 set_idle_timeout: Run function after timeout when emulator is idle
200 \begin_layout Itemize
201 Syntax: none set_idle_timeout(number timeout)
204 \begin_layout Standard
205 Set number of microseconds to block idle for.
206 After this timeout has expired, on_idle() will be called once.
209 \begin_layout Subsection
210 set_timer_timeout: Run function after timeout.
213 \begin_layout Itemize
214 Syntax: none set_timer_timeout(number timeout)
217 \begin_layout Standard
218 Set number of microseconds to block timer for.
219 After this timeout has expired, on_timer() will be called once.
222 \begin_layout Subsection
223 bus_address: Look up address in system bus.
226 \begin_layout Itemize
227 Syntax: none bus_address(number bus_addr)
230 \begin_layout Standard
231 Returns virtual address corresponding to specified address on system bus.
234 \begin_layout Subsection
235 loopwrapper: Convert loop into callable function
238 \begin_layout Itemize
239 Syntax: function loopwrapper(function fun, ...)
242 \begin_layout Standard
243 Calls function <fun> with function and specified arguments.
244 The function passed suspends execution until the function returned is called.
245 Handy for linear flow control among multiple invocations of a hook.
249 \begin_layout LyX-Code
250 on_paint = loopwrapper(function(wait)
254 \begin_layout LyX-Code
259 \begin_layout LyX-Code
261 \begin_inset Quotes eld
265 \begin_inset Quotes erd
271 \begin_layout LyX-Code
276 \begin_layout LyX-Code
281 \begin_layout LyX-Code
285 \begin_layout Subsection
286 list_bindings: List keybindings
289 \begin_layout Itemize
290 Syntax: table list_bindings([string cmd])
293 \begin_layout Standard
294 Get table of all keybindings, indexed by keyspec (modifiers|mask/key).
295 If <cmd> is specified, the table is limited to that command.
296 Also searches for controller keys.
299 \begin_layout Subsection
300 get_alias: Get expansion of alias
303 \begin_layout Itemize
304 Syntax: string get_alias(string aname)
307 \begin_layout Standard
308 Get expansion of given alias <aname>.
311 \begin_layout Subsection
312 set_alias: Set expansion of alias
315 \begin_layout Itemize
316 Syntax: none set_alias(string aname, string value)
319 \begin_layout Standard
320 Set expansion of given alias.
323 \begin_layout Subsection
324 create_ibind: Create invese binding
327 \begin_layout Itemize
328 Syntax: INVERSEBIND create_ibind(string name, string cmd)
331 \begin_layout Standard
332 Return object representing inverse binding with specified name <name> and
333 specified command <cmd>.
336 \begin_layout Itemize
337 Note: To create press/release commands, use aliases +foo and -foo .
340 \begin_layout Itemize
341 Note: Keep the returned object around.
344 \begin_layout Subsection
345 create_command: Create a command
348 \begin_layout Itemize
349 Syntax: COMMANDBIND create_commmand(string name, function a)
352 \begin_layout Itemize
353 Syntax: COMMANDBIND create_commmand(string name, function a, function b)
356 \begin_layout Standard
357 Return object representing a command (pair).
360 \begin_layout Itemize
361 If only one function is specied, the command is level-sensitive, <a> is
365 \begin_layout Itemize
366 If <b> is function, the function is edge-sensitive, <a> is positive edge
367 callback and <b> is negative edge callback.
370 \begin_layout Itemize
371 All callbacks get single argument: The parameters passed.
374 \begin_layout Itemize
375 Keep the returned object around.
378 \begin_layout Subsection
379 loadfile: Load Lua script
382 \begin_layout Itemize
383 Syntax: function loadfile(string filename[, string base])
386 \begin_layout Standard
387 Load lua script from <filename>, resolved relative to <base> (if empty,
391 \begin_layout Subsection
392 dofile: Execute Lua script
395 \begin_layout Itemize
396 Syntax: function dofile(string filename[, string base])
399 \begin_layout Standard
400 Execute lua script from <filename>, resolved relative to <base> (if empty,
401 current directory) and return all return values.
404 \begin_layout Subsection
405 open_file: Open a stream
408 \begin_layout Itemize
409 Syntax: FILEREADER open_file(string filename[, string base])
412 \begin_layout Standard
413 Open file <filename>, resolved relative to <base> (if empty, current directory)
417 \begin_layout Subsection
418 FILEREADER(): Read line/bytes from stream
421 \begin_layout Itemize
422 Syntax: string/nil FILEREADER()
425 \begin_layout Itemize
426 Syntax: string/nil FILEREADER(number bytes)
429 \begin_layout Standard
430 Reads next line or <bytes> bytes from specified file handle.
431 On EOF, nil is returned.
434 \begin_layout Itemize
435 Note: The line-oriented variant reads in text mode, so CR at end of line
439 \begin_layout Subsection
440 FILEREADER:lines: Iterator to read all lines
443 \begin_layout Itemize
444 Syntax: for line in <foo>:lines() do ...
448 \begin_layout Standard
449 Iterator for reading all lines of <foo> in a loop.
452 \begin_layout Subsection
453 resolve_filename: Resolve name of file relative to another
456 \begin_layout Itemize
457 Syntax: string resolve_file(string filename, string base)
460 \begin_layout Standard
461 Resolve name of file <filename> relative to <base> and return the result.
464 \begin_layout Standard
465 \begin_inset Newpage pagebreak
471 \begin_layout Section
475 \begin_layout Standard
476 Bitwise logical functions and related.
479 \begin_layout Subsection
480 bit.none/bit.bnot: Bitwise none or NOT function
483 \begin_layout Itemize
484 Syntax: number bit.none(number...)
487 \begin_layout Itemize
488 Syntax: number bit.bnot(number...)
491 \begin_layout Standard
492 48-bit bitwise NOT / NONE function (set bits that are set in none of the
496 \begin_layout Subsection
497 bit.any/bit.bor: Bitwise any or OR function
500 \begin_layout Itemize
501 Syntax: number bit.any(number...)
504 \begin_layout Itemize
505 Syntax: number bit.bor(number...)
508 \begin_layout Standard
509 48-bit bitwise OR / ANY function (set bits that are set in any of the arguments).
512 \begin_layout Subsection
513 bit.all/bit.band: Bitwise all or AND function
516 \begin_layout Itemize
517 Syntax: number bit.all(number...)
520 \begin_layout Itemize
521 Syntax: number bit.band(number...)
524 \begin_layout Standard
525 48-bit bitwise AND / ALL function (set bits that are set in all of the arguments
529 \begin_layout Subsection
530 bit.parity/bit.bxor: Bitwise parity or XOR function
533 \begin_layout Itemize
534 Syntax: number bit.parity(number...)
537 \begin_layout Itemize
538 Syntax: number bit.bxor(number...)
541 \begin_layout Standard
542 48-bit bitwise XOR / PARITY function (set bits that are set in odd number
546 \begin_layout Subsection
547 bit.lrotate: Rotate a number left
550 \begin_layout Itemize
551 Syntax: number bit.lrotate(number base[, number amount[, number bits]])
554 \begin_layout Standard
555 Rotate <bits>-bit (max 48, default 48) number <base> left by <amount> (default
559 \begin_layout Subsection
560 bit.rrotate: Rotate a number right
563 \begin_layout Itemize
564 Syntax: number bit.rrotate(number base[, number amount[, number bits]])
567 \begin_layout Standard
568 Rotate <bits>-bit (max 48, default 48) number <base> right by <amount> (default
572 \begin_layout Subsection
573 bit.lshift: Shift a number left
576 \begin_layout Itemize
577 Syntax: number bit.lshift(number base[, number amount[, number bits]])
580 \begin_layout Standard
581 Shift <bits>-bit (max 48, default 48) number <base> left by <amount> (default
583 The new bits are filled with zeroes.
586 \begin_layout Subsection
587 bit.lrshift: Shift a number right (logical)
590 \begin_layout Itemize
591 Syntax: number bit.lrshift(number base[, number amount[, number bits]])
594 \begin_layout Standard
595 Shift <bits>-bit (max 48, default 48) number <base> logically right by <amount>
597 The new bits are filled with zeroes.
600 \begin_layout Subsection
601 bit.arshift: Shift a number right (arithmetic)
604 \begin_layout Itemize
605 Syntax: number bit.arshift(number base[, number amount[, number bits]])
608 \begin_layout Standard
609 Shift <bits>-bit (max 48, default 48) number <base> logically right by <amount>
611 The new bits are shifted in with copy of the high bit.
614 \begin_layout Subsection
615 bit.extract: Extract/shuffle bits from number
618 \begin_layout Itemize
619 Syntax: number bit.extract(number base[, number bit0[, number bit1,...]])
622 \begin_layout Standard
623 Returns number that has bit0-th bit as bit 0, bit1-th bit as 1 and so on.
626 \begin_layout Itemize
627 Note: Bit numbers up to 51 should work reliably (then things start falling
628 apart due to double precision issues).
631 \begin_layout Itemize
632 Note: There are two special bit positions, true and false, standing for
633 always set bit and always clear bit.
636 \begin_layout Subsection
637 bit.value: Construct number with specified bits set
640 \begin_layout Itemize
641 Syntax: number bit.value([number bit1[, number bit2,...]])
644 \begin_layout Standard
645 Returns bitwise OR of 1 left shifted by <bit1> places, 1 left shifted by
646 <bit2> places and so on.
647 As special value, nil argument is no-op.
650 \begin_layout Subsection
651 bit.test_any: Test if any bit is set
654 \begin_layout Itemize
655 Syntax: boolean bit.test_any(number a, number b)
658 \begin_layout Standard
659 Returns true if bitwise and of <a> and <b> is nonzero, otherwise false.
662 \begin_layout Subsection
663 bit.test_all: Test if all bits are set
666 \begin_layout Itemize
667 Syntax: boolean bit.test_all(number a, number b)
670 \begin_layout Standard
671 Returns true if bitwise and of <a> and <b> equals <b>, otherwise false.
674 \begin_layout Subsection
675 bit.popcount: Population count
678 \begin_layout Itemize
679 Syntax: number bit.popcount(number a)
682 \begin_layout Standard
683 Returns number of set bits in <a>.
686 \begin_layout Subsection
687 bit.clshift: Chained left shift
690 \begin_layout Itemize
691 Syntax: (number, number) bit.clshift(number a, number b, [number amount,[number
695 \begin_layout Standard
696 Does chained left shift on <a>, <b> by <amount> positions (default 1), assuming
697 numbers to be of specified number of bits <bits> (default 48).
700 \begin_layout Subsection
701 bit.crshift: Chained right shift
704 \begin_layout Itemize
705 Syntax: (number, number) bit.crshift(number a, number b, [number amount,[number
709 \begin_layout Standard
710 Does chained right shift on <a>, <b> by <amount> positions (default 1),
711 assuming numbers to be of specified number of bits <bits> (default 48).
714 \begin_layout Subsection
715 bit.flagdecode: Decode bitfield into flags
718 \begin_layout Itemize
719 Syntax: string bit.flagdecode(number a, number bits, [string on, [string
723 \begin_layout Standard
724 Return string of length bits where ith character is ith character of on
725 if bit i is on, otherwise ith character of off.
726 Out of range reads give last character.
729 \begin_layout Itemize
730 Note: <on> defaults to '*' if empty.
733 \begin_layout Itemize
734 Note: <off> defaults to '-' if empty.
737 \begin_layout Subsection
738 bit.rflagdecode: Decode bitfield into flags
741 \begin_layout Itemize
742 Syntax: string bit.rflagdecode(number a, number bits, [string on, [string
746 \begin_layout Standard
747 Like bit.flagdecode, but outputs the string in the opposite order (most significa
751 \begin_layout Standard
752 \begin_inset Newpage pagebreak
758 \begin_layout Section
762 \begin_layout Itemize
763 Functions that draw to screen can only only be called in on_paint and on_video
764 callbacks or if non-default render queue has been set.
767 \begin_layout Itemize
769 Bits 0-7 are the blue component, bits 8-15 are the green component, bits
770 16-23 are the red component, bits 24-31 are alpha component (0 is fully
771 opaque, 255 is almost transparent).
772 -1 is the fully transparent color.
775 \begin_layout Itemize
776 Alpha values greater than 127 do work properly.
779 \begin_layout Itemize
780 Origin of coordinates is at top left corner of game display area.
781 Left and top gaps correspond to negative coordinates.
784 \begin_layout Subsection
785 gui.resolution: Get current resolution
788 \begin_layout Itemize
789 Syntax: (number, number) gui.resolution()
792 \begin_layout Standard
793 Returns 2-tuple (hresolution, vresolution).
796 \begin_layout Subsection
797 gui.left_gap/gui.right_gap/gui.top_gap/gui.bottom_gap: Set edge gaps
800 \begin_layout Itemize
801 Syntax: number gui.left_gap(number gap)
804 \begin_layout Itemize
805 Syntax: number gui.right_gap(number gap)
808 \begin_layout Itemize
809 Syntax: number gui.top_gap(number gap)
812 \begin_layout Itemize
813 Syntax: number gui.bottom_gap(number gap)
816 \begin_layout Standard
817 Set the specified edge gap to specified value <gap> (max gap is 8191).
818 If successful, old gap is returned.
821 \begin_layout Subsection
822 gui.delta_left_gap/gui.delta_right_gap/gui.delta_top_gap/gui.delta_bottom_gap:
826 \begin_layout Itemize
827 Syntax: number gui.delta_left_gap(number dgap)
830 \begin_layout Itemize
831 Syntax: number gui.delta_right_gap(number dgap)
834 \begin_layout Itemize
835 Syntax: number gui.delta_top_gap(number dgap)
838 \begin_layout Itemize
839 Syntax: number gui.delta_bottom_gap(number dgap)
842 \begin_layout Standard
843 Increase the specified edge gap by specified value <dgap> (max gap is 8191)
844 and return the old gap (returns nothing on error).
847 \begin_layout Subsection
848 gui.text/gui.textH/gui.textV,gui.textHV: Draw text
851 \begin_layout Itemize
852 Syntax: none gui.text(number x, number y, string text[, number fgc[, number
856 \begin_layout Itemize
857 Syntax: none gui.textH(number x, number y, string text[, number fgc[, number
861 \begin_layout Itemize
862 Syntax: none gui.textV(number x, number y, string text[, number fgc[, number
866 \begin_layout Itemize
867 Syntax: none gui.textHV(number x, number y, string text[, number fgc[, number
871 \begin_layout Standard
872 Draw specified text on the GUI (each character cell is 8 or 16 wide and
877 \begin_layout Itemize
878 x: X-coordinate to start the drawing from (and x-coordinate at begining
882 \begin_layout Itemize
883 y: Y-coordinate to start the drawing from.
886 \begin_layout Itemize
887 text: The text to draw.
890 \begin_layout Itemize
891 fgc: Text color (default is 0xFFFFFF (white))
894 \begin_layout Itemize
895 bgc: Background color (default is -1 (transparent))
898 \begin_layout Standard
899 Note: The H variants draw at double width and V variants draw at double
903 \begin_layout Subsection
904 gui.rectangle: Draw a rectangle
907 \begin_layout Itemize
908 Syntax: none gui.rectangle(number x, number y, number width, number height[,
909 number thickness[, number outline[, number fill]]])
912 \begin_layout Standard
913 Draw rectangle on the GUI.
917 \begin_layout Itemize
918 x: X-coordinate of left edge.
921 \begin_layout Itemize
922 y: Y-coordinate of upper edge.
925 \begin_layout Itemize
926 width: Width of rectangle.
929 \begin_layout Itemize
930 height: Height of rectangle.
933 \begin_layout Itemize
934 thickness: Thickness of outline (default is 1).
937 \begin_layout Itemize
938 outline: Color of outline (default is 0xFFFFFF (white))
941 \begin_layout Itemize
942 fill: Color of fill (default is -1 (transparent))
945 \begin_layout Subsection
946 gui.box: Draw a 3D-effect box
949 \begin_layout Itemize
950 Syntax: none gui.box(number x, number y, number width, number height[, number
951 thickness[, number outline1[,number outline2[, number fill]]]])
954 \begin_layout Standard
955 Draw rectangle with 3D effect on the GUI.
959 \begin_layout Itemize
960 x: X-coordinate of left edge.
963 \begin_layout Itemize
964 y: Y-coordinate of upper edge.
967 \begin_layout Itemize
968 width: Width of rectangle.
971 \begin_layout Itemize
972 height: Height of rectangle.
975 \begin_layout Itemize
976 thickness: Thickness of outline (default is 1).
979 \begin_layout Itemize
980 outline1: First color of outline (default is 0xFFFFFF (white))
983 \begin_layout Itemize
984 outline2: First color of outline (default is 0x808080 (dark gray))
987 \begin_layout Itemize
988 fill: Color of fill (default is 0xC0C0C0 (light grayy))
991 \begin_layout Subsection
992 gui.pixel: Draw a single pixel
995 \begin_layout Itemize
996 Syntax: none gui.pixel(number x, number y[, number color])
999 \begin_layout Standard
1000 Draw one pixel on the GUI.
1004 \begin_layout Itemize
1005 x: X-coordinate of the pixel
1008 \begin_layout Itemize
1009 y: Y-coordinate of the pixel
1012 \begin_layout Itemize
1013 color: Color of the pixel (default is 0xFFFFFF (white))
1016 \begin_layout Subsection
1017 gui.crosshair: Draw a crosshair
1020 \begin_layout Itemize
1021 Syntax: none gui.crosshair(number x, number y[, number length[, number color]])
1024 \begin_layout Standard
1029 \begin_layout Itemize
1030 x: X-coordinate of the crosshair
1033 \begin_layout Itemize
1034 y: Y-coordinate of the crosshair
1037 \begin_layout Itemize
1038 length: Length of the crosshair lines (default 10).
1041 \begin_layout Itemize
1042 color: Color of the crosshair (default is 0xFFFFFF (white))
1045 \begin_layout Subsection
1046 gui.line: Draw a line
1049 \begin_layout Itemize
1050 Syntax: none gui.line(number x1, number y1, number x2, number y2[, number
1054 \begin_layout Standard
1059 \begin_layout Itemize
1060 x1: X-coordinate of one end.
1063 \begin_layout Itemize
1064 y1: Y-coordinate of one end.
1067 \begin_layout Itemize
1068 x2: X-coordinate of the other end.
1071 \begin_layout Itemize
1072 y2: Y-coordinate of the other end.
1075 \begin_layout Itemize
1076 color: Color of the line (default is 0xFFFFFF (white)).
1079 \begin_layout Subsection
1080 gui.circle: Draw a (filled) circle
1083 \begin_layout Itemize
1084 Syntax: none gui.circle(number x, number y, number r[, number thick[, number
1085 border[, number fil]]])
1088 \begin_layout Standard
1093 \begin_layout Itemize
1094 x: X-coordinate of the center
1097 \begin_layout Itemize
1098 y: Y-coordinate of the center
1101 \begin_layout Itemize
1102 r: The radius of the circle
1105 \begin_layout Itemize
1106 thick: Border thickness
1109 \begin_layout Itemize
1110 border: Border color (default is 0xFFFFFF (white))
1113 \begin_layout Itemize
1114 fill: Fill color (default is -1 (transparent)).
1117 \begin_layout Subsection
1118 gui.bitmap_draw: Draw a bitmap
1121 \begin_layout Itemize
1122 Syntax: none gui.bitmap_draw(number x, number y, BITMAP bitmap, PALETTE palette)
1125 \begin_layout Itemize
1126 Syntax: none gui.bitmap_draw(number x, number y, DBITMAP bitmap)
1129 \begin_layout Standard
1130 Draw a bitmap <bitmap> on screen with specified palette <palette> (if bitmap
1135 \begin_layout Itemize
1136 x: X-coordinate of left edge.
1139 \begin_layout Itemize
1140 y: Y-coordinate of top edge.
1143 \begin_layout Itemize
1144 bitmap: The bitmap to draw
1147 \begin_layout Itemize
1148 palette: The palette to draw the bitmap using.
1151 \begin_layout Subsection
1152 gui.palette_new: Create a new palette
1155 \begin_layout Itemize
1156 Syntax: PALETTE gui.palette_new()
1159 \begin_layout Standard
1160 Returns a new palette (initially all transparent).
1164 \begin_layout Subsection
1165 gui.bitmap_new: Create a new bitmap
1168 \begin_layout Itemize
1169 Syntax: BITMAP/DBITMAP gui.bitmap_new(number w, number h, boolean direct[,
1173 \begin_layout Standard
1174 Returns a new bitmap/dbitmap.
1177 \begin_layout Standard
1181 \begin_layout Itemize
1182 w: The width of new bitmap
1185 \begin_layout Itemize
1186 h: The height of new bitmap
1189 \begin_layout Itemize
1190 direct: If true, the returned bitmap is dbitmap, otherwise bitmap.
1193 \begin_layout Itemize
1194 icolor: Initital fill color (defaults to 0 on BITMAP, -1 on DBITMAP)
1197 \begin_layout Subsection
1198 gui.bitmap_load/gui.bitmap_load_str: Load a bitmap from file or string
1201 \begin_layout Itemize
1202 Syntax: DBITMAP/(BITMAP, PALETTE) gui.bitmap_load(string file[, string base])
1205 \begin_layout Itemize
1206 Syntax: DBITMAP/(BITMAP, PALETTE) gui.bitmap_load_str(string content)
1209 \begin_layout Standard
1210 Reads file <file> (resolved relative to <base>) or string <content> and
1211 returns loaded bitmap/dbitmap (if bitmap, the second return value is palette
1215 \begin_layout Subsection
1216 gui.bitmap_load_png/gui.bitmap_load_png_str: Load a bitmap from PNG
1219 \begin_layout Itemize
1220 Syntax: DBITMAP/(BITMAP, PALETTE) gui.bitmap_load_png(string file[, string
1224 \begin_layout Itemize
1225 Syntax: DBITMAP/(BITMAP, PALETTE) gui.bitmap_load_png_str(string content)
1228 \begin_layout Standard
1229 Load a bitmap from PNG file <file> (resolved relative to <base>) or BASE64
1230 encoded content <content>.
1233 \begin_layout Itemize
1234 If the PNG is of color type 3 (PALETTE), returns two value.
1235 First is BITMAP containing the image data from the PNG and second is PALETTE
1236 containg the palette data from the PNG.
1239 \begin_layout Itemize
1240 For color types 0 (GRAY), 2 (RGB), 4 (GRAY_ALPHA) and 6 (RGBA), returns
1241 one DBITMAP containg the image data loaded from the PNG.
1244 \begin_layout Subsection
1245 gui.bitmap_load_pal/gui.bitmap_load_pal_str: Load a palette
1248 \begin_layout Itemize
1249 Syntax: PALETTE gui.bitmap_load_pal(string file[, string base])
1252 \begin_layout Itemize
1253 Syntax: PALETTE gui.bitmap_load_pal_str(string content)
1256 \begin_layout Standard
1257 Load a palette from file <file>(resolved relative to <base>) or string <content>.
1260 \begin_layout Itemize
1261 The kinds of lines supported:
1265 \begin_layout Itemize
1266 Blank or just whitespace: Ignored
1269 \begin_layout Itemize
1270 First non-whitespace is '#': Ignored
1273 \begin_layout Itemize
1274 <r> <g> <b>: Fully opaque color with specified RGB values (0-255)
1277 \begin_layout Itemize
1278 <r> <g> <b> <a>: Color with specified RGB values (0-255) and specified alpha
1279 (0-256, 0 being fully transparent and 256 fully opaque).
1282 \begin_layout Itemize
1283 transparent: Fully transparent color
1287 \begin_layout Subsection
1288 gui.palette_set: Set palette entry
1291 \begin_layout Itemize
1292 Syntax: none gui.palette_set(PALETTE palette, number index, number color)
1295 \begin_layout Standard
1296 Sets color in palette.
1300 \begin_layout Itemize
1301 palette: The palette to manipulate
1304 \begin_layout Itemize
1305 index: Index of color (0-65535).
1308 \begin_layout Itemize
1309 color: The color value.
1312 \begin_layout Subsection
1313 gui.bitmap_pset: Set pixel in bitmap
1316 \begin_layout Itemize
1317 Syntax: none gui.bitmap_pset(BITMAP/DBITMAP bitmap, number x, number y, number
1321 \begin_layout Standard
1322 Sets specified pixel in bitmap.
1326 \begin_layout Itemize
1327 bitmap: The bitmap to manipulate
1330 \begin_layout Itemize
1331 x: The x-coordinate of the pixel.
1334 \begin_layout Itemize
1335 y: The y-coordinate of the pixel.
1338 \begin_layout Itemize
1339 color: If bitmap is a bitmap, color index (0-65535).
1340 Otherwise color value.
1343 \begin_layout Subsection
1344 gui.bitmap_pget: Get pixel in bitmap
1347 \begin_layout Itemize
1348 Syntax: number gui.bitmap_pget(BITMAP/DBITMAP bitmap, number x, number y)
1351 \begin_layout Standard
1352 Gets specified pixel in bitmap.
1356 \begin_layout Itemize
1357 bitmap: The bitmap to query
1360 \begin_layout Itemize
1361 x: The x-coordinate of the pixel.
1364 \begin_layout Itemize
1365 y: The y-coordinate of the pixel.
1368 \begin_layout Standard
1369 The bitmap color (color index if paletted, otherwise color value).
1372 \begin_layout Subsection
1373 gui.bitmap_size: Get size of bitmap
1376 \begin_layout Itemize
1377 Syntax: (number, number) gui.bitmap_size(BITMAP/DBITMAP bitmap)
1380 \begin_layout Standard
1381 Get size of bitmap <bitmap>.
1382 The first return is the width, the second is the height.
1385 \begin_layout Itemize
1386 Note: Can be used anywhere.
1389 \begin_layout Subsection
1390 gui.bitmap_blit: Blit a bitmap into another
1393 \begin_layout Itemize
1394 Syntax: none gui.bitmap_blit(BITMAP dest, number dx, number dy, BITMAP src,
1395 number sx, number sy, number w, number h[, number ck])
1398 \begin_layout Itemize
1399 Syntax: none gui.bitmap_blit(DBITMAP dest, number dx, number dy, DBITMAP
1400 src, number sx, number sy, number w, number h[, number ck])
1403 \begin_layout Itemize
1404 Syntax: none gui.bitmap_blit(DBITMAP dest, number dx, number dy, BITMAP src,
1405 PALETTE pal, number sx, number sy, number w, number h[, number ck])
1408 \begin_layout Standard
1409 Blit a part of bitmap to another.
1413 \begin_layout Itemize
1414 dest: Destination to blit to.
1417 \begin_layout Itemize
1418 dx: left edge of target
1421 \begin_layout Itemize
1422 dy: Top edge of target
1425 \begin_layout Itemize
1426 src: The source to blit from.
1429 \begin_layout Itemize
1430 pal: The palette to use in blit.
1433 \begin_layout Itemize
1434 sx: left edge of source
1437 \begin_layout Itemize
1438 sy: Top edge of source
1441 \begin_layout Itemize
1445 \begin_layout Itemize
1446 h: Height of region.
1449 \begin_layout Itemize
1451 Pixels of this color are not blitted.
1455 \begin_layout Itemize
1456 If soruce bitmap is bitmap, this is color index of colorkey.
1457 Values outside range 0-65535 cause no key to be used as colorkey.
1460 \begin_layout Itemize
1461 If source bitmap is dbitmap, this is the color value of colorkey.
1464 \begin_layout Itemize
1465 May be absent or nil for no colorkey blit.
1469 \begin_layout Subsection
1470 gui.repaint: Arrange a repaint
1473 \begin_layout Itemize
1474 Syntax: none gui.repaint()
1477 \begin_layout Standard
1478 Request on_repaint() to happen as soon as possible.
1481 \begin_layout Subsection
1482 gui.synchronous_repaint: Paint screen now
1485 \begin_layout Itemize
1486 Syntax: none gui.synchronous_repaint(RENDERQUEUE queue)
1489 \begin_layout Standard
1490 Paints specified render queue on screen right there and then.
1493 \begin_layout Subsection
1494 gui.subframe_update: Enable/Disable subframe updates
1497 \begin_layout Itemize
1498 Syntax: none gui.subframe_update(boolean on)
1501 \begin_layout Standard
1502 Request subframe updates (calling on_paint() on subframes) to happen (<on>=true)
1503 or not happen (<on>=false).
1506 \begin_layout Subsection
1507 gui.screenshot: Write a screenshot
1510 \begin_layout Itemize
1511 Syntax: none gui.screenshot(string filename)
1514 \begin_layout Standard
1515 Write PNG screenshot of the current frame (no drawings) to specified file
1519 \begin_layout Subsection
1520 gui.color: Compose a color.
1523 \begin_layout Itemize
1524 Syntax: number gui.color(number r, number g, number b[, number a])
1527 \begin_layout Standard
1528 Returns color (in notation Lua scripts use) corresponding to color (<r>,<g>,<b>)
1529 , each component in scale 0-255.
1530 If <a> is specified, that is alpha (0 is fully transparent, 256(sic) is
1532 The default alpha is 256.
1535 \begin_layout Subsection
1536 gui.status: Set status variable
1539 \begin_layout Itemize
1540 Syntax: none gui.status(string name, string value)
1543 \begin_layout Standard
1545 \begin_inset Quotes eld
1549 \begin_inset Quotes erd
1552 to <value> in status area.
1555 \begin_layout Subsection
1556 gui.rainbow: Rainbow color calculation
1559 \begin_layout Itemize
1560 Syntax: number gui.rainbow(number step, number steps[, number color])
1563 \begin_layout Standard
1564 Perform hue rotation of color <color> (default bright red), by <step> steps.
1565 The number of steps per full rotation is given by absolute value of <steps>.
1568 \begin_layout Standard
1569 If <steps> is negative, the rotation will be counterclockwise.
1572 \begin_layout Subsection
1573 gui.renderq_new: Create a render queue
1576 \begin_layout Itemize
1577 Syntax: RENDERQUEUE gui.renderq_new(number width, number height)
1580 \begin_layout Standard
1581 Create render queue with specified reported size and return it.
1584 \begin_layout Subsection
1585 gui.renderq_clear: Clear a render queue
1588 \begin_layout Itemize
1589 Syntax: none gui.renderq_clear(RENDERQUEUE queue)
1592 \begin_layout Standard
1593 Clear specified render queue.
1596 \begin_layout Subsection
1597 gui.renderq_set: Change active render queue
1600 \begin_layout Itemize
1601 Syntax: none gui.renderq_set(RENDERQUEUE queue)
1604 \begin_layout Standard
1605 Switch to specified render queue.
1606 Use nil as queue to switch to default queue.
1609 \begin_layout Itemize
1610 Note: When switched to another queue, all drawing functions work and draw
1611 there, even outside on_video/on_paint.
1614 \begin_layout Subsection
1615 gui.renderq_run: Run render queue
1618 \begin_layout Itemize
1619 Syntax: none gui.renderq_run(RENDERQUEUE queue)
1622 \begin_layout Standard
1623 Run specified render queue, copying the objects to current render queue.
1627 \begin_layout Itemize
1628 Warning: Don't try to run the current render queue.
1631 \begin_layout Subsection
1632 gui.loadfont: Load a font file
1635 \begin_layout Itemize
1636 Syntax: CUSTOMFONT gui.loadfont(string filename)
1639 \begin_layout Standard
1640 Loads font from specified file (CUSTOMFONT object).
1643 \begin_layout Subsection
1644 CUSTOMFONT(): Render text to screen
1647 \begin_layout Itemize
1648 Syntax: none CUSTOMFONT(number x, number y, string text[, number fgc[, number
1649 bgc[, number hlc]]])
1652 \begin_layout Standard
1653 Draw string with custom font to screen.
1654 The parameters are the same as in gui.text, except <hlc> is the halo color
1655 (default is no halo).
1659 \begin_layout Subsection
1660 gui.adjust_transparency: Adjust transparency of DBITMAP or PALETTE
1663 \begin_layout Itemize
1664 Syntax: none gui.adjust_transparency(DBITMAP obj, number adj)
1667 \begin_layout Itemize
1668 Syntax: none gui.adjust_transparency(PALETTE obj, number adj)
1671 \begin_layout Standard
1672 Multiply alpha channel of <obj> by <adj>/256.
1674 \begin_inset Quotes eld
1678 \begin_inset Quotes erd
1681 out of solid bitmaps.
1684 \begin_layout Subsection
1685 gui.kill_frame: Kill video frame and associated sound
1688 \begin_layout Itemize
1689 Syntax: none gui.kill_frame()
1692 \begin_layout Standard
1693 Kills the currently dumped video frame + the associated sound.
1694 Only valid in on_video callback.
1697 \begin_layout Subsection
1698 gui.arrow: Draw an arrow
1701 \begin_layout Itemize
1702 Syntax: none gui.arrow(number x, number y, number length, number hwidth,
1703 number direction[, bool fill[, number color[, number twidth[, number hthick]]]]
1707 \begin_layout Standard
1708 Draws an arrow using color <color>.
1709 The tip of arrow is at (<x>, <y>).
1713 \begin_layout Enumerate
1714 <length>: The length of arrow tail.
1717 \begin_layout Enumerate
1718 <hwidth>: The width of arrow head.
1722 \begin_layout Enumerate
1723 <direction>: Direction of arrow.
1724 0 is to right, +1 rotates 45 degrees counterclockwise.
1727 \begin_layout Enumerate
1728 <fill>: If true, fill the arrow head.
1732 \begin_layout Enumerate
1733 <twidth>: Tail width.
1738 \begin_layout Enumerate
1739 <hthick>: Head thickness (only used if <fill> is false).
1740 Default is <twidth>.
1743 \begin_layout Subsection
1744 gui.tilemap: Create a tilemap
1747 \begin_layout Itemize
1748 Syntax: TILEMAP gui.tilemap(number w, number h, number bw, number bh)
1751 \begin_layout Standard
1752 Create a new tilemap of size <w>*<h>, with each cell being <bw>*<bh>.
1755 \begin_layout Subsection
1756 TILEMAP:getsize: Query tilemap size
1759 \begin_layout Itemize
1760 Syntax: number, number TILEMAP:getsize()
1763 \begin_layout Standard
1764 Return size of tilemap (width first).
1767 \begin_layout Subsection
1768 TILEMAP:getcsize: Query tilemap cell size
1771 \begin_layout Itemize
1772 Syntax: number, number TILEMAP:getcsize()
1775 \begin_layout Standard
1776 Return size of tilemap cell (width first).
1779 \begin_layout Subsection
1780 TILEMAP:get: Query tilemap cell
1783 \begin_layout Itemize
1784 Syntax: none TILEMAP:get(number x, number y)
1787 \begin_layout Itemize
1788 Syntax: dbitmap TILEMAP:get(number x, number y)
1791 \begin_layout Itemize
1792 Syntax: bitmap,palette TILEMAP:get(number x, number y)
1795 \begin_layout Standard
1796 Return contents of cell at <x>,<y>.
1799 \begin_layout Subsection
1800 TILEMAP:set: Set tilemap cell
1803 \begin_layout Itemize
1804 Syntax: none TILEMAP:set(number x, number y)
1807 \begin_layout Itemize
1808 Syntax: none TILEMAP:set(number x, number y, dbitmap b)
1811 \begin_layout Itemize
1812 Syntax: none TILEMAP:set(number x, number y, bitmap b, palette p)
1815 \begin_layout Standard
1816 Set contents of cell at <x>,<y>.
1817 If no bitmap/dbitmap is given, cell is cleared.
1818 Otherwise specified (d)bitmap is used (with specified palette if bitmap).
1821 \begin_layout Subsection
1822 TILEMAP:scroll: Scroll tilemap
1825 \begin_layout Itemize
1826 Syntax: none TILEMAP:scroll(number ox, number oy)
1829 \begin_layout Itemize
1830 Syntax: none TILEMAP:scroll(number ox, number oy, number x, number y, number
1834 \begin_layout Itemize
1835 Syntax: none TILEMAP:scroll(number ox, number oy, number x, number y, number
1836 w, number h, boolean circx, boolean circy)
1839 \begin_layout Standard
1840 Scrolls the tilemap tiles by <ox>,<oy>.
1841 If <x>,<y>,<w>,<h> is specified, the scrolling is limited to <w>*<h> window
1842 starting at <x>,<y> (in tiles).
1845 \begin_layout Standard
1846 If <circx> is true, the window is circular in horizontal direction.
1847 Similarly with <circy> and vertical direciton.
1850 \begin_layout Subsection
1851 TILEMAP:draw: Draw tilemap
1854 \begin_layout Itemize
1855 Syntax: none TILEMAP:draw(number x, number y)
1858 \begin_layout Itemize
1859 Syntax: none TILEMAP:draw(number x, number y, number x0, number y0)
1862 \begin_layout Itemize
1863 Syntax: none TILEMAP:draw(number x, number y, number x0, number y0, number
1867 \begin_layout Standard
1868 Draw tilemap at <x>,<y>.
1869 If <x0>,<y0> is given, that is tilemap coordinate (in pixels) of upper
1871 If <w>,<h> is given, that is the size of window to draw (in pixels)
1874 \begin_layout Subsection
1875 gui.bitmap_save_png: Save a bitmap to PNG
1878 \begin_layout Itemize
1879 Syntax: none gui.bitmap_save_png(string filename[, string base], BITMAP bmp,
1883 \begin_layout Itemize
1884 Syntax: none gui.bitmap_save_png(string filename[, string base], DBITMAP
1888 \begin_layout Itemize
1889 Syntax: string gui.bitmap_save_png(BITMAP bmp, PALETTE pal)
1892 \begin_layout Itemize
1893 Syntax: string gui.bitmap_save_png(DBITMAP bmp)
1896 \begin_layout Standard
1897 Save specified bitmap <bmp>, with palette <pal> (only if paletted) into
1898 PNG file <filename> (relative to <base>) or return BASE64 encoding as return
1902 \begin_layout Subsection
1903 gui.bitmap_hash: Hash a bitmap
1906 \begin_layout Itemize
1907 Syntax: string gui.bitmap_hash(BITMAP bmp)
1910 \begin_layout Itemize
1911 Syntax: string gui.bitmap_hash(DBITMAP bmp)
1914 \begin_layout Standard
1915 Hashes bitmap <bmp> and returns 64-hex digit crypto-strong hash.
1916 Identical bitmaps result in indentical hashes (but color order in indexed
1917 bitmaps is significant).
1920 \begin_layout Subsection
1921 gui.palette_hash: Hash a palette
1924 \begin_layout Itemize
1925 Syntax: string gui.palette_hash(PALETTE pal)
1928 \begin_layout Standard
1929 Hashes palette <pal> and retruns 64-hex digit crypto-strong hash.
1930 Identical palettes result in identical hashes (fully transparent colors
1931 at end of palette don't affect the hash).
1934 \begin_layout Standard
1935 \begin_inset Newpage pagebreak
1941 \begin_layout Section
1945 \begin_layout Standard
1947 Functions manipulating input are only available in on_input callback.
1950 \begin_layout Subsection
1951 input.get: Read controller button/axis (deprecated)
1954 \begin_layout Itemize
1955 Syntax: number input.get(number controller, number index)
1958 \begin_layout Standard
1959 Read the specified index <index> (zero-based) from specified controller
1960 <controller> (zero-based).
1964 \begin_layout Subsection
1965 input.set: Write controller button/axis (deprecated)
1968 \begin_layout Itemize
1969 Syntax: none input.set(number controller, number index, number value)
1972 \begin_layout Standard
1973 Write the specified index <index> (zero-based) from specified controller
1974 <controller> (zero-based), storing value <value>.
1977 \begin_layout Subsection
1978 input.get2: Read controller button/axis
1981 \begin_layout Itemize
1982 Syntax: number input.get2(number port, number controller, number index)
1985 \begin_layout Standard
1986 Read the specified input tuple.
1987 Port 0 is system port.
1990 \begin_layout Subsection
1991 input.set2: Write controller button/axis
1994 \begin_layout Itemize
1995 Syntax: input.set2(number port, number controller, number index, number value)
1998 \begin_layout Standard
1999 Write the specified input tuple.
2000 Port 0 is system port.
2003 \begin_layout Subsection
2004 input.lcid_to_pcid2: Look up logical controller
2007 \begin_layout Itemize
2008 Syntax: (number, number) input.lcid_to_pcid2(number lcid)
2011 \begin_layout Standard
2012 Look up physical pcid pair (port, controller) corresponding to specified
2013 logical controller (1-based).
2014 Returns nothing if controller does not exist.
2017 \begin_layout Subsection
2018 input.port_type: Look up port type
2021 \begin_layout Itemize
2022 Syntax: string input.port_type(number port)
2025 \begin_layout Standard
2026 Return type of specified port.
2029 \begin_layout Subsection
2030 input.controller_info: Get information about controller
2033 \begin_layout Itemize
2034 Syntax: table input.controller_info(number port, number controller)
2037 \begin_layout Standard
2038 Get controller info for specified controller.
2039 If controller does not exist, returns nil.
2040 Otherwise returns a table with following fields:
2043 \begin_layout Itemize
2044 type (string): Type of the controller.
2047 \begin_layout Itemize
2048 class (string): Class of the controller.
2051 \begin_layout Itemize
2052 classnum (number): Number of the controller within its class (1-based)
2055 \begin_layout Itemize
2056 lcid (number): Logical controller number of the controller.
2059 \begin_layout Itemize
2060 button_count (number): Number of buttons on controller
2063 \begin_layout Itemize
2064 buttons (array): Array of following info about each button:
2068 \begin_layout Itemize
2069 type (string): Type of button.
2071 \begin_inset Quotes eld
2075 \begin_inset Quotes erd
2079 \begin_inset Quotes eld
2083 \begin_inset Quotes erd
2087 \begin_inset Quotes eld
2091 \begin_inset Quotes erd
2095 \begin_inset Quotes eld
2099 \begin_inset Quotes erd
2105 \begin_layout Itemize
2106 name (string): Name of button.
2109 \begin_layout Itemize
2110 symbol (string): Symbol of button.
2111 Only present for type
2112 \begin_inset Quotes eld
2116 \begin_inset Quotes erd
2122 \begin_layout Itemize
2123 hidden (boolean): True if hidden button.
2128 \begin_layout Subsection
2129 input.veto_button: Veto a button press
2132 \begin_layout Itemize
2133 Syntax: none input.veto_button()
2136 \begin_layout Standard
2137 Signals that the button event should be vetoed.
2138 Only valid in on_button callback.
2141 \begin_layout Subsection
2142 input.geta: Get all buttons for controller (deprecated)
2145 \begin_layout Itemize
2146 Syntax: (number, number...) input.geta(number controller)
2149 \begin_layout Standard
2150 Get input state for entiere controller.
2151 Returns n return values.
2154 \begin_layout Itemize
2155 1st return value: Bitmask: bit i is set if i:th index is nonzero
2158 \begin_layout Itemize
2159 2nd- return value: value of i:th index.
2162 \begin_layout Subsection
2163 input.seta: Set all buttons for controller (deprecated)
2166 \begin_layout Itemize
2167 Syntax: none input.seta(number controller, number bitmask, number args...)
2170 \begin_layout Standard
2171 Set state for entiere controller.
2172 args is up to N values for indices (overriding values in bitmask if specified).
2175 \begin_layout Subsection
2176 input.controllertype: Get controller type (deprecated)
2179 \begin_layout Itemize
2180 syntax: string input.controllertype(number controller)
2183 \begin_layout Standard
2184 Get the type of controller as string.
2187 \begin_layout Subsection
2188 input.reset: Execute (delayed) reset
2191 \begin_layout Itemize
2192 Syntax: none input.reset([number cycles])
2195 \begin_layout Standard
2197 If <cycles> is greater than zero, do delayed reset.
2198 0 (or no value) causes immediate reset.
2201 \begin_layout Itemize
2202 Note: Only available with subframe flag false.
2205 \begin_layout Subsection
2206 input.raw: Return raw input data
2209 \begin_layout Itemize
2210 Syntax: table input.raw()
2213 \begin_layout Standard
2214 Returns table of tables of all available keys and axes.
2215 The first table is indexed by key name (platform-dependent!), and the inner
2216 table has the following fields:
2219 \begin_layout Itemize
2220 value: Last reported value for control
2224 \begin_layout Itemize
2225 For keys: 1 for pressed, 0 for released.
2228 \begin_layout Itemize
2229 For axes: -32767...32767.
2232 \begin_layout Itemize
2233 For presure-sensitive buttons: 0...32767.
2236 \begin_layout Itemize
2237 For hats: Bitmask: 1=>Up, 2=>Right, 4=>Down, 8=>Left.
2240 \begin_layout Itemize
2241 For mouse: Coordinates relative to game area.
2245 \begin_layout Itemize
2246 ktype: Type of key (disabled, key, mouse, axis, hat, pressure).
2249 \begin_layout Subsection
2250 input.keyhook: Hook a key
2253 \begin_layout Itemize
2254 Syntax: none input.keyhook(string key, boolean state)
2257 \begin_layout Standard
2258 Requests that keyhook events to be sent for key <key> (<state>=true) or
2259 not sent (<state>=false).
2262 \begin_layout Subsection
2263 input.joyget: Get controls for controller
2266 \begin_layout Itemize
2267 Syntax: table input.joyget(number logical)
2270 \begin_layout Standard
2271 Returns table for current controls for specified logical controller <logical>.
2272 The names of fields vary by controller type.
2275 \begin_layout Itemize
2276 The buttons have the same name as those are referred to in other contexts
2280 \begin_layout Itemize
2281 The analog axes are usually
2282 \begin_inset Quotes eld
2286 \begin_inset Quotes erd
2290 \begin_inset Quotes eld
2294 \begin_inset Quotes erd
2300 \begin_layout Itemize
2301 Each field is numeric or boolean depending on axis/button.
2304 \begin_layout Subsection
2305 input.joyset: Set controls for controller
2308 \begin_layout Itemize
2309 Syntax: none input.joyset(number controller, table controls)
2312 \begin_layout Standard
2313 Set the the state of specified controller to values specified in specified
2317 \begin_layout Itemize
2318 Each field can be boolean or number.
2321 \begin_layout Itemize
2322 Also, buttons allow strings, which cause value to be inverted.
2325 \begin_layout Subsection
2326 input.lcid_to_pcid: Look up logical controller (deprecated)
2329 \begin_layout Itemize
2330 Syntax: (number, number, number) input.lcid_to_pcid(number lcid)
2333 \begin_layout Standard
2334 Returns the legacy pcid for controller (or false if there isn't one), followed
2336 Returns nothing if controller does not exist.
2339 \begin_layout Standard
2340 \begin_inset Newpage pagebreak
2346 \begin_layout Section
2350 \begin_layout Standard
2351 Various keybinding-related functions
2354 \begin_layout Subsection
2355 keyboard.bind: Bind a key
2358 \begin_layout Itemize
2359 Syntax: none keyboard.bind(string mod, string mask, string key, string cmd)
2362 \begin_layout Standard
2363 Bind specified key with specified modifers to specified command.
2366 \begin_layout Subsection
2367 keyboard.unbind: Unbind a key
2370 \begin_layout Itemize
2371 Syntax: none keyboard.unbind(string mod, string mask, string key)
2374 \begin_layout Standard
2375 Unbind specified key with specified modifers.
2378 \begin_layout Subsection
2379 keyboard.alias: Set alias expansion
2382 \begin_layout Itemize
2383 Syntax: none keyboard.alias(string alias, string expansion)
2386 \begin_layout Standard
2387 Set expansion of given command.
2390 \begin_layout Standard
2391 \begin_inset Newpage pagebreak
2397 \begin_layout Section
2401 \begin_layout Standard
2405 \begin_layout Subsection
2406 subtitle.byindex: Look up start and length of subtitle by index
2409 \begin_layout Itemize
2410 Syntax: (number, number) subtitle.byindex(number i)
2413 \begin_layout Standard
2414 Read the frame and length of ith subtitle.
2415 Returns nothing if not present.
2418 \begin_layout Subsection
2419 subtitle.set: Write a subtitle
2422 \begin_layout Itemize
2423 Syntax: none subtitle.set(number f, number l, string txt)
2426 \begin_layout Standard
2427 Set the text of subtitle.
2430 \begin_layout Subsection
2431 subtitle.get: Read a subtitle
2434 \begin_layout Itemize
2435 Syntax: string subtitle.get(number f, number l)
2438 \begin_layout Standard
2439 Get the text of subtitle.
2442 \begin_layout Subsection
2443 subtitle.delete: Delete a subtitle
2446 \begin_layout Itemize
2447 Syntax: nonesubtitle.delete(number f, number l)
2450 \begin_layout Standard
2451 Delete specified subtitle.
2454 \begin_layout Standard
2455 \begin_inset Newpage pagebreak
2461 \begin_layout Section
2465 \begin_layout Standard
2466 Host memory handling (extra memory saved to savestates).
2467 Host memory starts empty.
2470 \begin_layout Itemize
2471 Reads out of range return false.
2474 \begin_layout Itemize
2475 Writes out of range extend the memory.
2478 \begin_layout Subsection
2479 hostmemory.read: Read byte from host memory
2482 \begin_layout Itemize
2483 Syntax: number hostmemory.read(number address)
2486 \begin_layout Standard
2487 Reads byte from hostmemory slot address <address>.
2490 \begin_layout Subsection
2491 hostmemory.write: Write byte to host memory
2494 \begin_layout Itemize
2495 Syntax: none hostmemory.write(number address, number value)
2498 \begin_layout Standard
2499 Writes hostmemory slot with value <value> 0-255.
2502 \begin_layout Subsection
2503 hostmemory.read{,s}{byte,{,h,d,q}word}: Read from host memory
2506 \begin_layout Itemize
2507 Syntax: number hostmemory.readbyte(number address)
2510 \begin_layout Itemize
2511 Syntax: number hostmemory.readsbyte(number address)
2514 \begin_layout Itemize
2515 Syntax: number hostmemory.readword(number address)
2518 \begin_layout Itemize
2519 Syntax: number hostmemory.readsword(number address)
2522 \begin_layout Itemize
2523 Syntax: number hostmemory.readhword(number address)
2526 \begin_layout Itemize
2527 Syntax: number hostmemory.readshword(number address)
2530 \begin_layout Itemize
2531 Syntax: number hostmemory.readdword(number address)
2534 \begin_layout Itemize
2535 Syntax: number hostmemory.readsdword(number address)
2538 \begin_layout Itemize
2539 Syntax: number hostmemory.readqword(number address)
2542 \begin_layout Itemize
2543 Syntax: number hostmemory.readsqword(number address)
2546 \begin_layout Standard
2547 Read elements (big-endian) from given address <address>.
2550 \begin_layout Itemize
2554 \begin_layout Itemize
2558 \begin_layout Itemize
2562 \begin_layout Itemize
2566 \begin_layout Itemize
2567 qword is 8 elements.
2570 \begin_layout Itemize
2571 The 's' variants do signed read.
2574 \begin_layout Subsection
2575 hostmemory.read{float,double}: Read from host memory
2578 \begin_layout Itemize
2579 syntax: number hostmemory.readfloat(number address)
2582 \begin_layout Itemize
2583 Syntax: number hostmemory.readdouble(number address)
2586 \begin_layout Standard
2587 Read elements (big-endian) floating-pont from given address <address>.
2590 \begin_layout Subsection
2591 hostmemory.write{,s}{byte,{,h,d,q}word}: Write to host memory
2594 \begin_layout Itemize
2595 Syntax: number hostmemory.writebyte(number address, number value)
2598 \begin_layout Itemize
2599 Syntax: number hostmemory.writesbyte(number address, number value)
2602 \begin_layout Itemize
2603 Syntax: number hostmemory.writeword(number address, number value)
2606 \begin_layout Itemize
2607 Syntax: number hostmemory.writesword(number address, number value)
2610 \begin_layout Itemize
2611 Syntax: number hostmemory.writehword(number address, number value)
2614 \begin_layout Itemize
2615 Syntax: number hostmemory.writeshword(number address, number value)
2618 \begin_layout Itemize
2619 Syntax: number hostmemory.writedword(number address, number value)
2622 \begin_layout Itemize
2623 Syntax: number hostmemory.writesdword(number address, number value)
2626 \begin_layout Itemize
2627 Syntax: number hostmemory.writeqword(number address, number value)
2630 \begin_layout Itemize
2631 Syntax: number hostmemory.writesqword(number address, number value)
2634 \begin_layout Standard
2635 Write value <value> to elements (little-endian) starting from given address
2639 \begin_layout Itemize
2643 \begin_layout Itemize
2647 \begin_layout Itemize
2651 \begin_layout Itemize
2655 \begin_layout Itemize
2656 qword is 8 elements.
2659 \begin_layout Itemize
2660 The 's' variants do signed write.
2663 \begin_layout Subsection
2664 hostmemory.write{float,double}: Write to host memory
2667 \begin_layout Itemize
2668 syntax: none hostmemory.readfloat(number address, number value)
2671 \begin_layout Itemize
2672 Syntax: none hostmemory.readdouble(number address, number value)
2675 \begin_layout Standard
2676 Write elements (big-endian) floating-pont to given address <address>, storing
2680 \begin_layout Standard
2681 \begin_inset Newpage pagebreak
2687 \begin_layout Section
2691 \begin_layout Standard
2695 \begin_layout Subsection
2696 movie.currentframe: Get current frame number
2699 \begin_layout Itemize
2700 Syntax: number movie.currentframe()
2703 \begin_layout Standard
2704 Return number of current frame.
2707 \begin_layout Subsection
2708 movie.framecount: Get move frame count
2711 \begin_layout Itemize
2712 Syntax: number movie.framecount()
2715 \begin_layout Standard
2716 Return number of frames in movie.
2719 \begin_layout Subsection
2720 movie.readonly: Is in readonly mode?
2723 \begin_layout Itemize
2724 Syntax: boolean movie.readonly()
2727 \begin_layout Standard
2728 Return true if in readonly mode, false if in readwrite.
2731 \begin_layout Subsection
2732 movie.rerecords: Movie rerecord count
2735 \begin_layout Itemize
2736 Syntax: number movie.rerecords()
2739 \begin_layout Standard
2740 Returns the current value of rerecord count.
2743 \begin_layout Subsection
2744 movie.set_readwrite: Set read-write mode.
2747 \begin_layout Itemize
2748 Syntax: none movie.set_readwrite()
2751 \begin_layout Standard
2752 Set readwrite mode (does not cause on_readwrite callback).
2755 \begin_layout Subsection
2756 movie.frame_subframes: Count subframes in frame
2759 \begin_layout Itemize
2760 Syntax: number movie.frame_subframes(number frame)
2763 \begin_layout Standard
2764 Count number of subframes in specified frame <frame> (frame numbers are
2765 1-based) and return that.
2768 \begin_layout Subsection
2769 movie.read_subframes: Read subframe data (deprecated)
2772 \begin_layout Itemize
2773 Syntax: table movie.read_subframes(number frame, number subframe)
2776 \begin_layout Standard
2777 Read specifed subframe in specified frame and return data as array.
2780 \begin_layout Subsection
2781 movie.read_rtc: Read current RTC time
2784 \begin_layout Itemize
2785 Syntax: (number, number) movie.read_rtc()
2788 \begin_layout Standard
2789 Returns the current value of the RTC as a pair (second, subsecond).
2792 \begin_layout Subsection
2793 movie.unsafe_rewind: Fast movie rewind to saved state
2796 \begin_layout Itemize
2797 Syntax: none movie.unsafe_rewind([UNSAFEREWIND state])
2800 \begin_layout Standard
2801 Start setting point for unsafe rewind or jump to point of unsafe rewind.
2804 \begin_layout Itemize
2805 If called without argument, causes emulator to start process of setting
2806 unsafe rewind point.
2807 When this has finished, callback on_set_rewind occurs, passing the rewind
2808 state to lua script.
2811 \begin_layout Itemize
2812 If called with argument, causes emulator rewind to passed rewind point as
2814 Readwrite mode is implicitly activated.
2817 \begin_layout Standard
2818 The following warnings apply to unsafe rewinding:
2821 \begin_layout Itemize
2822 There are no safety checks against misuse (that's what
2823 \begin_inset Quotes eld
2827 \begin_inset Quotes erd
2833 \begin_layout Itemize
2834 Only call rewind from timeline rewind point was set from.
2837 \begin_layout Itemize
2838 Only call rewind from after the rewind point was set.
2841 \begin_layout Subsection
2842 movie.to_rewind: Load savestate as rewind point
2845 \begin_layout Itemize
2846 Syntax: UNSAFEREWIND movie.to_rewind(string filename)
2849 \begin_layout Standard
2850 Load specified savestate file <filename> as rewind point and return UNSAFEREWIND
2851 corresponding to it.
2854 \begin_layout Itemize
2855 Note: This operation does not take emulated time.
2858 \begin_layout Subsection
2859 movie.copy_movie/INPUTMOVIE::copy_movie: Copy movie to movie object
2862 \begin_layout Itemize
2863 Syntax: INPUTMOVIE movie.copy_movie([INPUTMOVIE movie])
2866 \begin_layout Itemize
2867 Syntax: INPUTMOVIE INPUTMOVIE::copy_movie()
2870 \begin_layout Standard
2871 Copies specified movie <movie>/current object (if none or nil, the active
2872 movie) as new movie object.
2875 \begin_layout Subsection
2876 movie.get_frame/INPUTMOVIE::get_frame: Read specified frame in movie.
2879 \begin_layout Itemize
2880 Syntax: INPUTFRAME movie.get_frame([INPUTMOVIE movie,] number frame)
2883 \begin_layout Itemize
2884 Syntax: INPUTFRAME INPUTMOVIE::get_frame(number frame);
2887 \begin_layout Standard
2888 Get INPUTFRAME object corresponding to specified frame in specified movie.
2891 \begin_layout Subsection
2892 movie.set_frame/INPUTMOVIE::set_frame: Write speicifed frame in movie.
2895 \begin_layout Itemize
2896 Syntax: none movie.set_frame([INPUTMOVIE movie,] number frame, INPUTFRAME
2900 \begin_layout Itemize
2901 Syntax: none INPUTMOVIE::set_frame(number frame, INPUTFRAME data)
2904 \begin_layout Standard
2905 Set data in specified frame.
2908 \begin_layout Itemize
2909 Note: Past can't be edited in active movie.
2912 \begin_layout Subsection
2913 movie.get_size/INPUTMOVIE::get_size: Get size of movie
2916 \begin_layout Itemize
2917 Syntax: integer movie.get_size([INPUTMOVIE movie])
2920 \begin_layout Itemize
2921 Syntax: integer INPUTMOVIE::get_size()
2924 \begin_layout Standard
2925 Return number of subframes in specified movie.
2928 \begin_layout Subsection
2929 movie.count_frames/INPUTMOVIE::count_frames: Count frames in movie
2932 \begin_layout Itemize
2933 Syntax: number movie.count_frames([INPUTMOVIE movie])
2936 \begin_layout Itemize
2937 Syntax: number INPUTMOVIE::count_frames()
2940 \begin_layout Standard
2941 Return number of frames in movie.
2944 \begin_layout Subsection
2945 movie.find_frame/INPUTMOVIE::find_frame: Find subframe corresponding to frame
2948 \begin_layout Itemize
2949 Syntax: number movie.find_frame([INPUTMOVIE movie], number frame)
2952 \begin_layout Itemize
2953 Syntax: number INPUTMOVIE::find_frame(number frame)
2956 \begin_layout Standard
2957 Returns starting subframe of given frame (frame numbers are 1-based).
2958 Returns -1 if frame number is bad.
2961 \begin_layout Subsection
2962 movie.blank_frame/INPUTMOVIE::blank_frame: Return a blank frame
2965 \begin_layout Itemize
2966 Syntax: INPUTFRAME movie.blank_frame([INPUTMOVIE movie])
2969 \begin_layout Itemize
2970 Syntax: INPUTFRAME INPUTMOVIE::blank_frame()
2973 \begin_layout Standard
2974 Return blank INPUTFRAME with frame type from specified movie.
2977 \begin_layout Subsection
2978 movie.append_frames/INPUTMOVIE::append_frames: Append blank frames
2981 \begin_layout Itemize
2982 Syntax: none movie.append_frames([INPUTMOVIE movie,] number frames)
2985 \begin_layout Itemize
2986 Syntax: none INPUTMOVIE::append_frames(number frames)
2989 \begin_layout Standard
2990 Append specified number <frames> of frames.
2993 \begin_layout Subsection
2994 movie.append_frame/INPUTMOVIE::append_frame: Append a frame
2997 \begin_layout Itemize
2998 Syntax: none movie.append_frame([INPUTMOVIE movie,] INPUTFRAME frame)
3001 \begin_layout Itemize
3002 Syntax: none INPUTMOVIE::append_frame(INPUTFRAME frame)
3005 \begin_layout Standard
3006 Append specified frame <frame>.
3007 Past of current movie can't be edited.
3010 \begin_layout Subsection
3011 movie.truncate/INPUTMOVIE::truncate: Truncate a movie.
3014 \begin_layout Itemize
3015 Syntax: none movie.truncate([INPUTMOVIE movie,] number frames)
3018 \begin_layout Itemize
3019 Syntax: none INPUTMOVIE::truncate(number frames)
3022 \begin_layout Standard
3023 Truncate the specified movie to specified number of frames.
3026 \begin_layout Subsection
3027 movie.edit/INPUTMOVIE::edit: Edit a movie
3030 \begin_layout Itemize
3031 Syntax: none movie.edit([INPUTMOVIE movie,] number frame, number port, number
3032 controller, number control, number/bool value)
3035 \begin_layout Itemize
3036 Syntax: none INPUTMOVIE::edit(number frame, number port, number controller,
3037 number control, number/bool value)
3040 \begin_layout Standard
3041 Change specified control in specified frame in specified movie.
3042 Past can't be edited in active movie.
3045 \begin_layout Subsection
3046 movie.copy_frames2: Copy frames between movies
3049 \begin_layout Itemize
3050 Syntax: none movie.copy_frames2([INPUTMOVIE dstmov,] number dst, [INPUTMOVIE
3051 srcmov,] number src, number count)
3054 \begin_layout Standard
3055 Copy specified number of frames between two movies.
3056 The copy proceeeds in forward direction.
3059 \begin_layout Subsection
3060 movie.copy_frames/INPUTMOVIE::copy_frames: Copy frames in movie
3063 \begin_layout Itemize
3064 Syntax: none movie.copy_frames([INPUTMOVIE mov,] number dst, number src,
3065 number count, bool backwards)
3068 \begin_layout Itemize
3069 Syntax: none INPUTMOVIE::copy_frames(number dst, number src, number count,
3073 \begin_layout Standard
3074 Copy specified number of frames from one point in movie to another.
3075 If backwards is true, the copy will be done backwards.
3078 \begin_layout Subsection
3079 movie.serialize/INPUTMOVIE::serialize: Serialize movie
3082 \begin_layout Itemize
3083 Syntax: none movie.serialize([INPUTMOVIE movie,] string filename, bool binary)
3086 \begin_layout Itemize
3087 Syntax: none INPUTMOIVE::serialize(string filename, bool binary)
3090 \begin_layout Standard
3091 Serialize given movie into file.
3092 If binary is true, binary format (more compact and much faster) is used.
3095 \begin_layout Subsection
3096 movie.unserialize: Unserialize movie
3099 \begin_layout Itemize
3100 Syntax: INPUTMOVIE movie.unserialize(INPUTFRAME template, string filename,
3104 \begin_layout Standard
3105 Unserialize movie from file.
3106 The given frame is used as template to decide the frame type.
3107 If binary is true, binary format is decoded (much faster).
3110 \begin_layout Subsection
3111 movie.current_first_subframe: Return first subframe in current frame
3114 \begin_layout Itemize
3115 Syntax: number movie.current_first_subframe()
3118 \begin_layout Standard
3119 Returns first subframe in current frame.
3122 \begin_layout Subsection
3123 movie.pollcounter: Return poll counter for speified control
3126 \begin_layout Itemize
3127 Syntax: number movie.pollcounter(number port, number controller, number control)
3130 \begin_layout Standard
3131 Returns number of times the specified control has been polled this frame.
3134 \begin_layout Subsection
3135 INPUTFRAME::get_button: Get button
3138 \begin_layout Itemize
3139 Syntax: boolean INPUTFRAME::get_button(number port, number controller, number
3143 \begin_layout Standard
3144 Returns state of given button as boolean.
3147 \begin_layout Subsection
3148 INPUTFRAME::get_axis: Get axis
3151 \begin_layout Itemize
3152 Syntax: number INPUTFRAME::get_axis(number port, number controller, number
3156 \begin_layout Standard
3157 Returns state of given axis as number.
3160 \begin_layout Subsection
3161 INPUTFRAME::set_button/INPUTFRAME::set_axis: Set button or axis
3164 \begin_layout Itemize
3165 Syntax: none INPUTFRAME::set_button(number port, number controller, number
3166 control, number/bool value)
3169 \begin_layout Itemize
3170 Syntax: none INPUTFRAME::set_axis(number port, number controller, number
3174 \begin_layout Standard
3175 Set the given button/axis to given value.
3178 \begin_layout Subsection
3179 INPUTFRAME::serialize: Serialize a frame
3182 \begin_layout Itemize
3183 Syntax: string INPUTFRAME::serialize()
3186 \begin_layout Standard
3187 Return string representation of frame.
3190 \begin_layout Subsection
3191 INPUTFRAME::unserialize: Unserialize a frame
3194 \begin_layout Itemize
3195 Syntax: none INPUTFRAME::unserialize(string data)
3198 \begin_layout Standard
3199 Set current frame from given data.
3202 \begin_layout Subsection
3203 INPUTFRAME::get_stride: Get movie stride
3206 \begin_layout Itemize
3207 Syntax: number INPUTFRAME::get_stride()
3210 \begin_layout Standard
3211 Return number of bytes needed to store the input frame.
3212 Mainly useful for some debugging.
3215 \begin_layout Standard
3216 \begin_inset Newpage pagebreak
3222 \begin_layout Section
3226 \begin_layout Standard
3227 Routines for settings manipulation
3230 \begin_layout Subsection
3231 settings.get: Get value of setting
3234 \begin_layout Itemize
3235 Syntax: string settings.get(string name)
3238 \begin_layout Standard
3239 Get value of setting <name>.
3240 If setting value can't be obtained, returns (nil, error message).
3243 \begin_layout Subsection
3244 settings.set: Set value of setting
3247 \begin_layout Itemize
3248 Syntax: none settings.set(string name, string value)
3251 \begin_layout Standard
3252 Set value <value> of setting <name>.
3253 If setting can't be set, returns (nil, error message).
3256 \begin_layout Standard
3257 \begin_inset Newpage pagebreak
3263 \begin_layout Section
3267 \begin_layout Standard
3268 Contains various functions for managing memory
3271 \begin_layout Subsection
3272 memory.vma_count: Count number of VMAs.
3275 \begin_layout Itemize
3276 Syntax: number memory.vma_count()
3279 \begin_layout Standard
3280 Returns the number of VMAs
3283 \begin_layout Subsection
3284 memory.read_vma: Lookup VMA info by index
3287 \begin_layout Itemize
3288 Syntax: string memory.read_vma(number index)
3291 \begin_layout Standard
3292 Reads the specified VMA (indices start from zero).
3293 Trying to read invalid VMA gives nil.
3294 The read VMA is table with the following fields:
3297 \begin_layout Itemize
3298 region_name (string): The readable name of the VMA
3301 \begin_layout Itemize
3302 baseaddr (number): Base address of the VMA
3305 \begin_layout Itemize
3306 lastaddr (number): Last address in the VMA.
3309 \begin_layout Itemize
3310 size (number): The size of VMA in bytes.
3313 \begin_layout Itemize
3314 readonly (boolean): True of the VMA corresponds to ROM.
3317 \begin_layout Itemize
3318 iospace (boolean): True if the VMA is I/O space.
3321 \begin_layout Itemize
3322 native_endian (boolean): True if the VMA has native endian as opposed to
3326 \begin_layout Subsection
3327 memory.find_vma: Find VMA info by address
3330 \begin_layout Itemize
3331 Syntax: table memory.find_vma(number address)
3334 \begin_layout Standard
3335 Finds the VMA containing specified address.
3336 Returns table in the same format as read_vma or nil if not found.
3339 \begin_layout Subsection
3340 memory.read{,s}{byte,{,h,d,q}word}: Read memory
3343 \begin_layout Itemize
3344 Syntax: none memory.readbyte([string vma, ]number address)
3347 \begin_layout Itemize
3348 Syntax: none memory.readword([string vma, ]number address)
3351 \begin_layout Itemize
3352 Syntax: none memory.readhword([string vma, ]number address)
3355 \begin_layout Itemize
3356 Syntax: none memory.readdword([string vma, ]number address)
3359 \begin_layout Itemize
3360 Syntax: none memory.readqword([string vma, ]number address)
3363 \begin_layout Itemize
3364 Syntax: none memory.readsbyte([string vma, ]number address)
3367 \begin_layout Itemize
3368 Syntax: none memory.readsword([string vma, ]number address)
3371 \begin_layout Itemize
3372 Syntax: none memory.readshword([string vma, ]number address)
3375 \begin_layout Itemize
3376 Syntax: none memory.readsdword([string vma, ]number address)
3379 \begin_layout Itemize
3380 Syntax: none memory.readsqword([string vma, ]number address)
3383 \begin_layout Standard
3384 Reads the specified address <address> (if 's' variant is used, do undergo
3388 \begin_layout Subsection
3389 memory.{,s}read_sg: Scatter/Gather read memory
3392 \begin_layout Itemize
3393 Syntax: none memory.read_sg(string/boolean/number...)
3396 \begin_layout Itemize
3397 Syntax: none memory.sread_sg(string/boolean/number...)
3400 \begin_layout Standard
3401 Perform (2s complement signed if using memory.sread_sg) scatter/gather read
3403 Each argument can be string, boolean or number:
3406 \begin_layout Itemize
3407 String: Set VMA addresses are relative to (e.g.
3411 \begin_layout Itemize
3412 boolean: If true, increment relative address by 1, if false, decrement by
3414 The new address is read as next higher byte.
3417 \begin_layout Itemize
3418 integer: Set the relative address to specified value and read the address
3419 as next higher byte.
3422 \begin_layout Subsection
3423 memory.write_sg: Scatter/Gather write memory
3426 \begin_layout Itemize
3427 Syntax: none memory.write_sg(number value, string/boolean/number...)
3430 \begin_layout Standard
3431 Perform scatter/gather write of value <value> on memory.
3432 Each argument can be string, boolean or number:
3435 \begin_layout Itemize
3436 String: Set VMA addresses are relative to (e.g.
3440 \begin_layout Itemize
3441 boolean: If true, increment relative address by 1, if false, decrement by
3443 The new address is read as next higher byte.
3446 \begin_layout Itemize
3447 integer: Set the relative address to specified value and read the address
3448 as next higher byte.
3451 \begin_layout Subsection
3452 memory.read{float,double}: Read memory
3455 \begin_layout Itemize
3456 Syntax: none memory.readfloat([string vma, ]number address)
3459 \begin_layout Itemize
3460 Syntax: none memory.readdouble([string vma, ]number address)
3463 \begin_layout Standard
3464 Reads the specified address <address>
3467 \begin_layout Subsection
3468 memory.write{byte,{,h,d,q}word,float,double}: Write memory
3471 \begin_layout Itemize
3472 Syntax: none memory.writebyte([string vma, ]number address, number value)
3475 \begin_layout Itemize
3476 Syntax: none memory.writeword([string vma, ]number address, number value)
3479 \begin_layout Itemize
3480 Syntax: none memory.writehword([string vma, ]number address, number value)
3483 \begin_layout Itemize
3484 Syntax: none memory.writedword([string vma, ]number address, number value)
3487 \begin_layout Itemize
3488 Syntax: none memory.writeqword([string vma, ]number address, number value)
3491 \begin_layout Itemize
3492 Syntax: none memory.writefloat([string vma, ]number address, number value)
3495 \begin_layout Itemize
3496 Syntax: none memory.writedouble([string vma, ]number address, number value)
3499 \begin_layout Standard
3500 Writes the specified value <value> (negative integer values undergo 2's
3501 complement) to specified address <address>.
3504 \begin_layout Subsection
3505 memory.map{{,s}{byte,{,h,d,q}word},float,double}: Map an array
3508 \begin_layout Itemize
3509 Syntax: userdata memory.map<type>([[string vma, ]number base, number size])
3512 \begin_layout Standard
3513 Returns a table mapping specified memory aperture for read/write.
3514 If parameters are omitted, entiere map space is the aperture.
3517 \begin_layout Itemize
3518 Type may be one of: byte, sbyte, word, sword, hword, shword, dword, sdword,
3519 qword, sqword, float or double.
3522 \begin_layout Subsection
3523 memory.hash_region: Hash region of memory
3526 \begin_layout Itemize
3527 Syntax: string memory.hash_region([string vma, ]number base, number size)
3530 \begin_layout Standard
3531 Hash specified number of bytes starting from specified address and return
3535 \begin_layout Subsection
3536 memory.hash_state: Hash system state
3539 \begin_layout Itemize
3540 Syntax: string memory.hash_state()
3543 \begin_layout Standard
3544 Hash the current system state.
3545 Mainly useful for debugging savestates.
3548 \begin_layout Subsection
3549 memory.readregion: Read region of memory
3552 \begin_layout Itemize
3553 Syntax: table memory.readregion([string vma, ]number base, number size)
3556 \begin_layout Standard
3557 Read a region of memory.
3560 \begin_layout Itemize
3561 Warning: If the region crosses VMA boundary, the results are undefined.
3564 \begin_layout Subsection
3565 memory.writeregion: Write region of memory
3568 \begin_layout Itemize
3569 Syntax: none memory.writeregion([string vma, ]number base, number size, table
3573 \begin_layout Standard
3574 Write a region of memory.
3577 \begin_layout Itemize
3578 Warning: If the region crosses VMA boundary, the results are undefined.
3581 \begin_layout Subsection
3582 memory.map_structure: Create mmap structure
3585 \begin_layout Itemize
3586 syntax: MMAP_STRUCT memory.map_structure()
3589 \begin_layout Standard
3590 Returns a new mapping structure (MMAP_STRUCT)
3593 \begin_layout Subsection
3594 MMAP_STRUCT(): Bind key in mmap structure
3597 \begin_layout Itemize
3598 Syntax: none MMAP_STRUCT(string key, [string vma, ]number address, string
3602 \begin_layout Standard
3603 Bind key <key> in mmap structure to specified address <address> with specified
3607 \begin_layout Itemize
3608 Type may be one of: byte, sbyte, word, sword, hword, shword, dword, sdword,
3609 qword, sqword, float or double.
3612 \begin_layout Subsection
3613 memory.read_expr: Evaluate memory watch expression
3616 \begin_layout Itemize
3617 Syntax: string memory.read_expr(string expr)
3620 \begin_layout Standard
3621 Evaluate specified watch expression and return result
3624 \begin_layout Subsection
3625 memory.action: Run core action
3628 \begin_layout Itemize
3629 memory.action(string action, [<params>])
3632 \begin_layout Standard
3634 The different models expect parameters as:
3637 \begin_layout Itemize
3641 \begin_layout Itemize
3645 \begin_layout Itemize
3649 \begin_layout Itemize
3653 \begin_layout Itemize
3657 \begin_layout Subsection
3658 memory.get_lag_flag: Get lag flag
3661 \begin_layout Itemize
3662 Syntax: boolean memory.get_lag_flag()
3665 \begin_layout Standard
3666 Get the value of core lag flag.
3667 True if this frame has been lag so far, false if poll has been detected.
3670 \begin_layout Subsection
3671 memory.set_lag_flag: Set lag flag
3674 \begin_layout Itemize
3675 Syntax: none memory.set_lag_flag(boolean flag)
3678 \begin_layout Standard
3679 Set the value of core lag flag.
3680 This flag automatically gets cleared if poll is detected, but can be forcibly
3681 set or cleared if game so requires.
3684 \begin_layout Itemize
3685 Should only be used in on_frame_emulated callback.
3688 \begin_layout Itemize
3689 Setting or clearing this affects the emulator lag counter.
3692 \begin_layout Standard
3693 \begin_inset Newpage pagebreak
3699 \begin_layout Section
3703 \begin_layout Standard
3704 Contains newer memory functions.
3707 \begin_layout Subsection
3708 memory2(): Get all VMA names.
3711 \begin_layout Itemize
3712 Syntax: table memory2()
3715 \begin_layout Standard
3716 Returns array of all valid VMA names.
3719 \begin_layout Subsection
3720 memory2.<vma>:info: Get VMA info
3723 \begin_layout Itemize
3724 Syntax: table memory2.<vma>:info()
3727 \begin_layout Standard
3728 Return table describing given VMA.
3729 Includes fields address, size, last, readonly, special and endian.
3732 \begin_layout Subsection
3733 memory2.<vma>:<op>: Read/Write memory
3736 \begin_layout Itemize
3737 Syntax: none memory2.<vma>:<op>(number offset, number value)
3740 \begin_layout Itemize
3741 Syntax: number memory2.<vma>:<op>(number offset)
3744 \begin_layout Standard
3745 Read/Write value from/to given VMA <vma> at given offset <offset> (must
3747 The value written is <value>.
3748 <Op> is of form: [i][s]<type>, where:
3751 \begin_layout Itemize
3752 <type> is one of 'byte', 'word', 'hword', 'dword', 'qword', 'float', 'double'.
3755 \begin_layout Itemize
3756 'i' signifies that the value is treated as opposite-to-normal endianess,
3759 \begin_layout Itemize
3760 's' signifies that value is treated as signed (not available for floating-point).
3763 \begin_layout Subsection
3764 memory2.<vma>:read: Scatter-gather value read
3767 \begin_layout Itemize
3768 Syntax: number memory2.<vma>:read(number addr...)
3771 \begin_layout Standard
3772 Read value from given VMA <vma> at byte offsets <addr>..., given in order of
3773 increasing significance.
3774 Value of true and false are special.
3775 True increments address by 1, and false decrements address by 1.
3778 \begin_layout Subsection
3779 memory2.<vma>:sread: Signed scatter-gather value read
3782 \begin_layout Itemize
3783 Syntax: number memory2.<vma>:sread(number addr...)
3786 \begin_layout Standard
3787 Like memory2.<vma>:read, but reads signed values.
3790 \begin_layout Subsection
3791 memory2.<vma>:write: Scatter-gather value write
3794 \begin_layout Itemize
3795 Syntax: number memory2.<vma>:write(number val, number addr...)
3798 \begin_layout Standard
3799 Write value <val> to given VMA <vma> at byte offsets <addr>..., given in order
3800 of increasing significance.
3801 Value of true and false are special.
3802 True increments address by 1, and false decrements address by 1.
3805 \begin_layout Standard
3806 \begin_inset Newpage pagebreak
3812 \begin_layout Section
3816 \begin_layout Standard
3817 Various callback-related functions.
3820 \begin_layout Subsection
3821 \begin_inset CommandInset label
3823 name "sub:callback.register:-Register-a"
3827 callback.register: Register a callback
3830 \begin_layout Itemize
3831 Syntax: function callback.register(string cbname, function cbfun);
3834 \begin_layout Standard
3835 Instruct function <cbfun> to be added to list of callbacks to call on event
3836 <cbname> (See section
3837 \begin_inset CommandInset ref
3839 reference "sec:Callbacks"
3844 The callback name does not have the 'on_' prefix (e.g.
3846 \begin_inset Quotes eld
3850 \begin_inset Quotes erd
3857 \begin_layout Subsection
3858 \begin_inset CommandInset label
3860 name "sub:callback.unregister:-Unregister-"
3864 callback.unregister: Unregister a callback
3867 \begin_layout Itemize
3868 Syntax: function callback.unregister(string cbname, function cbfun);
3871 \begin_layout Standard
3872 Instruct function <cbfun> to be removed from list of callbacks to call on
3876 \begin_layout Subsection
3877 callback.<cbname>:register: Register callback
3880 \begin_layout Itemize
3881 Syntax: function callback.<cbname>:register(function cbfun)
3884 \begin_layout Standard
3885 Synonym for callback.register (section
3886 \begin_inset CommandInset ref
3888 reference "sub:callback.register:-Register-a"
3892 ), albeit with callback name specified differently.
3895 \begin_layout Subsection
3896 callback.<cbname>:unregister: Register callback
3899 \begin_layout Itemize
3900 Syntax: function callback.<cbname>:unregister(function cbfun)
3903 \begin_layout Standard
3904 Synonym for callback.unregister (section
3905 \begin_inset CommandInset ref
3907 reference "sub:callback.unregister:-Unregister-"
3911 ), albeit with callback name specified differently.
3914 \begin_layout Section
3918 \begin_layout Standard
3919 Various bsnes-specific functions.
3922 \begin_layout Subsection
3923 bsnes.dump_sprite: Dump a sprite
3926 \begin_layout Itemize
3927 Syntax: BITMAP bsnes.dump_sprite([string vma, ] number addr, number width,
3928 number height[, number stride])
3931 \begin_layout Standard
3932 Dumps given sprite (in native format) from memory.
3934 \begin_inset Quotes eld
3938 \begin_inset Quotes erd
3942 <Width> and <height> are given in 8x8 blocks.
3943 <Stride> overrides row stride (default 512).
3946 \begin_layout Subsection
3947 bsnes.dump_palette: Dump a palette
3950 \begin_layout Itemize
3951 Syntax: PALETTE bsnes.dump_palette([string vma, ] number addr, bool full256,
3955 \begin_layout Standard
3956 Dumps a palette from memory.
3958 \begin_inset Quotes eld
3962 \begin_inset Quotes erd
3966 If <full256> is true, 256 colors are dumped (otherwise 16).
3967 If <first_trans> is true, first color is forced transparent.
3970 \begin_layout Section
3974 \begin_layout Standard
3975 Contains copy of global variables from time of Lua initialization.
3979 \begin_layout Standard
3980 \begin_inset Newpage pagebreak
3986 \begin_layout Section
3987 \begin_inset CommandInset label
3989 name "sec:Callbacks"
3996 \begin_layout Standard
3997 Various callbacks to Lua that can occur.
4000 \begin_layout Subsection
4001 on_paint: Screen is being painted
4004 \begin_layout Itemize
4005 Callback: on_paint(bool not_synth)
4008 \begin_layout Standard
4009 Called when screen is being painted.
4010 Any gui.* calls requiring graphic context draw on the screen.
4013 \begin_layout Itemize
4014 not_synth is true if this hook is being called in response to received frame,
4018 \begin_layout Subsection
4019 on_video: Dumped video frame is being painted
4022 \begin_layout Itemize
4023 Callback: on_video()
4026 \begin_layout Standard
4027 Called when video dump frame is being painted.
4028 Any gui.* calls requiring graphic context draw on the video.
4031 \begin_layout Subsection
4032 on_frame_emulated: Frame emulation complete
4035 \begin_layout Itemize
4036 Callback: on_frame_emulated()
4039 \begin_layout Standard
4040 Called when emulating frame has completed and on_paint()/on_video() calls
4041 are about to be issued.
4044 \begin_layout Subsection
4045 on_frame: Frame emulation starting.
4048 \begin_layout Itemize
4049 Callback: on_frame()
4052 \begin_layout Standard
4053 Called on each starting whole frame.
4056 \begin_layout Subsection
4057 on_startup: Emulator startup complete
4060 \begin_layout Itemize
4061 Callback: on_startup()
4064 \begin_layout Standard
4065 Called when the emulator is starting (lsnes.rc and --run files has been run).
4068 \begin_layout Subsection
4069 on_rewind: Movie rewound to beginning
4072 \begin_layout Itemize
4073 Callback: on_rewind()
4076 \begin_layout Standard
4077 Called when rewind movie to beginning has completed.
4080 \begin_layout Subsection
4081 on_pre_load: Load operation is about to start
4084 \begin_layout Itemize
4085 Callback: on_pre_load(string name)
4088 \begin_layout Standard
4089 Called just before savestate/movie load occurs (note: loads are always delayed,
4090 so this occurs even when load was initiated by lua).
4093 \begin_layout Subsection
4094 on_err_Load: Load failed
4097 \begin_layout Itemize
4098 Callback: on_err_load(string name)
4101 \begin_layout Standard
4102 Called if loadstate goes wrong.
4105 \begin_layout Subsection
4106 on_post_load: Load completed
4109 \begin_layout Itemize
4110 Callback: on_post_load(string name, boolean was_savestate)
4113 \begin_layout Standard
4114 Called on successful loadstate.
4115 was_savestate gives if this was a savestate or a movie.
4118 \begin_layout Subsection
4119 on_pre_save: Save operation is about to start
4122 \begin_layout Itemize
4123 Callback: on_pre_save(string name, boolean is_savestate)
4126 \begin_layout Standard
4127 Called just before savestate save occurs (note: movie saves are synchronous
4128 and won't trigger these callbacks if called from Lua).
4131 \begin_layout Subsection
4132 on_err_save: Save failed
4135 \begin_layout Itemize
4136 Callback: on_err_save(string name)
4139 \begin_layout Standard
4140 Called if savestate goes wrong.
4143 \begin_layout Subsection
4144 on_post_save: Save completed
4147 \begin_layout Itemize
4148 Callback: on_post_save(string name, boolean is_savestate)
4151 \begin_layout Standard
4152 Called on successful savaestate.
4153 is_savestate gives if this was a savestate or a movie.
4156 \begin_layout Subsection
4157 on_quit: Emulator is shutting down
4160 \begin_layout Itemize
4164 \begin_layout Standard
4165 Called when emulator is shutting down.
4168 \begin_layout Subsection
4169 on_input: Polling for input
4172 \begin_layout Standard
4173 Called when emulator is just sending input to bsnes core.
4174 Warning: This is called even in readonly mode, but the results are ignored.
4177 \begin_layout Subsection
4178 on_reset: System has been reset
4181 \begin_layout Itemize
4182 Callback: on_reset()
4185 \begin_layout Standard
4186 Called when system is reset.
4189 \begin_layout Subsection
4190 on_readwrite: Entered readwrite mode
4193 \begin_layout Itemize
4194 Callback: on_readwrite()
4197 \begin_layout Standard
4198 Called when moving into readwrite mode as result of
4199 \begin_inset Quotes eld
4203 \begin_inset Quotes erd
4206 command (note: moving to rwmode by Lua won't trigger this, as per recursive
4210 \begin_layout Subsection
4211 on_snoop/on_snoop2: Snoop core controller reads
4214 \begin_layout Itemize
4215 Callback: on_snoop(number port, number controller, number index, number
4219 \begin_layout Itemize
4220 Callback: on_snoop2(number port, number controller, number index, number
4224 \begin_layout Standard
4225 Called each time bsnes asks for input.
4226 The value is the final value to be sent to bsnes core (readonly mode, autohold
4227 and autofire have been taken into account).
4228 Might be useful when translating movies to format suitable for console
4230 Note: There is no way to modify the value to be sent.
4233 \begin_layout Itemize
4234 On_snoop2 is called instead of on_snoop if defined.
4235 Reserves port 0 for system, having first user port be port 1.
4238 \begin_layout Subsection
4239 on_keyhook: Hooked key/axis has been moved
4242 \begin_layout Itemize
4243 Callback: on_keyhook(string keyname, table state)
4246 \begin_layout Standard
4247 Sent when key that has keyhook events requested changes state.
4248 Keyname is name of the key (group) and state is the state (same kind as
4249 table values in input.raw).
4252 \begin_layout Subsection
4256 \begin_layout Itemize
4260 \begin_layout Standard
4261 Called when requested by set_idle_timeout(), the timeout has expired and
4262 emulator is waiting.
4265 \begin_layout Subsection
4266 on_timer: Timer event
4269 \begin_layout Itemize
4270 Callback: on_timer()
4273 \begin_layout Standard
4274 Called when requested by set_idle_timeout() and the timeout has expired
4275 (regardless if emulator is waiting).
4278 \begin_layout Subsection
4279 on_set_rewind: Rewind point has been set
4282 \begin_layout Itemize
4283 Callback: on_set_rewind(UNSAFEREWIND r)
4286 \begin_layout Standard
4287 Called when unsafe rewind object has been constructed.
4290 \begin_layout Subsection
4291 on_pre_rewind: Rewind is about to occur
4294 \begin_layout Itemize
4295 Callback: on_pre_rewind()
4298 \begin_layout Standard
4299 Called just before unsafe rewind is about to occur.
4302 \begin_layout Subsection
4303 on_post_rewind: Rewind has occured
4306 \begin_layout Itemize
4307 Callback: on_post_rewind()
4310 \begin_layout Standard
4311 Called just after unsafe rewind has occured.
4314 \begin_layout Subsection
4315 on_button: Button has been pressed
4318 \begin_layout Itemize
4319 Callback: on_button(number port, number controller, number index, string
4323 \begin_layout Standard
4324 Called on controller button press, with following parameters:
4327 \begin_layout Itemize
4328 port: Port number (0 is system)
4331 \begin_layout Itemize
4332 controller: Controller within port
4335 \begin_layout Itemize
4336 index: Index of button.
4339 \begin_layout Itemize
4340 type: Type of event, one of:
4344 \begin_layout Itemize
4345 \begin_inset Quotes eld
4349 \begin_inset Quotes erd
4352 : Button was pressed.
4355 \begin_layout Itemize
4356 \begin_inset Quotes eld
4360 \begin_inset Quotes erd
4363 : Button was released.
4366 \begin_layout Itemize
4367 \begin_inset Quotes eld
4371 \begin_inset Quotes erd
4377 \begin_layout Itemize
4378 \begin_inset Quotes eld
4382 \begin_inset Quotes erd
4385 : Released from hold.
4388 \begin_layout Itemize
4389 \begin_inset Quotes eld
4393 \begin_inset Quotes erd
4396 : Typing input on button.
4399 \begin_layout Itemize
4400 \begin_inset Quotes eld
4404 \begin_inset Quotes erd
4407 : Typing input undone.
4410 \begin_layout Itemize
4411 \begin_inset Quotes eld
4414 autofire <duty> <cycle>
4415 \begin_inset Quotes erd
4418 : Autofire with specifie duty and cycle.
4421 \begin_layout Itemize
4422 \begin_inset Quotes eld
4426 \begin_inset Quotes erd
4432 \begin_layout Itemize
4433 \begin_inset Quotes eld
4437 \begin_inset Quotes erd
4440 : Analog action on axis.
4444 \begin_layout Subsection
4445 on_movie_lost: Movie data is about to be lost
4448 \begin_layout Itemize
4449 Callback: on_movie_lost(STRING kind)
4452 \begin_layout Standard
4453 Called just before something would happen that could lose movie data.
4457 \begin_layout Itemize
4458 readwrite: Switching to readwrite mode.
4461 \begin_layout Itemize
4462 reload: ROM is being reloaded in readwrite mode.
4465 \begin_layout Itemize
4466 load: New movie is being loaded.
4469 \begin_layout Itemize
4470 unsaferewind: Unsafe rewind is happening.
4473 \begin_layout Subsection
4474 on_latch: Latch line is rising
4477 \begin_layout Itemize
4478 Callback: on_latch(<core-dependent-parameters>)
4481 \begin_layout Standard
4482 Called when latch line for controller is rising.
4483 Some cores may not support this.
4486 \begin_layout Itemize
4487 bsnes core: Called with no parameters.
4490 \begin_layout Itemize
4491 gambatte core: Not supported.