{"id":23002479,"url":"https://github.com/thewhetherman/ups-and-downs","last_synced_at":"2026-05-01T09:31:51.948Z","repository":{"id":261894301,"uuid":"882841947","full_name":"TheWhetherMan/ups-and-downs","owner":"TheWhetherMan","description":"Custom \"board\" game inspired by LIFE: Twists \u0026 Turns","archived":false,"fork":false,"pushed_at":"2025-03-29T22:41:13.000Z","size":5290,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T14:13:25.035Z","etag":null,"topics":["board-game","c-sharp","touchscreen","wpf","xaml"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":false,"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/TheWhetherMan.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}},"created_at":"2024-11-03T22:20:56.000Z","updated_at":"2025-03-29T22:39:16.000Z","dependencies_parsed_at":"2024-11-09T04:27:10.504Z","dependency_job_id":"56b5a92b-ddc5-467d-a31b-f47214e8bbf2","html_url":"https://github.com/TheWhetherMan/ups-and-downs","commit_stats":null,"previous_names":["thewhetherman/ups-and-downs"],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWhetherMan%2Fups-and-downs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWhetherMan%2Fups-and-downs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWhetherMan%2Fups-and-downs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWhetherMan%2Fups-and-downs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheWhetherMan","download_url":"https://codeload.github.com/TheWhetherMan/ups-and-downs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246828505,"owners_count":20840474,"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":["board-game","c-sharp","touchscreen","wpf","xaml"],"created_at":"2024-12-15T07:11:10.531Z","updated_at":"2026-05-01T09:31:51.912Z","avatar_url":"https://github.com/TheWhetherMan.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"```                                                                                                        \n##     ## ########   ######      ####      ########   #######  ##      ## ##    ##  ###### \n##     ## ##     ## ##    ##    ##  ##     ##     ## ##     ## ##  ##  ## ###   ## ##    ##\n##     ## ##     ## ##           ####      ##     ## ##     ## ##  ##  ## ####  ## ##      \n##     ## ########   ######     ####       ##     ## ##     ## ##  ##  ## ## ## ##  ###### \n##     ## ##              ##   ##  ## ##   ##     ## ##     ## ##  ##  ## ##  ####       ##\n##     ## ##        ##    ##   ##   ##     ##     ## ##     ## ##  ##  ## ##   ### ##    ##\n #######  ##         ######     ####  ##   ########   #######   ###  ###  ##    ##  ###### \n```\n\n## Overview\n\n_Ups \u0026 Downs_ is a reimagining of the Milton Bradley board game _The Game of Life: Twists \u0026 Turns_.\n\n## Architecture\n\n_Ups \u0026 Downs_ was originally being built using **Blazor** such that it could be run on a Raspberry Pi 5. While that did work, it was also a pain to work _with_. The project is being built using **WPF** now.\n\n![Screenshot 2025-03-29 145358](https://github.com/user-attachments/assets/9cab0133-1af3-4b65-bee4-090515defedd)\n\n## Gameplay Mechanics \u0026 Changes\n\n_The Game of Life: Twists \u0026 Turns_ has some pretty cool aspects to it, but it also has some shortcomings that I think can be improved on:\n\n### Streamlined turn-taking -\u003e Automation \u0026 UX Optimization\n\nIn _Twists \u0026 Turns_, whenever it's a player's turn, they have to:\n\n1. Grab the game unit\n2. Insert their card, wait briefly for it read the card detent and be ready to accept input\n3. Press 'Spin'\n4. Move their car-pawn on the board\n5. Press the dial buttons as needed based on where they land on the board\n6. Input numeric/selector values via the +/- buttons and confirm via the 'Enter' button\n\nStep 6 alone, in the simplest case such as gaining/losing money, it can involve **no fewer than 6 button presses**:\n\n1. '$' button\n2. Numeric value via dial buttons, with a minimum of +/- 100 increments, so three digits\n3. +/- button\n4. 'Enter' button\n\nAll the while, the other players don't have much to do. Therefore, my intent is to streamline this part of the game heavily:\n\n1. Anything that doesn't add to gameplay and can be automated should be handled by the game software.\n   * While it's nice that _Twists \u0026 Turns_ has physical cards to read, they add even more downtime during a player's turn. They rarely do more than say, \"This thing happened, add/remove $X and/or life points\". This game mechanic will be handled by the game unit (see below).\n   * Effects of landing on a given space will be handled by selecting the corresponding space on the game unit, and from there the game unit will quickly walk through the results while taking into account favors and demerits (see below).\n2. Whenever a user needs to interact with the game itself via the touchscreen or otherwise, the interaction should require as few steps as possible.\n\n### More dynamic situations -\u003e Randomized Events \u0026 'LIFE' Cards\n\nIn _Twists \u0026 Turns_, there's a significant gap during gameplay where you aren't really doing anything. There isn't any strategy to speak of really outside of momentary decisions during your turn. Since this is a simple game, that's not a terrible thing, but I'd like to add a couple of mechanics that a player can at least be thinking about outside of their turn. Besides the turns that player's take, there will also be randomized events that occur during and between turns. \n\nWhat used to be a player drawing and reading a LIFE card will now be handled entirely by the game unit, saving time for all players.\n\n### More agency/control for each player -\u003e (Un)Lucky Stars\n\nRandomized events that pertain to a particular player will have a modifier mechanic that the player can control to hopefully improve the outcome. This is where lucky stars come into play. If a player has them on hand to cash in, they can improve the outcome of an event if they choose to. If they have accumulated any unlucky stars, then they _must_ use them in the event, which will worsen the outcome.\n\n## Hardware\n\nHardware being targeted:\n\n```\nGMKtec Mini PC\n1280x800 10.1\" Touchscreen\nMini Receipt Printer\n```\n\n## References\n\n![image](https://github.com/user-attachments/assets/163c3cba-c944-4abc-a8bb-a59d6635b812)\n\n## Attributions\n\n### Sprites \u0026 Images\n\n[Icons8](https://icons8.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewhetherman%2Fups-and-downs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthewhetherman%2Fups-and-downs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewhetherman%2Fups-and-downs/lists"}