{"id":16053449,"url":"https://github.com/deadsuperhero/actionwheel","last_synced_at":"2026-03-19T04:17:00.112Z","repository":{"id":145354222,"uuid":"343039187","full_name":"DeadSuperHero/ActionWheel","owner":"DeadSuperHero","description":"A VerbCoin / Sierra hybrid for Adventure Game Studio","archived":false,"fork":false,"pushed_at":"2021-02-28T07:54:54.000Z","size":10984,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-13T06:47:43.823Z","etag":null,"topics":["adventuregamestudio","ags"],"latest_commit_sha":null,"homepage":"","language":"AGS Script","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/DeadSuperHero.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","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}},"created_at":"2021-02-28T06:42:44.000Z","updated_at":"2023-09-28T02:05:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"048c4c0e-e9e6-40ab-9b6d-4434eb5d93a8","html_url":"https://github.com/DeadSuperHero/ActionWheel","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/DeadSuperHero/ActionWheel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeadSuperHero%2FActionWheel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeadSuperHero%2FActionWheel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeadSuperHero%2FActionWheel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeadSuperHero%2FActionWheel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeadSuperHero","download_url":"https://codeload.github.com/DeadSuperHero/ActionWheel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeadSuperHero%2FActionWheel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28655212,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"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":["adventuregamestudio","ags"],"created_at":"2024-10-09T01:42:21.759Z","updated_at":"2026-01-22T05:08:26.258Z","avatar_url":"https://github.com/DeadSuperHero.png","language":"AGS Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ActionWheel\n_Note: This template is designed for AGS 3.5.0_\n\nActionWheel is an open source game template for\n[Adventure Game Studio](https://adventuregamestudio.co.uk). The goal of this\ndesign project is three things:\n\n1. **Visual Simplicity** - in point-and-click adventure games, it's sometimes easy\nto end up in a situation where the game UI elements take up way too much space.\nWorse yet, sometimes there's a significant amount of distance between the\n _thing you want to click_ (a verb icon, like \"Use\") and a _the thing you need to\n click afterwards_ (an object, like a lever)\n \n ![Picking up items](https://github.com/DeadSuperHero/ActionWheel/blob/main/Screenshots/pick-up-items.gif)\n\n ActionWheel attempts to solve this problem by putting everything you need in\n one place, at the shortest possible distance from where you clicked. The idea\n is similar to VerbCoin by LucasArts, which was used in some of their most\n popular games. However, the design is also highly influenced by the Sierra\n Creative Interpreter, courtesy of Sierra On-Line. My design intention was to\n put both systems together into something new.\n\n 2. **Context-Driven Indication** - ActionWheel uses several different kinds of\n labels to indicate to players certain kinds of context:\n\n * Cursor Label - A hovering label next to the mouse pointer appears when\n all interfaces are closed, showing Characters, Hotspots, and Objects in a given\n room. This easily shows to players what things in an environment can be\n interacted with.\n * Wheel Label - The Wheel Label clearly explains the buttons on the wheel.\n Additionally, the label will contextually update for certain kinds of\n properties - for example, the \"Use\" icon can change to \"Pick Up\" or \"Touch\" to\n indicate what kind of action is available for that button.\n * Inventory Label - Finally, the inventory window shows what icon is currently\n under the mouse.\n \n ![Label-Switching for Actions](https://github.com/DeadSuperHero/ActionWheel/blob/main/Screenshots/multi-context.gif)\n\n 3. **Integration of Elements** - ActionWheel aims to design a new kind of\n point-and-click interface that incorporates traditional pop-up windows into\n a stationary cursor area, based on where the player clicks. Similar to the first\n principle, the intention is to keep the most important, most-accessed functions\n within immediate reach for the player. In addition, this particular design is\n intended to be friendly to both traditional desktop inputs, as well as mobile\n tablets.\n \n ![Opening Inventory anywhere](https://github.com/DeadSuperHero/ActionWheel/blob/main/Screenshots/inv-open-2.gif)\n\n ## Current Status\n A very basic demo game has been put together with a 1.0 release of the GUI's\n functions. Although the code is a little ugly and a little hacky, it works well\n enough to release as a template.\n\n There are a few future goals that I want to explore for the project:\n * **Custom Dialog Rendering** - I'd love to figure out how to incorporate\n custom dialog buttons with icons into the UI. This is somewhat harder, and\n requires the use of dynamic sprites, but it's 100% possible that speech options\n could also be factored into the UI somehow.\n * **Tablet Optimization** - I have a few ideas on how AGS might be optimized\n for touch interfaces, and want to experiment with them in the near future. The\n biggest two things are: representing touch inputs to an engine designed around\n mouse clicks, and visually showing to players exactly where fingers are positioned\n using the AGS Camera API.\n\n ## How to start using this!\n\n There are two basic ways to get up and running:\n 1. Git clone this repo and open up the demo game\n 2. Git clone this repo, and instead put the `actionwheel.agt` file in the folder\n where your AGS Editor lives.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeadsuperhero%2Factionwheel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeadsuperhero%2Factionwheel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeadsuperhero%2Factionwheel/lists"}