An infinity procedural online game using Flutter and flames with NodeJS and Firebase for the back-end.
The world isn't stored in anywhere, it uses some conecpts and rules (Perlin Noise
and Simplex Noise
) to generate it equaly in all devices only the changes made by player are actually stored on the server side.
The players will be able to build theirs houses anywhere on the infinity world. That's why i call it borderless world in first place. :)
This project is still in development and it doesnt have many features yet.
I'm using the solid principles
as much as i can, make things clear enough easy to read although i'm not an expert on it, if you have any suggestion, please let me know it.
Hopefully at some point later this year.
Current Version: 1.0.4
For more detail access Whimsical Diagram Page to see the comments in each node.
-
Requirements
- The NPM and NodeJS installed on your system
- Navigate to the folder
bwo-server
and run on the console the commandnpm install
to install and update all the dependences
-
Launch your own server :
-
2.1 Setup the database if you want to run it Online:
- Create a project and setup your Firebase database and Cloud Firestore on Google console
- Save the
google-services.json
file inandroid\app\
- Save the
- Edit the enviroment variables in
resources/config.js
or set them in your system so the server can connects to your database.
- Create a project and setup your Firebase database and Cloud Firestore on Google console
-
2.2. Run the Node Server:
- Navigate to the folder
bwo-server
and run on the console the commandnpm start
ornode server.js
- To specify an environment use
--env=development
or--env=production
in both case you need to be authenticated in firebase. For localhost use--env=localhost
- To Run test on the Server side run
npm test
(still in development)
- To specify an environment use
- Navigate to the folder
-
2.3 For the client-side (Android App), Adjust the Server URL in
lib\server\utils\server_utils.dart
- Set your database name
development
,production
,localhost
- Tip: You can host in gitpod or heroku to launch it alive for free
- Set your database name
-
-
If you do not want to configure your own server and just want to run the game: (Localhost)
- Make sure to adjust the
server
variable URL inlib\server\utils\server_utils.dart
tohttps://borderless-world.herokuapp.com
- Make sure to adjust the
isOffline
variable inlib\server\utils\server_utils.dart
totrue
- Make sure to adjust the
-
Launch the app on your device
- Left tap on screen = walk
- Right tap on screen = cut tree/attack
- While in build mode you can't walk and can only place/delete object inside the foundation square
You can also open the host url on your browser to see the currently server state (for debuging)
And please, let me know if you have any problems, open an issue
and i will be in touch very soon. Code refactoring are really appreciated at this point.
Usecases:
- Optimze render and map Generator
- Fix player animation Position
- Add shadow to the environment
- Stop player walk when device is totally lying down
- [-] Especial Effects
- walk smoke
- water ripple
- water foam
- water stars blink
- sound effects bgm, walk and swim
- Add More Life to the environment
- Move camera around player when he is afk
- Add Cut Tree Animation do player
- Add fruits fell when hiting trees
- Tree Cut Logic and Animation
- Add pickup items
- Inventory
- Enemys Category
- AI patrol (local)
- AI Search, follow and lose target (local)
- AI Attacking (local)
- Generate Random Enemys when walking (online)
- Add player Attack animation
- Add combat System
- Add UI System
- Added Scene Manager (Switch between Scenes like Menus, Game etc)
- Add UI - player creation
- Added New Character Sprites to the game
- Level and Progression System
- Player HUD
- Equipments and status bonuses
- Add hungriness
- Add Input Joystick Style for walking
- [-] Create Node Server
- Synchronize Players position
- Smooth player animation
- Optimze Synchronization player's data only to players in view range
- Sync hit tree animation / state / respawn
- Sync enemies
- Sync attack other Players damage/animation
- Sync Equipment Sprite
- Sync items spawn
- [-] Craft Category
- Craft Axe item from others items
- Craft Database
- Craft UI with drag and drop
- [-] Build Category
- Foundation for private building
- Wall placements
- Auto/Toggle wall tall level
- Delete Foundations
- UI object selection interface
- Ground Tiles
- Roofs
- Animated Doors
- Windows
- Craft or buying system
- Sync building to the server
- Walls
- floors
- furnitures
- Save/backup Foundation/House from server to firebase
- [-] Interfaces
- Create Account UI
- Character Creation UI
- Login UI
- Equipments UI
- Change background music Volume dynamic
- Firebase to backup server state
- Handle users login on database
- Biomes
- Dynamic bundle and CI/CD for playstore
- Global Chat System
- UML Game Diagram
- Safe zone to foundations
- Random Maze dungeon and loots
- Sometimes slipping a too much when receiving walks updates
- Enemys won't collide with walls. Missing Path Finding
- Performance improviments
- Code refactoring
- New Enemy
- Enemy Passive Aggressive
- New Enemy
- Fixed bug when dragging foundation area preview outsite of the screen area
- Fixed but when creating character after flames update
- Reducing foundation load area from server, it will load only if you are close enough to the edge screen
- Added option to build foundation over cutted tree spot
- Server Send Messages big improviments
- Foundations are now safe zone, this means enemys wont attack you there
- Added Doors
- Auto open/close doors when player is close
- Added remove furniture functionality to Delete Tool
- Furniture Colisions checks and validation for placements
- Added Roofs
- Furniture Synchronization
- Added upstairs Wall level layer to respective button (Used to show Roofs in near future)
- Added Wall Mutitexture
- Fixed floors not beeing placed when terrain had not finished to build
- Added Furniture Select and Placement
- Added floor and furnitures sprites
- Added Toast notification message
- Added Tree HP regeneration and delete from server after hp is full
- Fixed Foundations not loading issue
- Backup Foundation to firebase
- Fixed some performances issues when updating walls
- Added Floor to build system
- Added Wall windows selector
- Added Foundation Windows selector, placement area indicator drag, Color indicator when it is safe or not to move
- Server validations for Foundations
- UI Build System
- Added Wall Placement synchronization over the server. Finally!:O (Not saving data yet)
- Added server send menssages improviments when walking
- Added new sprites
- Started Build windows action (not finished)
- Added Google sign in method Authentication
- Saving User character data and user account to firebase
- Added Merge function between firebase and server data
- Enemies are no longer saved permanently as since they are spawned as you walk, also a good idea for cleanin up the server on each restart
- Added firebase database to save persistence data
- Added 02 new sprite characters
- Added Toggle wall tall level (Auto, low and tall)
- Added Foundation for private House Build System
- Added Wall Placement on terrain
- Added Leveled Up System from Server
- Synchronized: hit tree action
- Synchronized: Tree health / Tree Dying animation / respawn after 180s
- Fixing bad UI elements position on some devices.
- Added logs record on server
- Added Player HP Regeneration from server
- Added XP reward for killing monster from server
- Fixed order male1 left/right walk sprite animation
- Changed Keyboard open animation and auto capitalize
- Added heroku server for tests.
- Fixed enemy walk when it goes offscreen
- Improviment on enemy's reaction when a player is on its range and attack delay
- Synchronized Players Attack to Enemys
- Added Effective Dart to the project (Massive refactoring)
- Added Jasmine for (TDD) on the back-end Server
- Make the Enemy loses its target when he dies
- New enviroment Production/Development updates when starting server
- Fixed Spawn Players position after previous update
- Fixed not loading grass textures
- Adedd Wakelock (Screen will keep Aweake)
- Fixed Rare bug when enemys spawn with NaN Values
- Rebuilng Logic to Synchronize enemy walk with speed simulation from Server-Side (This is need to calculate when enemy is REALLY close to player, instead of "teleporting" to from backend while in front they are not close)
- Added Server-Side Folder to the project
- Reducing Log amount for Socket.io Lib
- Enemys Name
- Some Improviments on Connections to Server when receving messages update
- Realtime Enemy Spawn/Walk Synchronization (Client side)
- Added Input Joystick Style for walking (Accelerometer is still very interesting and different but it is just too hard for some people)
- Fixed Enemys not spawning when off screen
- Damage Text Colors for Enemys/Player
- Enemys not patroling
- Added Level and progression System
- Added Equipments items and bonus status (Single Source shared to all characters)
- Added Players HUD and status management logic
- Added Axe to cut tree faster
- Added calories logic (If you are starving you get badness status and limitations)
- New Players sprites
- Fixed Tree Generation (Sometimes it was random)
- Minior map improviments
- Fixed some Server Side Logic
- Added offline mode for debug
- Added 3 New Playable Sprites to play with
- Added Start Location Selection
- Character Creation UI
- Added new UI Buttons and Keyboards
- Solved problem not updating players when entering on my screen
- Removed Google Firebase, using Node.js Server instead
- Sync players position to camera view only
- Added Realtime connection to Google Firebase.
- Added Combat System (Damage/Death/Respawn)
- Added AI Attack
- Added Damage Text Display on UI
- Added AI System
- Added new Enemy [Skull]
- Tree Cut Logic/Animation and Respawn
- Added Log Item
- Added Pickup Items
- Added Inventory System
- Added Click Detection
- Added HUD and UI System
- Gravity, friction and bouncy Physics
- Added Drop item logic
- Player movment changed - now you need to be taping on screen to move him.
- Player Sprite changed
- Hit tree player animation
- Added Random Grass/flowers sprites,
- Changing colors Pallet to get more 'look and feel' of the game.
- Added Collision in the mountain
- Ambient Music and footstep walk
- Added walk/Swim and water effects + animations
- Added player sink into the water and Trees collision detection.
- Right now i'm focusing on the performance improviments in order to bring it the best fps as i can.
- Next steps will be the player design it self and collision detection with the enviroment.