liko-12.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. ==========================================================================================
  2. LIKO-12 V0.0.5 PRE
  3. https://github.com/RamiLego4Game/LIKO-12
  4. Licensed under GPL-3, see LICENSE file for more info
  5. Author: RamiLego4Game // ramilego4game@gmail.com
  6. Contributors:
  7. technomancy: Co-Developer.
  8. gamax92: Gif recording.
  9. feserr: Terminal command history & autocomplete.
  10. cosme12: Fire & Snake demo carts.
  11. OmgCopito95, s0r00t: For being awesome and contributing on github.
  12. LIKO-12 is built with:
  13. LÖVE Framework: http://love2d.org/
  14. ==========================================================================================
  15. Welcome to LIKO-12:
  16. LIKO-12 is a PICO-8 clone but with extra abilities, different API and bigger screen width.
  17. We are working on this because PICO-8 is not available under a free license that allows
  18. improvements and sharing, and also to lift some of the more restrictive limitations on games
  19. like the token limit.
  20. What's PICO-8 ??
  21. - PICO-8 is a fantasy console for making, sharing and playing tiny games and other computer
  22. programs. When you turn it on, the machine greets you with a shell for typing in Lua programs
  23. straight away and provides simple built-in tools for creating sprites, maps and sound.
  24. - LIKO-12 comes with a terminal, lua console, sprites editor and a code editor. It also comes
  25. with a modified pixel font which includes lower-case letters. We plan on adding a map editor and
  26. audio/music editor in the future.
  27. - So you can basically create spritesheets, and games using this console.
  28. :: IRC
  29. We have an irc channel #liko12 at irc.oftc.net , feel free to join us
  30. :: Keys
  31. Escape: Quit running cart or switch between editors and the terminal.
  32. Up: Command history in the terminal.
  33. Tab: Autocomplete file/folder names in the terminal.
  34. Mouse Wheel: Move up/down/left/right the cursor in the code editor.
  35. Ctrl-pageup/pagedown: Change between editor modes.
  36. Ctrl-c/Ctrl-v: Copy & Paste in the spriteeditor.
  37. F8: Start gif recording (may be heavy in some devices).
  38. F9: End the gif recoring and save it.
  39. In-game player controls:
  40. player 1
  41. id:1, 2, 3, 4, 5, 6
  42. left, right, up, down, {z, c, x}, {x, v, m}
  43. player 2
  44. id:1, 2, 3, 4, 5, 6
  45. s, f, e, d, {lshift, tab}, {a, q}
  46. :: Specs
  47. Display: 192x128, fixed 16 colour palette (PICO-8 palette)
  48. Input: Full access to Mouse, Touch and Keyboard !
  49. SpriteSheet: 288 sprite (24x12)
  50. Code: LuaJIT 5.1
  51. LÖVE: 0.10.1
  52. Runs on: Windows, Linux, Mac, Android, iOS, RaspberryPi (see PiLove).
  53. :: Bugs/Crashes reports
  54. Please report those at the github issues tracker:
  55. https://github.com/RamiLego4Game/LIKO-12/issues
  56. :: Hello World
  57. After LIKO-12 boots, try loading the hello world builtin cart by typing those commands in the terminal:
  58. cd demos
  59. load helloworld
  60. run
  61. Try to to press and drag anywhere on the screen.
  62. To quit the cart press escape key, now to view the source code and sprites of the cart press escape key again.
  63. Now in the sprite editor try to edit the hello world sprite, then press escape to return to the terminal and type run.
  64. Awesome right?
  65. To save your cart type (you may replace myhelloworld with any name you like):
  66. save myhelloworld
  67. :: Demo Carts
  68. Here's a list of the built-in demo carts the you can load, edit, run and save !
  69. cd demos
  70. tictactoe A 2 players tictactoe game made by RamiLego4Game.
  71. helloworld The helloworld example.
  72. noise Fill the screen with random colors.
  73. snake A snake game made by cosme12.
  74. snakenew A w.i.p snake rewrite made by RamiLego4Game.
  75. maze A spritesheet for a maze game.
  76. scale A demo for scaling and rotating images.
  77. fire Fire particle by cosme12.
  78. To run a cart, open LIKO-12 terminal and type:
  79. cd demos
  80. load tictactoe
  81. run
  82. Press escape to stop the cart, and once more to enter editing mode.
  83. Delete the demos directory and restart liko12 to restore the defaults/ add new ones. "DEL demos"
  84. :: Exporters / Importers
  85. To import or export the spritesheet as a .png:
  86. export spritesheet
  87. import spritesheet
  88. :: Editing the internal spritessheet
  89. To edit the internal spritesheet type in the terminal:
  90. import editorsheet
  91. Edit the sheet as you like (You can edit the cursor too)
  92. export editorsheet
  93. reload
  94. Have fun hacking this :3
  95. :: Auto saving
  96. LIKO-12 automatically saves your cart to /_backup.lk12 when typing shutdown/reload
  97. (_backup.lk12 is hidden in the dir/ls command, do "load _backup" to load it)
  98. :: Terminal Commands
  99. COMMANDS <REQUIRED> [OPTIONAL]
  100. HELP: Shows help info
  101. NEW: Clears the memory
  102. RELOAD: Reloads the editorsheet
  103. RUN [args]: Runs the loaded cart
  104. SAVE <NAME>: Saves the current cart
  105. LOAD <NAME>: Loads a cart
  106. IMPORT <PATH>: Imports a spritesheet
  107. EXPORT <PATH>: Exports the current loaded spritesheet
  108. CLS: Clears the terminal
  109. VER: Shows LIKO-12 Title
  110. DIR/LS: Lists the directory items.
  111. CD: Change the working directory.
  112. DEL: Delete the give file/directory.
  113. MKDIR: Creates a directory at the given path.
  114. REBOOT: Reboots liko12 (And reloads all the internal code files).
  115. SHUTDOWN: Quit liko12.
  116. FOLDER: Opens the current directory with the host explorer.
  117. :: Screen Rendering
  118. LIKO-12 has non clearing canvas rendering system this means:
  119. - You don't have to redraw everything when resizeing the lk12 window
  120. - The screen doesn't clear every frame
  121. - You can draw to the screen anywhere in the code
  122. Note: everything called before _init() will be cleared.
  123. :: Getting Started
  124. To get started do the hello world tutorial then load and play demo games.
  125. After that let's start:
  126. Type "load demos/helloworld" then type "run" to start it
  127. Go back to the editor (press esc twice) and switch to the code editor (The [] tab)
  128. From here you can start by reading the demo's code
  129. How carts work:
  130. The game code gets excuted to overwrite the global callbacks
  131. Then the screen is cleared with black color
  132. After that the _init callback is called so the cart can draw
  133. Periodically the _update callback is called with delta time
  134. Finally whenever input happens the relevant callbacks are called so the game draws new content
  135. SpriteSheet:
  136. Before running game code, the spritesheet is loaded to the globals so the game gets access to its spritesheet
  137. So now read the demo games, and be sure to check the API documentation bellow.
  138. Console Editor Tab:
  139. This is a work in progress feature, don't use it for now.
  140. ==========================================================================================
  141. API
  142. ==========================================================================================
  143. :: Lua Global
  144. Read runtime.lua in lk12 code for a full list of globals.
  145. :: Callbacks
  146. You should overwrite the callbacks you want to use, ex: function _init() end
  147. _init
  148. This function is called at the initialization of your game.
  149. Start your game drawing from here, because any draw calls at the top level of your code are cleared.
  150. _update dt
  151. This function is called everyframe.
  152. - DT (Number): The delta time between _update calls in seconds.
  153. _mpress x,y,b,it
  154. This function is called when a mouse button is pressed.
  155. - x,y (Numbers): The X and Y position of the mouse.
  156. - b (Number): The pressed mouse button.
  157. - it (Boolean): (istouch) if the mouse press is in fact a touch press.
  158. _mmove x,y,dx,dy,it,iw
  159. This function is called whenever the mouse gets moved.
  160. - x,y (Numbers): The X and Y position of the mouse.
  161. - dx,dy (Numbers): How much the mouse has moved in each direction.
  162. - it (Boolean): (istouch) if the mouse press is in fact a touch move.
  163. - iw (Boolean): (iswheel) if true then the x,y are how much the mouse wheel has moved.
  164. _mrelease x,y,b,it
  165. This function is called when a mouse button is released.
  166. - x,y (Numbers): The X and Y position of the mouse.
  167. - b (Number): The released mouse button.
  168. - it (Boolean): (istouch) if the mouse press is in fact a touch release.
  169. _tpress id,x,y,dx,dy,p
  170. This function is called when the screen is touched.
  171. - id (Light-Number): The id of the touch.
  172. - x,y (Numbers): The X and Y position of the touch.
  173. - dx,dy (Numbers): How much the touch has moved in each direction, this should be always zero.
  174. - p (Number): (pressure) The pressure of the touch.
  175. _tmove id,x,y,dx,dy,p
  176. This function is called when a screen touch is moved.
  177. - id (Light-Number): The id of the touch.
  178. - x,y (Numbers): The X and Y position of the touch.
  179. - dx,dy (Numbers): How much the touch has moved in each direction.
  180. - p (Number): (pressure) The pressure of the touch.
  181. _trelease id,x,y,dx,dy,p
  182. This function is called when a screen touch is released.
  183. - id (Light-Number): The id of the touch.
  184. - x,y (Numbers): The X and Y position of the touch.
  185. - dx,dy (Numbers): How much the touch has moved in each direction.
  186. - p (Number): (pressure) The pressure of the touch.
  187. _kpress k, sc, ir
  188. This function is called when a keyboard key is pressed.
  189. - k (String [KeyConstant]): The key that has been pressed.
  190. - sc (Number): The scancode of the pressed key.
  191. - ir (Boolean): (IsRepeat) See keyrepeat function.
  192. _krelease k, sc
  193. This function is called when a keyboard key is released.
  194. - k (String [KeyConstant]): The key that has been released.
  195. - sc (Number): The scancode of the released key.
  196. _tinput t
  197. This function is called when text is inputted.
  198. - t (String): The text inputted.
  199. :: Graphics
  200. color [c]
  201. Sets the current drawing color to the given color or black
  202. - c [Number]: The new color.
  203. pushColor
  204. Push the current color to the colors stack
  205. popColor
  206. Pops/restores the last color in the colors stack
  207. clear [c]
  208. Clears the screen and fills it with the given color black
  209. - c [Number]: The color to fill with
  210. stroke [width]
  211. Sets the width of the lines and points to the given width or 1
  212. - width [Number]: The new width
  213. point/points x1,y1,[x2,y2,...],[c]
  214. Draws the give points, if the number of the given args is odd then last one is set as the color.
  215. - x,y,... (Numbers): The points locations
  216. - c [Number]: The color to set to
  217. line/lines x1,y1,x2,y2,[x3,y3,...],[c]
  218. Draws lines connecting the given points, if the number of the given args is odd then the last one is set as the color.
  219. - x,y,... (Numbers): The points locations
  220. - c [Number]: The color to set to
  221. circle/circle_line x,y,r,[c]
  222. Draws a circle at the given position
  223. - x,y (Numbers): The center pos of the circle
  224. - r (Number): The radius of the circle
  225. - c [Number]: The color to set to
  226. rect/rect_line x,y,w,h,[c]
  227. Draws a rectangle with the given specifications
  228. - x,y (Numbers): The position of the topleft corner of the rect.
  229. - w,h (Numbers): The width and height of the rectangle.
  230. - c [Number]: The color to set to
  231. print/print_grid text,[x],[y]
  232. Prints text at a specific location in the screen, be sure to set the color using color()
  233. print_grid is alligned ta 8x8 cell grid.
  234. - text (String or Table): The text to print, it can be a table: {"text",{r,g,b,a}}
  235. - x,y [Numbers]: The position to print at.
  236. Sprite sprid, x,y, [r], [sx],[sy], [sprsheet]
  237. Draws a specific sprite at the given pos.
  238. - sprid (Number): The sprite id as shown in the sprite editor
  239. - x,y (Numbers): The topleft corner position of the sprite.
  240. - r [Number]: The rotation in radian.
  241. - sx,sy [Numbers]: The sprite width and hight multiplying factor.
  242. - sprsheet [liko12.spriteSheet]: The spritesheet containing the sprite (advanced users only)
  243. SpriteGroup sprid, x,y, w,h, [sx],[sy], [sprsheet]
  244. Draws a group of sprites at the given pos.
  245. - sprid (Number): The id of the top left sprite in the group.
  246. - x,y (Numbers): The topleft corner position
  247. - w,w (Numbers): The number of the sprites in width and height
  248. - sx,sy [Numbers]: The sprite width and hight multiplying factor.
  249. - sprsheet [liko12.spriteSheet]: The spritesheet containing the sprite (advanced users only)
  250. SpriteMap
  251. The carts spritesheet
  252. :: Math
  253. ostime
  254. The default lua os.time function
  255. floor
  256. The original lua math.floor function
  257. rand_seed
  258. the default love.math.setRandomSeed function
  259. rand
  260. the default love.math.random function
  261. :: GUI
  262. isInRect x,y,rect
  263. Returns true is the point is in the rect.
  264. - x,y (Numbers): The x and y positions of the point.
  265. - rect (Table): Rect table: {x,y,w,h}
  266. returns (Boolean): is in rect.
  267. whereInGrid x,y,grid
  268. Returns false if the point is not in the grid at all.
  269. Return cellx, celly if the point is in the grid.
  270. - x,y (Numbers): the x and y posotions of the point to test.
  271. - grid (Table): The grid config {x,y,cellw,cellh,w,h}
  272. returns cx,cy (Numbers): The position in the grid.
  273. btn n, player
  274. Returns the state of the specific player button, use in _update
  275. - n (Number): the id of the button
  276. - p (Number): the number of the player (1/2)
  277. returns state (Boolean): the state of the button
  278. Each player has four directional keys and two other keys. See the "keys" section above for a
  279. listing of key ids.
  280. getMPos
  281. Returns the current position of the mouse, may break some touch compatibility..
  282. returns x,y (Numbers): The position of the mouse, or the last moved touch.
  283. isMDown b
  284. Returns if the specific mouse button is pressed down or not, may break some touch compatibility..
  285. - b (Number): The id of the button to check: 1:left 2:right 3:middle
  286. returns (Boolean): The state of the mouse button, true for button 1 if the screen is touched.
  287. :: Misc
  288. keyrepeat state
  289. To enable _kpress isrepeat function
  290. showKeyboard state
  291. To show the keyboard on mobile devices.
  292. isMobile
  293. Returns true if liko12 is running on a mobile device
  294. setclip
  295. Sets the host's clipboard text
  296. getclip
  297. Gets the host's clipboard text
  298. Image, ImageData, SpriteSheet, setCursor, newCursor, TextBuffer, Map is not documented here, check api.lua for info about them
  299. ==========================================================================================
  300. Changelog
  301. ==========================================================================================
  302. V0.0.5A PRE:
  303. 1. Terminal commands history & autocomplete by feserr.
  304. 2. New os.time()
  305. 3. A work in progress rewrite of snake demo game using the map api.
  306. 4. Fixed images/sprites rotating/scaling down.
  307. 5. New scaling & rotating demo.
  308. V0.0.5 PRE:
  309. !! Changed appdata folder name from .liko12 to liko12 to be visible in unix systems.
  310. ## New:
  311. 1. Added awesome fire & snake demos made by cosme12.
  312. 2. Nice hand cursor when hovering at the editor mode tabs.
  313. 3. Spriteeditor tools (Brush, Filler, Copy, Paste, Delete) !
  314. 4. Spriteeditor transformations (filp, rotate, etc..) !
  315. 5. Now shows info in the spriteeditor when copying, pasting and deleting.
  316. 6. The cursor is now visible when gif recording.
  317. 7. Sprite draw no longer sets the color to 1.
  318. ## Minor:
  319. 8. New sprites in the EditorSheet.
  320. 9. New cursor: point, shown in the terminal and games.
  321. 10. The window scale can be set by an enviroment variable "LIKO_SCALE", defaults to 3.
  322. 11. Now shows error msg when failing to paste in the spriteeditor.
  323. 12. Made the color palette selection bigger.
  324. 13. Non-functional flag buttons in the spriteeditor :P.
  325. ## Fixed:
  326. 14. Minor fixes in the api.
  327. 15. Bugfixed ImageData:getPixel.
  328. 16. Fixed crashing when using the mousewheel in the code editor.
  329. 17. You can no longer delete the path in the terminal.
  330. 18. Bugfixed the path being double written in the terminal when a cart errors.
  331. V0.0.4 PRE:
  332. 1. New gif recording :3 (Thanks for gamax92)
  333. 2. New Shutdown, Folder, Reboot commands (Reboot reloads all the internals of liko12 ! like launching it again)
  334. 3. New WIP Tilemap editor.
  335. 4. New api functions: pushColor, popColor, setclip, getclip
  336. 5. Restored BTN back.
  337. 6. Console crash fix.
  338. 7. Spriteeditor copy & paste.
  339. 8. Spriteeditor & Tilemapeditor sprite preview near the sprite id.
  340. 9. Changed the small letter "a" to be more clear.
  341. 10. New (non-documented :/) Map api (check libraries/map.lua).
  342. 11. The setten color is no longer lost between frames/image draw calls.
  343. 12. Bugfixes for the terminal & the textbuffer.
  344. V0.0.3 PRE:
  345. 1. Bugfixed V0.0.2 pre bugs (about 5/6 bugs) :)
  346. 2. Recoded the code editor to support vertical scrolling (no length limit anymore) [not fully bugtested..]
  347. 3. Fixed run command sandboxing and added "run [args]"
  348. 4. Fixed a bug in the tictactoe demo,type "delete demos" "load demos/tictactoe" "run"
  349. V0.0.2 PRE:
  350. 1. Now sprite editor can set a right button color.
  351. 2. Sandboxed Save, Load, Import Commands.
  352. 3. Created virtual file system.
  353. 4. Added cd,ls,dir,mkdir,del commands.
  354. 5. [Internal] Better api sandboxing.
  355. 6. Now filters utf8 and unknown chars.
  356. 7. Changed to orange flavor (delete %appdata%/editorsheet if you edited that to update) to differ from pico8
  357. 8. New API Functions: getMPos, isMDown, btn
  358. 9. Run command accepts args
  359. 10. Renamed _startup to _init (sorry for breaking that..)
  360. 11. SAVE and EXPORT commands now saves to the last load/save path
  361. V0.0.1 PRE:
  362. First Public Release