{"id":15176760,"url":"https://github.com/sergeyg22/slotmachineogs","last_synced_at":"2026-02-10T08:31:30.399Z","repository":{"id":113457754,"uuid":"484686384","full_name":"SergeyG22/SlotMachineOGS","owner":"SergeyG22","description":":slot_machine: The application is a model of a slot machine with the ability to rotate and stop the slots","archived":false,"fork":false,"pushed_at":"2022-05-14T18:51:02.000Z","size":7633,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T15:43:39.740Z","etag":null,"topics":["cmake","conan","linux","sfml","window"],"latest_commit_sha":null,"homepage":"","language":"CMake","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/SergeyG22.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-04-23T08:10:53.000Z","updated_at":"2022-05-02T09:16:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"681ad773-c655-49b7-89e2-ad2b0cd29c60","html_url":"https://github.com/SergeyG22/SlotMachineOGS","commit_stats":{"total_commits":24,"total_committers":2,"mean_commits":12.0,"dds":0.375,"last_synced_commit":"3d0507381c6b4d6f46afe4caa21e2015d04dd086"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SergeyG22/SlotMachineOGS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SergeyG22%2FSlotMachineOGS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SergeyG22%2FSlotMachineOGS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SergeyG22%2FSlotMachineOGS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SergeyG22%2FSlotMachineOGS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SergeyG22","download_url":"https://codeload.github.com/SergeyG22/SlotMachineOGS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SergeyG22%2FSlotMachineOGS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272833298,"owners_count":25000870,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"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":["cmake","conan","linux","sfml","window"],"created_at":"2024-09-27T13:41:54.873Z","updated_at":"2026-02-10T08:31:29.744Z","avatar_url":"https://github.com/SergeyG22.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"### SlotMachine\r\n\r\n[![CI - Windows](https://github.com/SergeyG22/SlotMachineOGS/actions/workflows/windows_builds.yml/badge.svg)](https://github.com/SergeyG22/SlotMachineOGS/actions/workflows/windows_builds.yml)\u003cbr\u003e\r\n[![CI - linux](https://github.com/SergeyG22/SlotMachineOGS/actions/workflows/linux_builds.yml/badge.svg)](https://github.com/SergeyG22/SlotMachineOGS/actions/workflows/linux_builds.yml)\u003cbr\u003e\r\nNot tested under MacOS (no distribution).\u003cbr\u003e\u003cbr\u003e\r\nThe application is a model of a slot machine with the ability to rotate and stop the slots. If the player does not press the stop button, the reels will automatically stop after 15 seconds.\r\n\r\n### Installing dependencies\r\n\r\nPython interpreter and the Conan package manager must be installed.\r\nCMake 3.14 or higher should also be installed.\r\n\r\nTo install Conan, enter the following command:\r\n\r\n```\r\npip3 install conan \r\n```\r\n\r\nTo check that the Conan is installed correctly enter in cmd:\r\n\r\n```\r\nconan --version\r\n```\r\n\r\nDownload the sources and install the required dependencies:\r\n```\r\ngit clone https://github.com/SergeyG22/SlotMachineOGS.git\r\ncd SlotMachineOGS\r\ncd cmake\r\nconan install ../scripts\r\n```\r\n\r\nTo switch between Debug or Release builds:\r\n\r\n```\r\ncd cmake\r\nconan install -s build_type=Debug ../scripts \r\n```\r\n```\r\ncd cmake\r\nconan install -s build_type=Release ../scripts \r\n```\r\n\r\nAfter these commands, Conan will build a dependency graph and download the necessary packages.\r\n\r\n### Building from source\r\n```\r\ncd SlotMachineOGS\r\nmkdir build\r\ncd build\r\ncmake ..\r\n```\r\n\r\nFor Linux enter (debug or release version):\r\n\r\n```\r\ncmake -DCMAKE_BUILD_TYPE=Debug ..\r\nmake\r\n```\r\n```\r\ncmake -DCMAKE_BUILD_TYPE=Release ..\r\nmake\r\n```\r\n\r\nFor Windows enter (debug or release version):\r\n\r\n```\r\ncmake --build build --config Debug\r\n```\r\n```\r\ncmake --build build --config Release\r\n```\r\nAfter that, an executable file will appear in 'build' the directory\r\n\r\n**To work successfully, the \"resource\" folder must be located on the directory above that of the executable file**\u003cbr\u003e\u003cbr\u003e\r\n\r\n### Keyboard control:\r\n [R] - rotate slots \u003cbr\u003e\r\n [Space] - stop slots\r\n### Mouse control:\r\n [Start] - rotate slots [click left mouse button] \u003cbr\u003e\r\n [Stop] - stop slots [click left mouse button]\r\n### Preview\r\n![alt text](https://github.com/SergeyG22/SlotMachineOGS/blob/main/doc/animations/animation.gif)\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsergeyg22%2Fslotmachineogs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsergeyg22%2Fslotmachineogs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsergeyg22%2Fslotmachineogs/lists"}