gamax92's fork of picolove
Go to file
gamax92 c505d6e3c8 Remove invalid assert, fixes #24
pico-8 can truncate the rest of the map data if it's all zeros
So we shouldn't expect this to match up anymore
2018-08-30 23:18:54 -06:00
LICENCE.md add zlib license 2015-10-14 12:31:05 +11:00
README.md More robust cart loading 2018-04-12 16:05:42 -06:00
api.lua Add map() default arguments (#25) 2018-08-09 09:52:12 -06:00
cart.lua Remove invalid assert, fixes #24 2018-08-30 23:18:54 -06:00
conf.lua Update for LOVE 11.0 2018-04-09 16:17:01 -06:00
font.png Update font.png 2018-07-17 12:23:40 -06:00
gif.lua Update for LOVE 11.0 2018-04-09 16:17:01 -06:00
main.lua Add remaining button-key mappings (#29) 2018-08-09 09:51:47 -06:00
nocart.p8 Improve fake console cart 2016-10-05 15:59:51 -06:00
openal.lua start of sfx mark2 2015-09-09 21:51:34 +10:00
strict.lua strict mode and video recording 2015-08-20 20:03:01 +10:00

README.md

PICOLOVE

A fork of the original PICOLOVE, an implementation of PICO-8's API in LÖVE
Original is on github at: https://github.com/picolove/picolove
Requires LÖVE 11.x

PICO-8: http://www.lexaloffle.com/pico-8.php
LÖVE: https://love2d.org/

What it is:
  • An implementation of PICO-8's api in LÖVE
Why:
  • For a fun challenge!
  • Allow standalone publishing of PICO-8 games on other platforms
  • Should work on mobile devices *
  • Configurable controls
  • Extendable
  • No arbitrary cpu or memory limitations
  • No arbitrary code size limitations
  • Better debugging tools available
  • Open source
What it isn't:
  • A replacement for PICO-8
  • A perfect replica
  • No dev tools, no image editor, map editor, sfx editor, music editor
  • No modifying or saving carts
  • Not memory compatible with PICO-8
Differences:
  • Uses floating point numbers not fixed point
  • Uses LuaJIT not lua 5.2
  • Memory layout is not complete
Extra features:
  • ipairs(), pairs() standard lua functions
  • assert(expr,message) if expr is not true then errors with message
  • error(message) bluescreens with an error message
  • warning(message) prints warning and stacktrace to console
  • setfps(fps) changes the consoles framerate
  • _keyup, _keydown, _textinput allow using direct keyboard input
Android Packaging:

Replace nocart.p8 with your game, since this is the default cartridge on boot. Text P8 or PNG P8.PNG is supported.
Follow the steps at Android Game Packaging
An additional step when editing AndroidManifest.xml is to remove android:screenOrientation="landscape" if you would like your game to support orientation rotation (Portrait and Landscape)