include a brief reference enabling many useful apps
[?]
Apr 10, 2023, 1:54 AM
EUWHJ7JJ4TY2Q2II4SUYTBVMZJ7WWEN2THAKVWGC35P2R2ENYU4ACDependencies
Change contents
- file addition: reference.md[4.2]
# Building blocks for your Freewheeling AppsFreewheeling apps are composed of a wide variety of building blocks that youcan use in your functions, including a small number of functions that getautomatically called for you as appropriate.## Functions you can implement that will get automatically called* `on.initialize(arg)` -- called when app starts up. Provides in `arg` anarray of words typed in if you ran it from a terminal window.(Based on [LÖVE](https://love2d.org/wiki/love.load).)* `on.quit()` -- called before the app shuts down.(Based on [LÖVE](https://love2d.org/wiki/love.quit).)* `on.focus(start?)` -- called when the app starts or stops receivingkeypresses. `start?` will be `true` when app starts receiving keypresses and`false` when keypresses move to another window.(Based on [LÖVE](https://love2d.org/wiki/love.focus).)* `on.resize(w,h)` -- called when you resize the app window. Provides newwindow dimensions in `w` and `h`.(Based on [LÖVE](https://love2d.org/wiki/love.resize))* `on.file_drop(file)` -- called when a file icon is dragged and dropped onthe app window. Provides in `file` an object representing the file that wasdropped, that will respond to the following messages:* `file:getFilename()` returning a string name* `file:read()` returning the entire file contents in a single string(Based on [LÖVE](https://love2d.org/wiki/love.filedropped).)* `on.code_change()` -- called when you make changes to the app using[driver.love](https://git.sr.ht/~akkartik/driver.love), any time you hit`f4` inside driver.love, after a definition is created or modified.* `on.draw()` -- called to draw on the window, around 30 times a second.(Based on [LÖVE](https://love2d.org/wiki/love.draw).)* `on.update(dt)` -- called after every call to `on.draw`. Make changes toyour app's variables here rather than in `on.draw`. Provides in `dt` thetime since the previous call to `on.update`, which can be useful for thingslike smooth animations.* `on.mouse_press(x,y, mouse_button)` -- called when you press down on a mousebutton. Provides in `x` and `y` the point on the screen at which the clickoccurred, and in `mouse_button` an integer id of the mouse button pressed.`1` is the primary mouse button (the left button on a right-handed mouse),`2` is the secondary button (the right button on a right-handed mouse),and `3` is the middle button. Further buttons are mouse-dependent.(Based on [LÖVE](https://love2d.org/wiki/love.mousepressed).)* `on.mouse_release(x,y, mouse_button)` -- called when you release a mousebutton. Provides the same arguments as `on.mouse_press()` above.(Based on [LÖVE](https://love2d.org/wiki/love.mousereleased).)* `on.mouse_wheel_move(dx,dy)` -- called when you use the scroll wheel on amouse that has it. Provides in `dx` and `dy` an indication of how fast thewheel is being scrolled. Positive values for `dx` indicate movement to theright. Positive values for `dy` indicate upward movement.(Based on [LÖVE](https://love2d.org/wiki/love.wheelmoved).)* `on.key_press(key)` -- called when you press a key on the keyboard. Providesin `key` a string name for the key ([valid values](https://love2d.org/wiki/KeyConstant)).(Based on [LÖVE](https://love2d.org/wiki/love.keypressed).)* `on.text_input(t)` -- called when you press a key combination that yields(roughly) a printable character. For example, `shift` and `a` pressedtogether will call `on.textinput` with `A`.(Based on [LÖVE](https://love2d.org/wiki/love.textinput).)* `on.key_release(key)` -- called when you press a key on the keyboard.Provides in `key` a string name for the key ([valid values](https://love2d.org/wiki/KeyConstant)).(Based on [LÖVE](https://love2d.org/wiki/love.keyreleased), including othervariants.)## Functions you can callEverything in the [LÖVE](https://love2d.org/wiki/Main_Page) and[Lua](https://www.lua.org/manual/5.1/manual.html) guides is available to you,but here's a brief summary of the most useful primitives.### regarding the app window* `width, height, flags = love.window.getMode()` -- returns the dimensions andsome properties of the app window.(From [LÖVE](https://love2d.org/wiki/love.window.getMode).)* `love.window.setMode(width, height, flags)` -- modify the size andproperties of the app window. The OS may or may not act on the request.(From [LÖVE](https://love2d.org/wiki/love.window.setMode).)* `x, y, displayindex = love.window.getPosition()` -- returns the coordinates andmonitor index (if you have more than one monitor) for the top-left corner ofthe app window.(From [LÖVE](https://love2d.org/wiki/love.window.getPosition).)* `App.screen.setPosition(x, y, displayindex)` -- moves the app window so itstop-left corner is at the specified coordinates of the specified monitor.The OS may or may not act on the request.(From [LÖVE](https://love2d.org/wiki/love.window.setPosition).)### drawing to the app window* `love.graphics.print(text, x,y)` -- print the given `text` in the current fontusing the current color so its top-left corner is at the specifiedcoordinates of the app window.(From [LÖVE](https://love2d.org/wiki/love.graphics.print).)* `love.graphics.getFont()` -- returns a representation of the current font.(From [LÖVE](https://love2d.org/wiki/love.graphics.getFont).)* `love.graphics.setFont(font)` -- switches the current font to `font`.(From [LÖVE](https://love2d.org/wiki/love.graphics.setFont).)* `love.graphics.newFont(filename)` -- creates a font from the given fontfile.(From [LÖVE](https://love2d.org/wiki/love.graphics.newFont), including othervariants.)* `font:width(text)` returns the width of `text` in pixels when rendered usinga given font. Good to combine with `love.graphics.getFont`.(From [LÖVE](https://love2d.org/wiki/Font:getWidth).)* `love.graphics.setColor(red, green, blue, alpha)` -- sets the current colorto be a combination of the given channels (varying from 0 to 1). `alpha` isa measure of opacity.(From [LÖVE](https://love2d.org/wiki/love.graphics.setColor).)* `love.graphics.line(x1,y1, x2,y2)` -- draws a line from (`x1`,`y1`) to(`x2`, `y2`) in the app window using the current color, clipping data fornegative coordinates and coordinates outside (`App.screen.width`,`App.screen.height`)(From [LÖVE](https://love2d.org/wiki/love.graphics.line), including othervariants.)* `love.graphics.rectangle(mode, x, y, w, h)` -- draws a rectangle using thecurrent color, with a top-left corner at (`x`, `y`), with dimensions `width`along the x axis and `height` along the y axis(though check out https://love2d.org/wiki/love.graphics for ways to scaleand rotate shapes).`mode` is a string, either `'line'` (to draw just the outline) and `'fill'`.(From [LÖVE](https://love2d.org/wiki/love.graphics.circle), including othervariants.)* `love.graphics.circle(mode, x, y, r)` -- draws a circle using the currentcolor, centered at (`x`, `y`) and with radius `r`.`mode` is a string, either `'line'` and `'fill'`.(From [LÖVE](https://love2d.org/wiki/love.graphics.circle), including othervariants.)* `love.graphics.arc(mode, x, y, r, angle1, angle2)` -- draws an arc of acircle using the current color, centered at (`x`, `y`) and with radius `r`.`mode` is a string, either `'line'` and `'fill'`.`angle1` and `angle2` are in [radians](https://en.wikipedia.org/wiki/Radian).(From [LÖVE](https://love2d.org/wiki/love.graphics.circle), including othervariants.)There's much more I could include here; check out [the LÖVE manual](https://love2d.org/wiki/love.graphics).### mouse primitives* `love.mouse.setPosition(x, y)` -- sets the current position of the mouse to(`x`, `y`).(From [LÖVE](https://love2d.org/wiki/love.mouse.setPosition).)* `love.mouse.isDown(mouse_button)` -- returns `true` if the button`mouse_button` is pressed. See `on.mouse_press` for `mouse_button` codes.(From [LÖVE](https://love2d.org/wiki/love.mouse.isDown).)* `love.mouse.getX()` -- returns the x coordinate of the current position of themouse.(From [LÖVE](https://love2d.org/wiki/love.mouse.getX).)* `love.mouse.getY()` -- returns the x coordinate of the current position ofthe mouse.(From [LÖVE](https://love2d.org/wiki/love.mouse.getY).)### keyboard primitives* `love.keyboard.isDown(key)` -- returns `true` if the given key is currentlypressed.(From [LÖVE](https://love2d.org/wiki/love.keyboard.isDown).)### interacting with files* `io.open(filename)` -- returns a file handle that you can[`read()`](https://www.lua.org/manual/5.1/manual.html#pdf-file:read) from or[`write()`](https://www.lua.org/manual/5.1/manual.html#pdf-file:write) to.Make sure `filename` is an absolute path so that your app can work reliablyby double-clicking on it.(From [Lua](https://www.lua.org/manual/5.1/manual.html#pdf-io.open).)* `json.encode(obj)` -- returns a JSON string for an object `obj` that willrecreate `obj` when passed to `json.decode`. `obj` can be of most types buthas some exceptions.(From [json.lua](https://github.com/rxi/json.lua).)* `json.decode(obj)` -- turns a JSON string into a Lua object.(From [json.lua](https://github.com/rxi/json.lua).)* `love.filesystem.getDirectoryItems(dir)` -- returns an unsorted array of thefiles and directories available under `dir`. `dir` must be relative to[LÖVE's save directory](https://love2d.org/wiki/love.filesystem.getSaveDirectory).There is no easy, portable way in Lua/LÖVE to list directories outside thesave dir.(From [LÖVE](https://love2d.org/wiki/love.filesystem.getDirectoryItems).]* `love.filesystem.getInfo(filename)` -- returns some information about`filename`, particularly whether it exists (non-`nil` return value) or not.`filename` must be relative to [LÖVE's save directory](https://love2d.org/wiki/love.filesystem.getSaveDirectory).(From [LÖVE](https://love2d.org/wiki/love.filesystem.getInfo).]* `os.remove(filename)` -- removes a file or empty directory. Definitely makesure `filename` is an absolute path.(From [Lua](https://www.lua.org/manual/5.1/manual.html#pdf-os.remove).)There's much more I could include here; check out [the LÖVE manual](https://love2d.org/wiki/love.filesystem)and [the Lua manual](https://www.lua.org/manual/5.1/manual.html#5.7).### desiderata* `love.timer.getTime()` -- returns the number of seconds elapsed since someunspecified start time.(From [LÖVE](https://love2d.org/wiki/love.timer.getTime).)* `love.system.getClipboardText()` -- returns a string with the currentclipboard contents.(From [LÖVE](https://love2d.org/wiki/love.system.getClipboardText).)* `love.system.setClipboardText(text)` -- stores the string `text` in theclipboard.(From [LÖVE](https://love2d.org/wiki/love.system.setClipboardText).)There's much more I could include here; check out [the LÖVE manual](https://love2d.org/wiki)and [the Lua manual](https://www.lua.org/manual/5.1/manual.html). - edit in README.md at line 6
[Some reference documentation on how to create your own apps.](reference.md)