{"id":13407204,"url":"https://github.com/superctr/mmlgui","last_synced_at":"2025-03-14T11:31:10.487Z","repository":{"id":48067706,"uuid":"261672271","full_name":"superctr/mmlgui","owner":"superctr","description":"GUI for ctrmml","archived":false,"fork":false,"pushed_at":"2024-04-15T16:56:48.000Z","size":233,"stargazers_count":49,"open_issues_count":4,"forks_count":8,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-07-31T20:26:54.450Z","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":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/superctr.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","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":"2020-05-06T06:33:06.000Z","updated_at":"2024-07-11T00:10:52.000Z","dependencies_parsed_at":"2024-10-26T02:40:37.097Z","dependency_job_id":"38c6a240-ccf5-446a-a584-d47ac94fcede","html_url":"https://github.com/superctr/mmlgui","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superctr%2Fmmlgui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superctr%2Fmmlgui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superctr%2Fmmlgui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superctr%2Fmmlgui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/superctr","download_url":"https://codeload.github.com/superctr/mmlgui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243569400,"owners_count":20312418,"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-07-30T20:00:29.932Z","updated_at":"2025-03-14T11:31:09.241Z","avatar_url":"https://github.com/superctr.png","language":"C","readme":"mmlgui\n======\n\n### [Latest automatic build can be found here](https://nightly.link/superctr/mmlgui/workflows/win32-i686/master/binary)\n\nMML (Music Macro Language) editor and compiler GUI. Powered by the [ctrmml](https://github.com/superctr/ctrmml) framework.\n\n## Features\n\n- MML text editor with instant feedback\n- Supports Sega Mega Drive sound chips (YM2612, SN76489)\n- Visualization of MML tracks\n- Highlights currently playing notes in the editor window\n- VGM and MDS file export\n- Supports channel muting/isolation\n\n### Future features / TODO\n\n- Configuration window\n- Support more sound chips\n- More track visualizations\n\n## Using\n\nFor Windows (or Wine) users, you can download the latest automatic build from [here](https://nightly.link/superctr/mmlgui/workflows/win32-i686/master/binary)\n\nFeel free to join the [Discord server](https://discord.com/invite/BPwM6PJv7T)\nif you have any questions or feedback.\n\nSee [ctrmml/mml_ref.md](https://github.com/superctr/ctrmml/blob/master/mml_ref.md) for an MML reference.\n\n![Screenshot](doc/screenshot.png)\n\n## Compiling using CMake\n\n### Prerequisites\nFirst, make sure all submodules have been cloned. If you didn't clone this repository\nwith `git clone --recurse-submodules`, do this:\n\n\tgit submodule update --init\n\nMake sure you have the following packages installed: (this list might not be 100% correct)\n\n\tglfw\n\nYou also need to have `pkg-config` (or a compatible equivalent such as `pkgconf`) installed.\n\nNotice that there is no need to install libvgm for CMake builds, as it is built by the mmlgui target.\n\n#### Building\n\n\tmkdir build \u0026\u0026 cd build\n\tcmake ..\n\tcmake --build .\n\t./mmlgui\n\nTo build a debug or release version, add `-DCMAKE_BUILD_TYPE=Debug` or `-DCMAKE_BUILD_TYPE=Release` to the first\ncmake call.\n\nNote that once cmake has setup the build environment, it is only needed to call `cmake --build .` for successive builds.\n\n## Compiling using the makefile\nThe makefile is currently used for static linked builds for Windows as well as for address sanitizer builds.\nOnce these features are integrated in the CMake build, the makefiles will most likely be removed.\n\n### Prerequisites\nFirst, make sure all submodules have been cloned. If you didn't clone this repository\nwith `git clone --recurse-submodules`, do this:\n\n\tgit submodule update --init\n\nMake sure you have the following packages installed: (this list might not be 100% correct)\n\n\tglfw  libvgm\n\n#### Installing libvgm\n\nIf libvgm is not available on your system, you need to install it manually. Example:\n\n##### Linux\n\n\tmkdir build \u0026\u0026 cd build\n\tcmake ..\n\tmake\n\tsudo make install\n\n##### Windows (MSYS2)\nThe `CMAKE_INSTALL_PREFIX` should of course match where your MSYS2/MinGW install folder is.\n\n\tmkdir build \u0026\u0026 cd build\n\tcmake .. -G \"MSYS Makefiles\" -D AUDIODRV_LIBAO=OFF -D CMAKE_INSTALL_PREFIX=/mingw64\n\tmake\n\tmake install\n\n### Building\nOnce all prerequisites are installed, it should be as easy as\n\n\tmake\n\nTo build a release binary, add `RELEASE=1`.\n\n### Special thanks\n\n- [libvgm](https://github.com/ValleyBell/libvgm)\n- [glfw](https://www.glfw.org/)\n- [Dear ImGui](https://github.com/ocornut/imgui)\n- [Dear ImGui addons branch](https://github.com/Flix01/imgui)\n- [ImGuiColorTextEditor](https://github.com/BalazsJako/ImGuiColorTextEdit)\n\n### Copyright\n\n\u0026copy; 2020-2021 Ian Karlsson\n\n\tThis program is free software; you can redistribute it and/or modify\n\tit under the terms of the GNU General Public License as published by\n\tthe Free Software Foundation; either version 2 of the License, or\n\t(at your option) any later version.\n\n\tThis program is distributed in the hope that it will be useful,\n\tbut WITHOUT ANY WARRANTY; without even the implied warranty of\n\tMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\tGNU General Public License for more details.\n\n\tYou should have received a copy of the GNU General Public License along\n\twith this program; if not, write to the Free Software Foundation, Inc.,\n\t51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperctr%2Fmmlgui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuperctr%2Fmmlgui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperctr%2Fmmlgui/lists"}