[NUMBLE] 다른 색깔 찾기 게임 제작 챌린지
주요 코드에 대한 설명
App.tsx
메인코드
시간제한 15초를 세야하기 때문에 setInterval로 초 세면서 조건마다 dispatch해준다
useEffect(() => {
const countdown = setInterval(() => {
if (time > 0) {
dispatch({ type: "TIMEPASS" });
} else {
alert("GAME OVER!\n 스테이지:" + stage + ", 점수:" + score);
dispatch({ type: "RESET" });
}
}, 1000);
return () => clearInterval(countdown);
}, [time, stage, score]);
useEffect로 stage랑 card갯수 바뀔때마다 박스들 다시 불러온다
useEffect(() => {
setBoxwidth(360 / Math.sqrt(cards) - 4);
setAns(Math.floor(Math.random() * cards));
}, [stage, cards]);
박스 onClick시 BoxClicked로 눌린게 답인지 아닌지 확인한다
상황에 따라 dispatch
const boxClicked = (index: number, ans: number) => {
index === ans
? dispatch({ type: "CORRECT" })
: dispatch({ type: "WRONGANSWER" });
};
박스들을 보여주는 코드이다
props를 Box컴포넌트로 넘겨준다
<div className="main-box">
{[...Array(cards)].map((n, index) => {
return (
<Box
colordiff={colordiff}
colors={color}
width={boxWidth}
diffrentBox={ans}
currentBox={index}
onClick={() => boxClicked(index, ans)}
></Box>
);
})}
</div>
TimerReducer.tsx
남은시간, 점수, 스테이지, 카드갯수, 색상과 색상차이(colordiff) 관리
action은 네가지이다
type Action =
| { type: "TIMEPASS" } // 시간이 흐르거나
| { type: "WRONGANSWER" } //오답이거나
| { type: "RESET" } //새로고침해야하거나
| { type: "CORRECT" }; //맞았거나
카드의 갯수도 여기서 정해준다
const setCards = (state: number) => {
return Math.pow(Math.round((state + 1 + 0.5) / 2) + 1, 2);
};
Box.tsx
박스 컴포넌트
박스 색상이랑 넓이를 styled component로 설정해준다
색상은 채도만 조절 가능한 hsl로 설정
stage가 올라갈수록 정답과 오답의 색상 차이가 비슷해져야 하기 때문에
reducer에서 받아오는 colordiff값이 stage가 올라감에 따라 증가하도록 했다
정답 박스와 오답박스의 채도가 점점 비슷해진다.
background: ${(props) =>
props.currentBox === props.diffrentBox
? "hsl(" + props.colors.toString() + ", 100%, 70%)"
: "hsl(" +
props.colors.toString() +
", 100%, " +
props.colordiff.toString() +
"%)"};
활용한 라이브러리와 그 이유
styled component
Box컴포넌트에서 색상과 넓이를 props로 받아와서 변경해주기 좋을것 같아서 사용하였다.
느낀점
- nxn 박스 배치를 어떻게 해야 할지 몰라서 시작과 동시에 막혔다.결국 카드 갯수로 map한 다음에 바깥 div 넓이에 맞춰 내부 box들 넓이를 (바깥div넓이/가로 박스 갯수)식으로 넣었다
- useReducer 처음써보는데 이렇게 쓰는게 맞나 하는 생각이 자꾸 든다...
- 좀 더 깔끔하게 할 수 있을것 같은데... 볼수록 어수선한것같다
멋있는 코드 작성하구싶다
Author And Source
이 문제에 관하여([NUMBLE] 다른 색깔 찾기 게임 제작 챌린지), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jungino/NUMBLE-다른-색깔-찾기-게임-제작-챌린지저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)