{"id":13526089,"url":"https://github.com/rxi/lovedos","last_synced_at":"2025-04-01T06:31:06.798Z","repository":{"id":50476882,"uuid":"20815377","full_name":"rxi/lovedos","owner":"rxi","description":"A framework for making 2D DOS games in Lua","archived":true,"fork":false,"pushed_at":"2017-05-06T08:32:40.000Z","size":510,"stargazers_count":684,"open_issues_count":8,"forks_count":47,"subscribers_count":30,"default_branch":"master","last_synced_at":"2025-03-25T01:45:44.159Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rxi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-13T19:28:34.000Z","updated_at":"2025-03-18T02:21:26.000Z","dependencies_parsed_at":"2022-08-05T13:18:24.457Z","dependency_job_id":null,"html_url":"https://github.com/rxi/lovedos","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rxi%2Flovedos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rxi%2Flovedos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rxi%2Flovedos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rxi%2Flovedos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rxi","download_url":"https://codeload.github.com/rxi/lovedos/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246596748,"owners_count":20802889,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T06:01:25.166Z","updated_at":"2025-04-01T06:31:06.205Z","avatar_url":"https://github.com/rxi.png","language":"C","readme":"# LoveDOS\nA framework for making 2D DOS games in Lua. LoveDOS provides an API based on a\nsubset of the [LÖVE](https://love2d.org/) API.\n\n![screenshot](https://cloud.githubusercontent.com/assets/3920290/21948750/ed49e9a6-d9e4-11e6-960a-1fac0ec41ee0.gif)\n\n## Getting started\nYou can download LoveDOS from the\n[releases page](https://github.com/rxi/lovedos/releases). If you're not\nusing DOS as your operating system then [DOSbox](http://www.dosbox.com/) can be\nused to emulate a DOS computer.\n\nWhen you run `love.exe` it will expect its first argument to be your game's\ndirectory. The file `main.lua` will then be searched for and executed. If, for\nexample, your project was in a directory named `mygame` you would run the\nfollowing:\n```batch\nlove mygame\n```\n\nA small example program which displays white text on a black background and\nexits when the `escape` key is pressed is as follows:\n\n```lua\nfunction love.draw()\n  love.graphics.print('Hello World!', 20, 20)\nend\n\nfunction love.keypressed(key)\n  if key == \"escape\" then\n    love.event.quit()\n  end\nend\n```\n\nThe [doc/api.md](doc/api.md) file provides a reference and overview of all of\nthe built-in LoveDOS modules, functions and callbacks.\n\nThe [doc/packaging.md](doc/packaging.md) file provides instructions for\npackaging your game for distribution.\n\n\n## Building\nInstructions for building the project from source can be found in the\n[doc/building.md](doc/building.md) file.\n\n\n## License\nThis library is free software; you can redistribute it and/or modify it under\nthe terms of the MIT license. See [LICENSE](LICENSE) for details.\n\nLoveDOS includes Lua (MIT license). The full license for Lua can be found at\nthe bottom of the [src/lib/lua/lua.h](src/lib/lua/lua.h) file.\n","funding_links":[],"categories":["Platforms","C","Game Development","Source code"],"sub_categories":["Open source DOS libraries"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frxi%2Flovedos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frxi%2Flovedos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frxi%2Flovedos/lists"}