All public logs
Jump to navigation
Jump to search
Combined display of all available logs of MiniScript Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 18:04, 7 July 2021 JoeStrout talk contribs created page TileDisplay.cell (Created page with "thumb|right|Tile indexes for /sys/pics/TileShapes.png <c>TileDisplay.cell</c> returns the tile index at a given row and column within the t...")
- 17:43, 7 July 2021 JoeStrout talk contribs created page File.saveImage (Created page with "<c>File.saveImage</c> saves an Image to disk. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning |- | ''path'' || string...")
- 21:26, 10 June 2021 JoeStrout talk contribs created page PixelDisplay.color (Created page with "The <c>color</c> property of the PixelDisplay class sets the default drawing color for subsequent drawing calls such as PixelDisplay.line, PixelDisplay.drawRect, a...")
- 13:26, 30 April 2021 JoeStrout talk contribs created page Line continuation (Created page with "MiniScript statements are separated by line breaks rather than explicit punctuation (such as the semicolon in C). It is nonetheless possible to break a long MiniScript statem...")
- 03:20, 8 February 2021 JoeStrout talk contribs created page Operators (Created page with "MiniScript defines the following operators (listed in order from lowest to highest precedence): {| class="wikitable" |- ! Operator !! Meaning |- | A <c>=</c> B || assignment...")
- 03:06, 8 February 2021 JoeStrout talk contribs created page File.saveRaw (Created page with "The file.saveRaw method writes a RawData object out to disk. This allows you to write binary files in Mini Micro. {{stub}} Category:Mini Micro")
- 02:59, 8 February 2021 JoeStrout talk contribs created page File.loadRaw (Created page with "The <c>file.loadRaw</c> method returns a RawData object containing the bytes of the file at the given path. This method is used to read binary files in Mini Micro...")
- 14:52, 7 February 2021 JoeStrout talk contribs created page Bounds (Created page with "In Mini Micro, the Bounds class represents a rectangular bounding box. It is used for hit-testing and collision detection, especially with Sprites. {{stub}}")
- 03:19, 28 January 2021 JoeStrout talk contribs created page Image.create (Created page with "The <c>Image.create</c> method creates a new Image object filled with solid color. You can then add content to this image with <c>Image.setPixel</c>. === Argumen...")
- 03:53, 24 January 2021 JoeStrout talk contribs created page Color.rgb (Created page with "In Mini Micro, the <c>color.rgb</c> method returns a color string from red, green, and blue values in the range 0-255. === Arguments === {| class="wikitable" |-...")
- 03:52, 24 January 2021 JoeStrout talk contribs created page Color.rgba (Created page with "In Mini Micro, the <c>color.rgba</c> method returns a color string from red, green, blue, and alpha values in the range 0-255. === Arguments === {| class="wikita...")
- 04:49, 20 January 2021 JoeStrout talk contribs created page Reset (Created page with "In Mini Micro, the <c>reset</c> command has several effects: # Clears the current program from memory. # Clears all global variables, except the ones defined at startup....")
- 04:16, 20 January 2021 JoeStrout talk contribs created page Edit (Created page with "In Mini Micro, the <c>edit</c> command invokes the Mini Micro code editor on the current program in memory. <c>edit</c> takes no arguments. Category:Mini Micro {{st...")
- 04:04, 20 January 2021 JoeStrout talk contribs created page Input (Created page with "<c>input</c> is a quasi-standard function in the MiniScript language that gets a string of input from the user. By "quasi-standard" we mean that it is not part of the MiniScr...")
- 03:55, 20 January 2021 JoeStrout talk contribs created page Load (Created page with "In Mini Micro, the <c>load</c> command loads a program into memory from disk. Syntax: load ''path'' This replaces the current program in memory with the MiniScript fi...")
- 02:28, 19 January 2021 JoeStrout talk contribs created page Save (Created page with "In Mini Micro, the <c>save</c> command saves the current program to disk. Syntax: save ''path'' If the current program was previously saved or loaded, then no argumen...")
- 02:12, 19 January 2021 JoeStrout talk contribs created page Text (Created page with "In Mini Micro, <c>text</c> is a global reference to the default text display. This is the display used by print and input, as the system prompt, error messages, e...")
- 02:09, 19 January 2021 JoeStrout talk contribs created page TileDisplay.clear (Created page with "The <c>clear</c> method of <c>TileDisplay</c> clears the whole display to a given tile index, or <c>null</c>. == Example == The following example configures displa...")
- 20:40, 18 January 2021 JoeStrout talk contribs created page Color (Created page with "Color in Mini Micro is represented in RGB or RGBA hexadecimal format, similar to [https://htmlcolorcodes.com/ HTML color codes]. frameless The l...")
- 20:24, 18 January 2021 JoeStrout talk contribs created page File:ColorTable.png (Colors defined by the color module in Mini Micro.)
- 20:24, 18 January 2021 JoeStrout talk contribs uploaded File:ColorTable.png (Colors defined by the color module in Mini Micro.)
- 20:21, 18 January 2021 JoeStrout talk contribs created page File:ColorString.png (Illustration of the format of a color string in Mini Micro.)
- 20:21, 18 January 2021 JoeStrout talk contribs uploaded File:ColorString.png (Illustration of the format of a color string in Mini Micro.)
- 20:16, 18 January 2021 JoeStrout talk contribs created page SolidColorDisplay (Created page with "The <c>SolidColorDisplay</c> class in Mini Micro is a display type that represents a single color over the entire screen. It is often used to control overall background c...")
- 20:11, 18 January 2021 JoeStrout talk contribs created page File.curdir (Created page with "The <c>file.curdir</c> method returns the current working directory in Mini Micro or command-line MiniScript. In Mini Micro, <c>pwd</c> is standard shorth...")
- 04:04, 18 January 2021 JoeStrout talk contribs created page Run (Created page with "In Mini Micro, the <c>run</c> command runs the currently loaded program. Note that it does ''not'' clear out any variables or reset any display state before executing the...")
- 04:00, 18 January 2021 JoeStrout talk contribs created page Gfx (Created page with "In Mini Micro, <c>gfx</c> is a global reference to a PixelDisplay. It is assigned <c>display(5)</c> by the <c>clear</c> command. Users may reassign it as des...")
- 03:56, 18 January 2021 JoeStrout talk contribs created page Pwd (Created page with "In Mini Micro, <c>pwd</c> is a shorthand for <c>file.curdir</c>, that is, it returns the current working directory. ("pwd" starts for "print working directory.) Ca...")
- 03:54, 18 January 2021 JoeStrout talk contribs created page Dot syntax (Created page with "Dot syntax refers to a way of indexing into a map by putting the key after the map reference, joined by the ''dot operator''. For example, instead of <c>myMap["entry"]</c>, w...")
- 03:48, 18 January 2021 JoeStrout talk contribs created page MediaWiki:Sidebar (Created page with " * navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help-mediawiki ** Special:WantedPages|Help Wanted *...")
- 03:46, 18 January 2021 JoeStrout talk contribs created page Clear (Created page with "In Mini Micro, <c>clear</c> is a commonly-used function to clear the screen and reset the displays to their default modes, as shown below. File:DisplayLayou...")
- 17:17, 14 January 2021 JoeStrout talk contribs created page Env (Created page with "In Mini Micro, <c>env</c> refers to a map of special values that affect the Mini Micro environment. It contains at least the following keys: {| class="wikitable" |- ! Ke...")
- 13:37, 12 January 2021 JoeStrout talk contribs created page How to convert a folder into a .minidisk (Created page with "Mini Micro can mount a folder in the host (Mac/Windows/Linux) file system, making it appear in Mini Micro as /usr or /usr2. This is convenient when you want to use extern...")
- 13:31, 12 January 2021 JoeStrout talk contribs created page How to convert a .minidisk into a folder (Created page with "A .minidisk file is used by Mini Micro to store the entire contents of a virtual disk in one host (Windows/Mac/Linux) file. This is convenient in that it keeps your host...")
- 18:27, 9 January 2021 JoeStrout talk contribs created page FileHandle.atEnd (Created page with "The <c>atEnd</c> method of the FileHandle class returns true after attempting to read past the end of the file. Note that <c>atEnd</c> is not true after the last successf...")
- 21:45, 5 January 2021 JoeStrout talk contribs created page FileHandle (Created page with "In Mini Micro and command-line MiniScript, the <c>FileHandle</c> class is a small class that represents a file that has been opened for reading, writing, or updating v...")
- 21:24, 5 January 2021 JoeStrout talk contribs created page Command-line MiniScript (Redirected page to Command-Line MiniScript) Tag: New redirect
- 21:21, 5 January 2021 JoeStrout talk contribs created page File.open (Created page with "In Mini Micro and command-line MiniScript, the <c>file.open</c> function returns a FileHandle object that enables further reads, writes, or updates of the file...")
- 21:09, 5 January 2021 JoeStrout talk contribs created page File.info (Created page with "The <c>file.info</c> method returns a map of details about an existing file or directory at the given path. === Arguments === {| class="wikitable" |- ! Parameter Nam...")
- 21:01, 5 January 2021 JoeStrout talk contribs created page Category:Command-Line MiniScript (Created page with "Pages that apply to the command-line MiniScript (running on any operating system). Category:Environments")
- 17:40, 5 January 2021 JoeStrout talk contribs created page File (Created page with "The <c>file</c> module provides access to disk files in both Mini Micro and command-line MiniScript. == Methods and Properties == The following table shows methods...")
- 04:37, 30 December 2020 JoeStrout talk contribs created page File:SimpleTileShapes.png (An illustration of the tile set included with Mini Micro at /sys/pics/TileShapes.png. The blue background and tile index numbers (assuming TileDisplay.tileSetTileSize = 64) have been added for illustration purposes.)
- 04:37, 30 December 2020 JoeStrout talk contribs uploaded File:SimpleTileShapes.png (An illustration of the tile set included with Mini Micro at /sys/pics/TileShapes.png. The blue background and tile index numbers (assuming TileDisplay.tileSetTileSize = 64) have been added for illustration purposes.)
- 04:35, 30 December 2020 JoeStrout talk contribs created page TileDisplay.setCell (Created page with "<c>TileDisplay.setCell</c> Directly sets the tile index at a given row and column of a tile display. Tile indexes start at 0 in the top-left corner of the tile set. See...")
- 00:16, 4 December 2020 JoeStrout talk contribs created page TileDisplay.scrollY (added usage note)
- 00:07, 4 December 2020 JoeStrout talk contribs created page TileDisplay.scrollX (Initial creation)
- 00:02, 4 December 2020 JoeStrout talk contribs created page TileDisplay (Initial creation)
- 23:46, 12 October 2020 JoeStrout talk contribs created page Package (Redirected page to How to package a Mini Micro game) Tag: New redirect
- 19:32, 12 October 2020 JoeStrout talk contribs created page How To (Redirected page to Category:How To) Tag: New redirect
- 04:30, 11 September 2020 JoeStrout talk contribs created page Minnie (Created page with "Minnie is the name of the MiniScript mascot. She is a [https://en.wikipedia.org/wiki/Chinchilla chinchilla]. frameless|center Why a chinchilla? From th...")