{"id":19661302,"url":"https://github.com/deerborg/minesweeper","last_synced_at":"2025-08-17T03:34:32.192Z","repository":{"id":228553282,"uuid":"765281149","full_name":"deerborg/MineSweeper","owner":"deerborg","description":"☕ The game table (matrix) created with values ​​taken from the user is a text-based game based on the scenario of the player progressing without selecting the mines (*) and winning or losing.","archived":false,"fork":false,"pushed_at":"2024-05-08T23:10:24.000Z","size":66,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-21T15:04:26.094Z","etag":null,"topics":["minesweeper","patika-dev","patika-plus","patika-studies"],"latest_commit_sha":null,"homepage":"https://www.patika.dev/","language":"Java","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/deerborg.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-02-29T16:12:34.000Z","updated_at":"2024-08-03T10:54:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"db004f7b-aa25-437c-a6c5-2a7baa53c175","html_url":"https://github.com/deerborg/MineSweeper","commit_stats":null,"previous_names":["deerborg/minesweeper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/deerborg/MineSweeper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FMineSweeper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FMineSweeper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FMineSweeper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FMineSweeper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deerborg","download_url":"https://codeload.github.com/deerborg/MineSweeper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FMineSweeper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270803320,"owners_count":24648684,"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-17T02:00:09.016Z","response_time":129,"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":["minesweeper","patika-dev","patika-plus","patika-studies"],"created_at":"2024-11-11T16:06:53.522Z","updated_at":"2025-08-17T03:34:32.164Z","avatar_url":"https://github.com/deerborg.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![minesweeper](https://github.com/deerborg/MineSweeper/assets/152931069/eb72d0e0-3489-437e-ac20-1e363d89aaa2)\n# MINESWEEPER\n\n\n---\n    Kullanıcıdan alınan değerler ile oluşturulan oyun tablosu (matris), oyuncunun mayınları (*) seçmeden ilerleyeceği\n    kazanma veya kaybetme senaryosu üzerine kurulmuş metin tabanlı oyundur. \n---\n    Requires Java 21.0.2 to be controlled\n\n## METOTLAR\n| Sıra | Metot  | Açıklama |\n| :---:         |     :---:      |          :---  |\n| 1   |   goPlay()| Oyunu başlatır    |\n| 2   |   createBoardMap()   | managerMap değişkeni tanımlanırsa mayınları, playerMap değişkeni tanımlanırsa sade oyun alanını oluşturur    |\n| 3   |   checkMineMap()   | Oyuncunun göreceği ve güncellenecek olan haritayı oluşturur, mayın sayısına göre konumlarında rakam güncellemesi yapar   |\n| 4   |   addMine() | Rastgele konumlarda, haritanın alanının %25 kadar mayın (*) oluşturur    |\n| 5   |   controlMine()  | Girilen yeni konumda mayın işaretlemeleri için dikey ve çapraz sorgu yapar.     |\n\n\n\n## PROJE ÖZET\n| Sıra |  Açıklama |\n| :---:         |:---     |     \n| 1   |    2 X 2 ve daha büyük tahta oluşturulmalıdır, yoksa oyunu başlatmaz tekrar değer girmenizi ister    |\n| 2   |    Oluşturulan oyun tahtası içerisinde konum girmenizi ister, girilen konum alandan büyük veya 0'dan küçük olamaz ve string ifadeler olamaz, girildiği takdirde tekrar değer ister   |\n| 3   |    Girilen yeni konum kaydedilir ve bir daha girilmemesi için koşul oluşturur    |\n| 4   |    Girilen yeni konumda mayın (*) yok ise oyun sizden konum istemeye devam eder    |\n| 5   |    Girilen konum çevresinde (çapraz ve dikey) mayın (*) var ise, mayın adedi kadar değeri oyun tahtasında yazar    |\n| 6   |    Girilen konumda mayın (*) var ise döngü biter, kaybedersiniz    |\n| 7   |    Girilen tüm konumların %75 kadarı temiz ise oyunu bitirir, kazanırsınız    |\n\n## NOT\n      \n      Integer diziler üzerine oluşturulan proje; \n      \n    * \"-\" konumların \"0\" olmama durumu \n    * Girilen değerlerin tekrar sorgulandığında, 3. bir geçmişi kayıt edememesi\n    * Projede istenen puan değerlendirme durumunu tam anlamıyla karşılıyamaması\n    \n      Sebeplerden dolayı tamamen String dizilere çevrilip, baştan yazılmıştır.\n      3 Mart 2024 02.35 \n   \n ![Güncelleme](https://github.com/deerborg/MineSweeper/commit/21c2bfa68e89c8e00abc09614b9af59bf5d9464c)\n    \n    \n\n## DEMO\n\n![ezgif com-video-to-gif-converter](https://github.com/deerborg/MineSweeper/assets/152931069/381f21cb-6eb5-4503-9342-a8cbe4b1cdab)\n\n\n  \n\n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeerborg%2Fminesweeper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeerborg%2Fminesweeper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeerborg%2Fminesweeper/lists"}