{"id":20046655,"url":"https://github.com/dytsou/reversi","last_synced_at":"2026-03-19T13:15:36.870Z","repository":{"id":211387192,"uuid":"668600536","full_name":"dytsou/reversi","owner":"dytsou","description":"A fully-featured implementation of the classic Reversi board game in LabVIEW, featuring both local play and online multiplayer capabilities.","archived":false,"fork":false,"pushed_at":"2025-04-27T17:57:36.000Z","size":320,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T01:10:19.252Z","etag":null,"topics":["labview","monte-carlo-methods","nycu","nycu-course","reversi"],"latest_commit_sha":null,"homepage":"","language":"LabVIEW","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dytsou.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,"zenodo":null}},"created_at":"2023-07-20T07:28:43.000Z","updated_at":"2025-04-27T17:59:03.000Z","dependencies_parsed_at":"2023-12-08T07:43:02.357Z","dependency_job_id":"44df7ceb-ac30-40f2-a6f5-cbc5580b9d4c","html_url":"https://github.com/dytsou/reversi","commit_stats":null,"previous_names":["dytsou/reversi"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dytsou/reversi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dytsou%2Freversi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dytsou%2Freversi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dytsou%2Freversi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dytsou%2Freversi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dytsou","download_url":"https://codeload.github.com/dytsou/reversi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dytsou%2Freversi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29240704,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T18:06:38.086Z","status":"ssl_error","status_checked_at":"2026-02-08T18:06:09.124Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["labview","monte-carlo-methods","nycu","nycu-course","reversi"],"created_at":"2024-11-13T11:25:29.895Z","updated_at":"2026-03-19T13:15:36.851Z","avatar_url":"https://github.com/dytsou.png","language":"LabVIEW","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reversi Game in LabVIEW\n\nA fully-featured implementation of the classic Reversi board game in LabVIEW, featuring both local play and online multiplayer capabilities.\n\n## Features\n\n- Classic Reversi/Othello gameplay on an 8x8 board\n- Player vs. Computer mode with AI opponent\n  - AI implemented using minimax algorithm with heuristic evaluation\n  - Multiple difficulty levels via search depth\n- Online multiplayer mode (client-server architecture)\n- Beautiful graphical interface\n\n## Project Structure\n\nThe project is organized into the following components:\n\n### Main VIs\n- `main.vi` - Main game interface for local play\n- `client.vi` - Client interface for online play\n- `server.vi` - Server application for hosting online games\n- `online(client1st).vi` - Online game where client moves first\n- `online(server1st).vi` - Online game where server moves first\n\n### Game Logic (subvis.lvlib)\n- `availablePlaces.vi` - Identifies valid move locations\n- `countResult.vi` - Tallies the score\n- `heuristic.vi` - Evaluates board positions for AI\n- `isEnd.vi` - Determines if the game has ended\n- `minimax.vi` - AI decision algorithm\n- `randomMove.vi` - Random move generator\n- `takeStep.vi` - Executes a game move\n\n### Board Visualization (drawPlate.lvlib)\n- `canBePlaced.vi` - Verifies if a piece can be placed at a position\n- `initialize(picture).vi` - Sets up the initial board\n- `putPiece(picture).vi` - Places a piece on the board\n\n## Requirements\n\n- LabVIEW 2022 or later\n- TCP/IP connectivity for online play\n\n## Getting Started\n\n1. Open `othello.lvproj` in LabVIEW\n2. Run `main.vi` to play locally or:\n   - Run `server.vi` on the host machine\n   - Run `client.vi` on the connecting machine\n\n## Game Rules\n\nReversi (also known as Othello) is played on an 8×8 board with discs that are black on one side and white on the other.\n\n- Players take turns placing discs on the board with their assigned color facing up\n- To make a valid move, a player must place a disc such that it creates a straight line (horizontal, vertical, or diagonal) between the newly placed disc and another of their discs, with one or more of the opponent's discs in between\n- All opponent's discs that are in this straight line are flipped to the current player's color\n- If a player cannot make a valid move, their turn is skipped\n- The game ends when neither player can make a valid move\n- The player with the most discs of their color on the board wins\n\n## Development\n\nThis project uses LabVIEW's native libraries for GUI rendering and TCP/IP communication for networking functionality.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdytsou%2Freversi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdytsou%2Freversi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdytsou%2Freversi/lists"}