질문게시판 > Atmega128과 도트 매트릭스질문

TODAY1,245 TOTAL5,845,747
사이트 이용안내
Login▼/회원가입
최신글보기 질문게시판 기술자료 동영상강좌

아두이노 센서 ATMEGA128 PWM LED 초음파 AVR 블루투스 LCD UART 모터 적외선


BASIC4MCU | 질문게시판 | Atmega128과 도트 매트릭스질문

페이지 정보

작성자 탈모공학자 작성일2023-12-01 01:36 조회1,286회 댓글1건

본문

	도트매트릭스를 이용해서 게임을 만드는 중인데, 지금 막힌 부분이 한 플레이어당 9개씩 돌을 놓고 나서 18개를 다 놓으면 그다음부터는 자기가 놓은 도트를 선택해서 한칸씩 옮길 수 있어야하는데 그게 너무 어렵습니다. 스위치는 새로 추가해도 되긴 하는데 사실 지금 여기서 아무리 해봐도 감이 안잡혀요. 아니면 내가 착수한 도트를 다시 선택해서 움직이게만 된다면 좀 진전이 있을텐데 말이죠..

#define F_CPU 16E6
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include "TWI.h"
#include "Dot_I2C.h"

#define MAX_STONES 18  // 최대 돌의 개수
#define NUM_VALID_POSITIONS 24  // 착수 가능한 위치의 개수

// 착수 가능한 위치 좌표
uint8_t validPositions[NUM_VALID_POSITIONS][2] = {
{1, 1}, {4, 1}, {7, 1},
{2, 2}, {4, 2}, {6, 2},
{3, 3}, {4, 3}, {5, 3},
{1, 4}, {2, 4}, {3, 4}, {5, 4}, {6, 4}, {7, 4},
{3, 5}, {4, 5}, {5, 5},
{2, 6}, {4, 6}, {6, 6},
{1, 7}, {4, 7}, {7, 7}
};

typedef uint8_t DOT_I2C_Color;  // 색상 유형 정의

#define PLAYER1_COLOR DOT_I2C_RED
#define PLAYER2_COLOR DOT_I2C_GREEN

volatile unsigned char currentRow = 1;
volatile unsigned char currentCol = 1;
volatile uint8_t putPressed = 0;  // 착수 버튼
uint8_t currentPlayer = 1;  // 1 또는 2

uint8_t stoneRows[MAX_STONES];
uint8_t stoneCols[MAX_STONES];
uint8_t stoneCount = 0;


void updateDisplay() {
DOT_I2C_Clear();

// 착수한 돌들 표시
for (uint8_t i = 0; i < stoneCount; ++i) {
DOT_I2C_Color stoneColor = (i % 2 == 0) ? PLAYER1_COLOR : PLAYER2_COLOR;
DOT_I2C_DrawPixel(stoneCols[i], stoneRows[i], stoneColor);
}

// 현재 차례의 돌 표시
DOT_I2C_DrawPixel(currentCol, currentRow, (currentPlayer == 1) ? PLAYER1_COLOR : PLAYER2_COLOR);

DOT_I2C_WriteDisplay();
}



void putStone() {
if (stoneCount >= MAX_STONES) {
return; // 착수 가능 돌 개수 초과 시 함수 종료
}

// 착수 가능한 위치인지 확인
for (uint8_t i = 0; i < NUM_VALID_POSITIONS; ++i) {
if (validPositions[i][0] == currentCol && validPositions[i][1] == currentRow) {
// 확인할 변수
uint8_t positionOccupied = 0;

// 이미 돌이 있는지 확인
for (uint8_t j = 0; j < stoneCount; ++j) {
if (stoneCols[j] == currentCol && stoneRows[j] == currentRow) {
positionOccupied = 1;
break;
}
}

// 이미 돌이 있는 위치라면 아무 동작도 수행하지 않음
if (positionOccupied) {
break;
}

// 착수한 돌의 위치 저장
stoneRows[stoneCount] = currentRow;
stoneCols[stoneCount] = currentCol;

// 착수한 플레이어에 따라 돌의 색상 결정
DOT_I2C_Color stoneColor = (currentPlayer == 1) ? PLAYER1_COLOR : PLAYER2_COLOR;

// 저장된 돌의 개수 증가
++stoneCount;

// 돌을 그릴 때 색상 적용
DOT_I2C_DrawPixel(currentCol, currentRow, stoneColor);

// 디스플레이 업데이트
DOT_I2C_WriteDisplay();

// 차례 교체
currentPlayer = (currentPlayer == 1) ? 2 : 1;

// 표시 업데이트
updateDisplay();
break;
}
}
}


