Git Product home page Git Product logo

backcountry's Introduction

๐Ÿคž goodluck

A template for creating small and fast browser games.

Getting Started

goodluck is not a typical library. It's not suitable for installing via npm install. Instead, use it as a template: clone it into a new repo, remove features you don't need, and hack away.

  1. Create a new repository using goodluck as a template.
  2. Clone the newly created repository.
  3. npm install the build tools.
  4. npm start the development server.

Production builds are bundled into a single .js file and optimized for size. You can find them in public/opt.

  1. npm run build

Design Principles

goodluck is a template for creating small browser games. Apart from the game loop and the rendering pipeline, goodluck doesn't give you much more code. We like to think of goodluck as a set of good practices, architecture decisions, and tools.

  1. Keep the scope small. Always start with the MVP version of each feature.

  2. Write code just for this game. Your goal is to ship a game, not build an engine.

  3. Write data-driven procedural code. Keep a strict separation between data (components) and logic (systems). Forgo object-oriented concepts like inheritance and polymorphism.

  4. Prefer simple code. Write code that can be easily understood and reasoned about. Always measure the performance impact of new code.

Tech Overview

goodluck implements the entity-component-system (ECS) architecture:

  1. Entities are indices into arrays storing component data. Furthermore, a special array called world stores masks defining which components are enabled for which entities. Component masks are implemented using bitflags, which limits the total number of available components to 32. This should still be plenty for small and even medium-sized games.

  2. Components are simple objects storing data, and only data. No logic goes into components. Each component defines an interface describing its data.

  3. Systems store the game logic which runs for entities which have certain components enabled. Systems are executed either in fixed_update (guaranteed to run with the delta of 16 ms), or in frame_update which runs once per animation frame, as menaged by the browser.

goodluck is written in TypeScript, but it only uses a small subset of its features. The goal is to take advantage of the typing system and excellent editor support, while reducing any overhead in the final build. Hence, most features are strictly compile-only: they compile to zero bytes of JavaScript.

  • Interfaces describe the shapes of components. The data is then stored in plain object literals matching these shapes.

  • const enums act as non-iterable enums. They are replaced by their number value during compilation.

  • type aliases offer a way to create discriminated type unions. A closed typed system works well for goodluck because the code is only written with the current project in mind, and you have the total control over all types used across the project.

backcountry's People

Contributors

michalbe avatar stasm avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.