Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lights Out keymap for winry25t #20538

Merged
merged 7 commits into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions keyboards/winry/winry25tc/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@
#define RGBLIGHT_HUE_STEP 8
#define RGBLIGHT_SAT_STEP 8
#define RGBLIGHT_VAL_STEP 8

#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
136 changes: 136 additions & 0 deletions keyboards/winry/winry25tc/keymaps/lightsout/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
/* Copyright 2023 Tom Parker-Shemilt <palfrey@tevp.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <stdlib.h>

#include QMK_KEYBOARD_H

// clang-format off

// Exact keymap is irrelevant as we're using rows/cols
// but we need _something_ set so we're using no-ops
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO
)};

bool tiles[5][5] = {
{false, false, false, false, false},
{false, false, false, false, false},
{false, false, false, false, false},
{false, false, false, false, false},
{false, false, false, false, false},
};

/* Because snake pattern of leds */
const uint8_t remap[25] = {
20,21,22,23,24,
19,6,7,8,9,
18,5,0,1,10,
17,4,3,2,11,
16,15,14,13,12,
};

// clang-format on

bool is_blank(void) {
for (uint8_t y = 0; y < 5; y++) {
for (uint8_t x = 0; x < 5; x++) {
if (tiles[x][y]) {
return false;
}
}
}
return true;
}

void do_move(uint8_t x, uint8_t y) {
tiles[x][y] ^= true;
if (x > 0) {
tiles[x - 1][y] ^= true;
}
if (y > 0) {
tiles[x][y - 1] ^= true;
}
if (x < 4) {
tiles[x + 1][y] ^= true;
}
if (y < 4) {
tiles[x][y + 1] ^= true;
}
}

void refresh_leds(void) {
for (uint8_t y = 0; y < 5; y++) {
for (uint8_t x = 0; x < 5; x++) {
uint8_t tile = tiles[x][y];
uint8_t index = (y * 5) + x;
if (tile) {
setrgb(RGB_RED, &led[remap[index]]);
} else {
setrgb(RGB_WHITE, &led[remap[index]]);
}
}
}
rgblight_set();
}

uint8_t initial_moves = 1;

void start_game(void) {
rgblight_mode(RGBLIGHT_MODE_STATIC_LIGHT);
srand(timer_read32());
while (true) {
for (uint8_t i = 0; i < initial_moves; i++) {
do_move(rand() % 5, rand() % 5);
}
if (!is_blank()) {
// Catch the "we picked the same location 2*N times" case
break;
}
}
refresh_leds();
}

void keyboard_post_init_user(void) {
rgblight_enable_noeeprom();
start_game();
}

bool won = false;

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
if (record->event.pressed) {
if (won) {
initial_moves++;
won = false;
start_game();
} else {
uint8_t x = record->event.key.col;
uint8_t y = record->event.key.row;
do_move(x, y);
if (is_blank()) {
rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL);
won = true;
}
}
}
refresh_leds();
return true;
}
3 changes: 3 additions & 0 deletions keyboards/winry/winry25tc/keymaps/lightsout/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Lights Out game

Implements a "lights out" mode as per https://en.m.wikipedia.org/wiki/Lights_Out_(game) with a single move having been played on start. On completion of the game, the Rainbow Swirl pattern is displayed. If another key is then pressed, the game resets, with the initial number of moves incremented by one.