ISR(INT4_vect) {
// 왼쪽 스위치 눌림
if (currentCol == 4 && currentRow == 1) {
currentCol = 1;
} else if (currentCol == 7 && currentRow == 1) {
currentCol = 4;
} else if (currentCol == 7 && currentRow == 7) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 7) {
currentCol = 1;
} else if (currentCol == 4 && currentRow == 2) {
currentCol = 2;
} else if (currentCol == 6 && currentRow == 2) {
currentCol = 4;
} else if (currentCol == 6 && currentRow == 6) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 6) {
currentCol = 2;
} else if (currentCol == 2 && currentRow == 4) {
currentCol = 1;
} else if (currentCol == 3 && currentRow == 4) {
currentCol = 2;
} else if (currentCol == 7 && currentRow == 4) {
currentCol = 6;
} else if (currentCol == 6 && currentRow == 4) {
currentCol = 5;
} else if (currentCol == 4 && currentRow == 3) {
currentCol = 3;
} else if (currentCol == 5 && currentRow == 3) {
currentCol = 4;
} else if (currentCol == 5 && currentRow == 5) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 5) {
currentCol = 3;
}

updateDisplay();
_delay_ms(270);
}

ISR(INT5_vect) {
// 오른쪽 스위치 눌림
if (currentCol == 1 && currentRow == 1) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 1) {
currentCol = 7;
} else if (currentCol == 1 && currentRow == 7) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 7) {
currentCol = 7;
} else if (currentCol == 2 && currentRow == 2) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 2) {
currentCol = 6;
} else if (currentCol == 2 && currentRow == 6) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 6) {
currentCol = 6;
} else if (currentCol == 2 && currentRow == 4) {
currentCol = 3;
} else if (currentCol == 1 && currentRow == 4) {
currentCol = 2;
} else if (currentCol == 6 && currentRow == 4) {
currentCol = 7;
} else if (currentCol == 5 && currentRow == 4) {
currentCol = 6;
} else if (currentCol == 3 && currentRow == 3) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 3) {
currentCol = 5;
} else if (currentCol == 3 && currentRow == 5) {
currentCol = 4;
} else if (currentCol == 4 && currentRow == 5) {
currentCol = 5;
}

updateDisplay();
_delay_ms(270);
}

ISR(INT2_vect) {
// 위쪽 스위치 눌림
if (currentCol == 1 && currentRow == 7) {
currentRow = 4;
} else if (currentCol == 1 && currentRow == 4) {
currentRow = 1;
} else if (currentCol == 4 && currentRow == 3) {
currentRow = 2;
} else if (currentCol == 4 && currentRow == 2) {
currentRow = 1;
} else if (currentCol == 6 && currentRow == 4) {
currentRow = 2;
} else if (currentCol == 6 && currentRow == 6) {
currentRow = 4;
} else if (currentCol == 2 && currentRow == 4) {
currentRow = 2;
} else if (currentCol == 2 && currentRow == 6) {
currentRow = 4;
} else if (currentCol == 7 && currentRow == 7) {
currentRow = 4;
} else if (currentCol == 7 && currentRow == 4) {
currentRow = 1;
} else if (currentCol == 3 && currentRow == 5) {
currentRow = 4;
} else if (currentCol == 3 && currentRow == 4) {
currentRow = 3;
} else if (currentCol == 5 && currentRow == 5) {
currentRow = 4;
} else if (currentCol == 5 && currentRow == 4) {
currentRow = 3;
} else if (currentCol == 4 && currentRow == 7) {
currentRow = 6;
} else if (currentCol == 4 && currentRow == 6) {
currentRow = 5;
}

updateDisplay();
_delay_ms(270);
}

ISR(INT3_vect) {
// 아래쪽 스위치 눌림
if (currentCol == 1 && currentRow == 1) {
currentRow = 4;
} else if (currentCol == 1 && currentRow == 4) {
currentRow = 7;
} else if (currentCol == 7 && currentRow == 1) {
currentRow = 4;
} else if (currentCol == 7 && currentRow == 4) {
currentRow = 7;
} else if (currentCol == 4 && currentRow == 1) {
currentRow = 2;
} else if (currentCol == 4 && currentRow == 2) {
currentRow = 3;
} else if (currentCol == 4 && currentRow == 5) {
currentRow = 6;
} else if (currentCol == 4 && currentRow == 6) {
currentRow = 7;
} else if (currentCol == 6 && currentRow == 2) {
currentRow = 4;
} else if (currentCol == 6 && currentRow == 4) {
currentRow = 6;
} else if (currentCol == 2 && currentRow == 2) {
currentRow = 4;
} else if (currentCol == 2 && currentRow == 4) {
currentRow = 6;
} else if (currentCol == 3 && currentRow == 3) {
currentRow = 4;
} else if (currentCol == 3 && currentRow == 4) {
currentRow = 5;
} else if (currentCol == 5 && currentRow == 3) {
currentRow = 4;
} else if (currentCol == 5 && currentRow == 4) {
currentRow = 5;
}

updateDisplay();
_delay_ms(270);
}

ISR(INT6_vect) {
// 착수 스위치 눌림
putPressed = 1;
}



int main() {
TWI_Init();
DOT_I2C_Init();

// 외부 인터럽트 설정
EICRA = (1 << ISC01) | (1 << ISC11) | (1 << ISC21) | (1 << ISC31);
EIMSK = (1 << INT4) | (1 << INT5) | (1 << INT2) | (1 << INT3) | (1 << INT6);

sei(); // 전역적으로 인터럽트 활성화

while (1) {
// 착수 버튼이 눌렸을 때만 착수
if (putPressed) {
putStone();
putPressed = 0;
}

_delay_ms(200); // 딜레이 추가
}
}
  • BASIC4MCU 작성글 SNS에 공유하기
  • 페이스북으로 보내기
  • 트위터로 보내기
  • 구글플러스로 보내기

댓글 1

조회수 1,286

master님의 댓글

master 작성일

복잡한 코드는 남이 도와드리기 어렵습니다.
복잡할 수록 코딩하는 시간보다 고민하는 시간이 많아야 합니다.

질문게시판HOME > 질문게시판 목록

MCU, AVR, 아두이노 등 전자공학에 관련된 질문을 무료회원가입 후 작성해주시면 전문가가 답변해드립니다.
ATMEGA128PWMLED초음파
아두이노AVR블루투스LCD
UART모터적외선ATMEGA
전체 스위치 센서
질문게시판 목록
제목 작성자 작성일 조회
공지 MCU, AVR, 아두이노 등 전자공학에 관련된 질문은 질문게시판에서만 작성 가능합니다. 스태프 19-01-15 24176
공지 사이트 이용 안내댓글[31] master 17-10-29 38529
질문 lm75a 온도센서 관련 질문입니다.댓글[6] 이미지첨부파일 hanmw0707 24-12-01 111
질문 리얼타임클락 질문이요 ㅠㅠ댓글[1] 이미지 팬케이크 24-11-22 47
질문 가속도센서 2개를 강아지 2마리에 각각 달아서 스마트폰으로 움직임을 보고 싶은데요댓글[1] gainomax 24-11-21 116
질문 라즈베리파이 4B 사용 중 막히는 부분 질문합니다댓글[1] 한마바키 24-11-12 6367
질문 스위치로 PI 모터 제어 바밤 24-11-11 82
답변 답변글 답변 : 스위치로 PI 모터 제어 master 24-11-12 76
질문 아트메가128 마이크로프로세서댓글[3] 옹심이 24-11-05 218
질문 초음파 센서로 장애물 인식댓글[1] 나난ㄴ 24-10-31 181
질문 이런 투명 LCD는 뭐라고 부르나요?댓글[2] 이미지 펌린이 24-10-29 228
질문 모터제어 중 RPM 계산 질문입니다.댓글[3] suuuuuuuh 24-10-24 269
질문 아트메가 128과 블루투스 모듈(HC-06) 연결 질문댓글[1] 메가아트 24-10-24 184
질문 ATmega128 질문 DFplayer mini댓글[1] Miin 24-10-18 6557
질문 스탭모터 3개 회로도 질문.. 삉삉이 24-10-11 202
답변 답변글 답변 : 스탭모터 3개 회로도 질문.. 이미지 master 24-10-12 258
질문 수분수위센서와 멀티플렉서댓글[3] 김고래쓰 24-10-10 466
질문 ATmegq128 PI 제어기 추가댓글[1] 바밤 24-10-08 191
답변 답변글 답변 : ATmegq128 PI 제어기 추가댓글[1] master 24-10-08 297
질문 아두이노 ide 네오픽셀 각 셀 각자 코드 현수 24-09-29 148
질문 아두이노 IDE 프로마이크로 네오픽셀 현수 24-09-29 152
답변 답변글 답변 : 아두이노 IDE 프로마이크로 네오픽셀 master 24-09-29 157
질문 아두이노 프로마이크로 ide 현수 24-09-28 165
답변 답변글 답변 : 아두이노 프로마이크로 ide master 24-09-28 286
질문 ATmega128로 압력센서댓글[1] 이미지첨부파일 바밤 24-09-27 351
질문 아두이노 회로 배선 질문드립니다댓글[3] 이미지 아브 24-09-23 488
질문 아두이노 및 전기배선 작동이 안되어 해결 부탁드립니다 첨부파일 호떡아 24-09-14 278
답변 답변글 답변 : 아두이노 및 전기배선 작동이 안되어 해결 부탁드립니다 master 24-09-14 256
질문 USB host하고 Stop모드를 같이 쓰려는데댓글[1] 이미지 라칸 24-09-12 430
질문 아두이노 압력 센서로 LED 불빛 들어오게 할려고 하는데... 이미지첨부파일 윤시기 24-09-12 598
게시물 검색

2022년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2021년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2020년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2019년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2018년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
Privacy Policy
MCU BASIC ⓒ 2020
모바일버전으로보기