tetris/game-ctrl/buttons.c

87 lines
1.7 KiB
C
Raw Permalink Normal View History

2024-03-19 16:46:52 +01:00
#include <stddef.h>
#include <stdint.h>
#include <msp430g2553.h>
2024-03-14 14:46:31 +01:00
#include "buttons.h"
2024-03-18 12:51:57 +01:00
#include "scheduler.h"
2024-03-14 14:46:31 +01:00
#include "shapes.h"
#include "canvas.h"
static uint8_t buttonsMoveLeftPressed() {
2024-03-19 16:46:52 +01:00
static uint8_t last = 0;
uint8_t current = (P2IN & BIT4);
uint8_t res = (current != 0) && (current != last);
last = current;
return res;
2024-03-14 14:46:31 +01:00
}
static uint8_t buttonsMoveRightPressed() {
2024-03-19 16:46:52 +01:00
static uint8_t last = 0;
uint8_t current = (P2IN & BIT0);
uint8_t res = (current != 0) && (current != last);
last = current;
return res;
2024-03-14 14:46:31 +01:00
}
static uint8_t buttonsRotateLeftPressed() {
2024-03-19 16:46:52 +01:00
static uint8_t last = 0;
uint8_t current = (P2IN & BIT3);
uint8_t res = (current != 0) && (current != last);
last = current;
return res;
2024-03-15 12:54:32 +01:00
}
static uint8_t buttonsRotateRightPressed() {
2024-03-19 16:46:52 +01:00
static uint8_t last = 0;
uint8_t current = (P2IN & BIT1);
uint8_t res = (current != 0) && (current != last);
last = current;
return res;
}
static uint8_t buttonsMoveDownPressed() {
2024-03-19 17:42:25 +01:00
return P2IN & BIT2;
2024-03-14 17:25:45 +01:00
}
2024-03-14 14:46:31 +01:00
void buttonsExec(void *handle) {
if (! stoneIsValid()) {
2024-03-14 14:46:31 +01:00
// don't do anything, the stone has not been initialized
return;
}
uint8_t buttonPressed = 0;
if (buttonsMoveLeftPressed()) {
stoneMoveLeft();
buttonPressed = 1;
}
if (buttonsMoveRightPressed()) {
stoneMoveRight();
buttonPressed = 1;
}
if (buttonsRotateLeftPressed()) {
stoneRotateLeft();
buttonPressed = 1;
}
if (buttonsRotateRightPressed()) {
stoneRotateRight();
buttonPressed = 1;
}
2024-03-19 16:46:52 +01:00
if (buttonsMoveDownPressed()) {
stoneMoveDown();
buttonPressed = 1;
}
2024-03-14 14:46:31 +01:00
if (buttonPressed == 1) {
canvasShow();
}
}
void buttonsInit() {
2024-03-19 16:46:52 +01:00
P2DIR &= ~(BIT0|BIT1|BIT2|BIT3|BIT4);
2024-03-14 14:46:31 +01:00
2024-03-19 17:42:25 +01:00
schAdd(buttonsExec, NULL, 0, 25);
2024-03-14 14:46:31 +01:00
}