Skip to content

jsjin7371/simple_word_game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Word Game

Flutter 기반의 프로그램입니다.
It is a Flutter based program.

꼬들이라는 게임에서 영감을 받았습니다.
inspired by kordle : https://kordle.kr/


5 글자로 이루어진 단어를 유추하는 게임입니다.
This is a game that guess a word made up of 5 letters.

특정 서버와 연동하여 데이터를 저장하는 기능은 구현되지 않았습니다.
로컬로만 간단히 돌릴 수 있습니다.
The function to store data in conjunction with a specific server has not been implemented.
You can simply run it locally only.

시작화면(intro page)


시작 버튼을 누르면 다음 페이지로 이동합니다.
If you press start button, it goes next page.

게임 설명 화면(explain page)


게임에 대한 간단한 설명입니다.
Description of the game.

게임 화면(game page)


게임 종료 화면(game over page)


정답 및 시도횟수와 정답을 맞춘 횟수를 표시합니다.
Displays the correct answer, number of attempts, and number of correct answers.

모델(models)

user_data_model

유저 데이터 모델에는 시도횟수와 정답을 맞춘 횟수를 저장하는 변수가 있습니다.
initUserData() 함수로 위의 변수들을 초기화 할 수 있습니다.
addCountofTry() 함수로 시도횟수를 1회 증가시킬 수 있습니다.
addCountofAnwser() 함수로 정답을 맞춘 횟수를 1회 증가시킬 수 있습니다.

The user data model contains variables that store the number of attempts and the number of correct answers.
You can initialize the above variables with the initUserData() function.
You can increase the number of attempts by 1 with the addCountofTry() function.
You can increase the number of correct answers by one with the addCountofAnwser() function.

word_model

List _word 에는 정답들을 알파벳 한 개씩 저장하는 리스트입니다.
getRandomWord()를 통해 랜덤하게 _word 리스트에 존재하는 단어 하나를 반환합니다.

List _word is a list that stores the correct answers alphabetically.
getRandomWord() randomly returns one word that exists in the _word list.

About

Simple Word Game

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published