Code Monkey home page Code Monkey logo

ts-object-pool-game's Introduction

Object pool asteroid game - TypeScript

This code is mainly the one you can find under source links (with minor changes), but rewritten from JavaScript to TypeScript. Made for coding practise and enjoyment.

Overwiew

  • Object oriented code with object pool optimization which eliminates JS garbage collection.

  • Click an asteroid to gain a point. Collect 10 point to save the universe and admire the magnificent winning text.

  • Run a server for dist/index.html to play.

Object pools

  • Object pools (asteroidPool and explosionPool) are lists of objects of given length. These pools are being initialized in the Game class constructor. Instead of being created and deleted, objects are just turned back to the initial state. Therefore garbage collection wont have a reason to happen, which is an advantage, especially in calculation-heavy moments.

  • Pool's length have to be carefully chosen. You can only have as many instances as pool length. If the pool length is too long, memory is needlessly used.

Sources

Thanks

to Frank's laboratory for sharing the knowledge

ts-object-pool-game's People

Contributors

heatgub 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.