{"id":16337518,"url":"https://github.com/vinatorul/mageon","last_synced_at":"2025-10-25T23:31:20.972Z","repository":{"id":78873670,"uuid":"53160440","full_name":"Vinatorul/Mageon","owner":"Vinatorul","description":"A roguelike game made at 7DRL 2016","archived":false,"fork":false,"pushed_at":"2016-03-12T23:52:17.000Z","size":9063,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-31T12:04:01.710Z","etag":null,"topics":["game","game-7drl","rust","sdl"],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/Vinatorul.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}},"created_at":"2016-03-04T19:30:53.000Z","updated_at":"2019-07-11T11:50:26.000Z","dependencies_parsed_at":"2023-03-24T05:03:25.369Z","dependency_job_id":null,"html_url":"https://github.com/Vinatorul/Mageon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinatorul%2FMageon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinatorul%2FMageon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinatorul%2FMageon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinatorul%2FMageon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vinatorul","download_url":"https://codeload.github.com/Vinatorul/Mageon/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238223769,"owners_count":19436722,"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":["game","game-7drl","rust","sdl"],"created_at":"2024-10-10T23:47:16.321Z","updated_at":"2025-10-25T23:31:20.063Z","avatar_url":"https://github.com/Vinatorul.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mageon\n[![license](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Vinatorul/Mageon/blob/master/LICENSE)\n\n[7DRL](http://7drl.org/) 2016 entry\n\nOfficial start time, 10:00am MSK, 06 March 2016\nOffical end time 03:00am MSK, 13 March 2016\nTotal time spent 161 hour.\nReal time spent about 24 hours.\n\n# Gameplay\n\nYour main objective is to find the right portal from many other.\nFor every fourth portal you will regain full help.\nUse indicators in left upper corner.\n![](gameplay.gif)\n\n# How to play\n\nUse numpad, vi keys or arrow to move or skip turns.\nHave fun.\n![](gameover.gif)\n\n# Requirements\n\n## Rust\n\nYou can simply dowload it on official [dowload page](https://www.rust-lang.org/downloads.html).\n\n## *SDL2.0 and SDL2.0_image development libraries*\n### Linux\nInstall these through your favourite package management tool, or via\nhttp://www.libsdl.org/\n\nUbuntu example:\n\u003e sudo apt-get install libsdl2-dev livsdl-image-2-1.0\n\nFedora example:\n\u003e sudo dnf install SDL2-devel SDL2-image\n\nYou might also need a C compiler (`gcc`).\n\n### Mac OS X\n#### If you are using homebrew\nOn OSX, it's a good idea to install these via\n[homebrew][homebrew].\n\n\u003e brew install sdl2 sdl2_image\n\nThen add the following to your `~/.bash_profile` if not already present.\n\n\u003e export LIBRARY_PATH=\"$LIBRARY_PATH:/usr/local/lib\"\n\n##### Otherwise if you are using macports\nYou can also get sdl2 via `macports`.\n\n\u003e sudo port install libsdl2 libsdl2_image\n\nThen add the following to your `~/.bash_profile` if not already present.\n\n\u003e export LIBRARY_PATH=\"$LIBRARY_PATH:/opt/local/lib/\"\n\nIf you're having issues with either homebrew or macports, [see here][pdev-issue].\n\n### Windows (MinGW)\nOn Windows, make certain you are using the MinGW version of SDL; the native\nversion will crash on `sdl2::init`.\n\n1. Download mingw development libraries from\nhttp://www.libsdl.org/ (SDL2-devel-2.0.x-mingw.tar.gz).\n2. Unpack to a folder of your choosing (You can delete it afterwards).\n3. Copy all lib files from\n    \u003e SDL2-devel-2.0.x-mingw\\SDL2-2.0.x\\x86_64-w64-mingw32\\lib\n\n    inside\n    \u003e C:\\Rust\\bin\\rustlib\\x86_64-pc-windows-gnu\\lib\n\n    For Multirust Users, this folder will be in\n    \u003e C:\\Users\\{Your Username}\\AppData\\Local\\.multirust\\toolchains\\{current toolchain}\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\n\n4. Copy SDL2.dll from\n    \u003e SDL2-devel-2.0.x-mingw\\SDL2-2.0.x\\x86_64-w64-mingw32\\bin\n\n    into your cargo project, right next to your Cargo.toml.\n\n# Building\n\nJust clone this repo.\n\n\u003e git clone https://github.com/Vinatorul/Mageon.git \u0026\u0026 cd Mageon\n\nAnd then build it with cargo.\n\n\u003e cargo build --release\n\nThe binary will be located at \"target/release\" folder.\n\n## License\n`Mageon` is licensed under the MIT license. Please read the LICENSE file in this repository for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinatorul%2Fmageon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinatorul%2Fmageon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinatorul%2Fmageon/lists"}