{"id":23121133,"url":"https://github.com/jepemo/malvado","last_synced_at":"2026-05-02T03:32:10.963Z","repository":{"id":81265271,"uuid":"82058006","full_name":"jepemo/malvado","owner":"jepemo","description":"A game programming library with  \"DIV Game Studio\"-style processes for Lua/Love2D","archived":false,"fork":false,"pushed_at":"2025-09-17T17:16:37.000Z","size":414,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-17T18:58:24.016Z","etag":null,"topics":["2d-game-engine","divgamestudio","dsl","game-development","game-engine","love2d","lua"],"latest_commit_sha":null,"homepage":"https://jepemo.github.io/malvado/","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jepemo.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-02-15T12:23:55.000Z","updated_at":"2025-09-17T17:16:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"65e3c3c0-b343-4d35-89a9-70588d940509","html_url":"https://github.com/jepemo/malvado","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jepemo/malvado","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmalvado","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmalvado/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmalvado/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmalvado/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jepemo","download_url":"https://codeload.github.com/jepemo/malvado/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jepemo%2Fmalvado/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32522245,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["2d-game-engine","divgamestudio","dsl","game-development","game-engine","love2d","lua"],"created_at":"2024-12-17T06:15:41.333Z","updated_at":"2026-05-02T03:32:10.952Z","avatar_url":"https://github.com/jepemo.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# malvado\nA game programming library with  \"DIV Game Studio\"-style processes for Lua/Love2D\n\nYou can find the *malvado* documentation on the [Website](https://jepemo.github.io/malvado/)\n\n- [Features](#features)\n- [Getting Started](#getting-started)\n  - [Installation](#installation)\n  - [Run Examples](#examples)\n  - [Hello World Example](#hello-world-example)\n\n## Features\n\n\n\n## Getting Started\n\n### Installation\n* Install [Love2d](https://love2d.org/)\n* Install **Malvado**:\n```bash\nluarocks install malvado\n```\nFor the documentation generation, if you download from github, you need [LDoc](https://github.com/stevedonovan/LDoc) and [Penlight](https://github.com/stevedonovan/Penlight) .\n\n### Run Examples\n```\nlove examples/helloworld\n# or\nlove examples/demo\n# or\nlove examples/space_asteroids\n# or\nlove examples/bench\n```\n\n### Hello World Example\n\n```lua\nrequire 'malvado'\n\n-- Define (not run) one process\nHelloWorld = process(function(self)\n  -- Set background to grey\n  clear_screen(250, 250, 250)\n\n  -- Define global font (size, color (r, g, b))\n  local font = font(60, 0, 0, 0)\n\n  -- Write the \"Hello world\" text in the process position\n  write(font, self.x, self.y, self.text)\n\n  -- Runs until escape key is pressed\n  while not key(\"escape\") do\n    -- Render the process\n    frame()\n  end\nend)\n\n-- Start (main)\nmalvado.start(function()\n  -- Set the title text of the window\n  set_title(\"Hello world\")\n\n  -- Launch the background process\n  -- The application runs until there is no running process.\n  HelloWorld { x=240, y=280, text=\"Hello World\" }\nend)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjepemo%2Fmalvado","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjepemo%2Fmalvado","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjepemo%2Fmalvado/lists"}