This repository has been archived by the owner on Nov 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8d46ca
commit d87d772
Showing
3 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
## RN2048 | ||
|
||
### Background | ||
|
||
In the evening of the 25th May, 2021, I decided to task myself with a 4-day weekend build. I wanted to learn how to use the react-native-gesture-handler package and I decided to code the game 2048 with typescript React Native. | ||
|
||
This project took all 4 days, or effectively, 20 or so hours to complete. Days 1 and 2 were spent developing the game's main algorithm, day 3 was spent debugging and refining the code, and the final day was used to style, refactor, document, and release everything. | ||
|
||
### Technical Details | ||
|
||
Ths app consists of 2 pages, the main game page and a record page which displays all the games the user decides to save. | ||
|
||
Due to time concerns, animated movement for the tile on the grid have not been implemented. But this could be done with react-native-reanimated or other similar packages. | ||
|
||
#### Libraries Used | ||
|
||
Below is a list of all the node packages used for the project (React Native base packages **EXCLUDED**) | ||
- react-native-gesture-handler | ||
- react-native-modal | ||
- react-native-vector-icons | ||
- react-navigation (and all of its subsequent packages) | ||
- the stack navigation package | ||
- redux (and all of its subsequent packages) | ||
- react-redux | ||
- redux-persist | ||
- react-native-async-storage | ||
|
||
### Gallery | ||
|
||
| Game Screen (Dark) | Game Screen (Light) | Gameover Popup Screen | Record Screen | | ||
| :-----------------------------: | :------------------------------: | :-----------------------------------: | :---------------------------------: | | ||
| <img src='./img/game_dark.jpg'> | <img src='./img/game_light.jpg'> | <img src='./img/gameover_screen.jpg'> | <img src='./img/record_screen.jpg'> | | ||
|
||
|
||
### Maintenance and Future Updates | ||
|
||
As of now, there are no plans to maintain nor further develop this project, as this is only a weekend sprint build. | ||
|
||
Although there is no incentive to do so, the way the app is coded is prepared for further expansion, such as different sized boards. The algorithms were developed to be able to handle boards of all sizes. Adding new screens to accomodate for board size selection would also be easy as screen components are extracted and abstracted from the navigator itself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters