Git Product home page Git Product logo

tankgame_nextgen's Introduction

Tank Game Nextgen

Tank game is a simple 3D multiplayer game written in TypeScirpt.

Screenshots

Tank Plane 1 Plane 2

How to play

  • WASD to move around
  • Space bar or Left click to shot
  • Mouse or Arraw keys to look around
  • T to open chat screen and Enter to send message
  • Click Touch screen at top-right of the screen to enable touch screen support for mobile devices

How to run locally

  1. Install nodejs and npm
  2. Clone this repo
  3. npm install
  4. Start your backend server
  5. npm run dev

Backend server

Backend server is just a simple WebSocket chat room. It forwards incoming messages to every other clients.

import WebSocket, { WebSocketServer } from 'ws';

const server = new WebSocketServer({
    host: "0.0.0.0",
    port: "8080"
});

server.on('connection', function connection(ws) {
    console.log(`online: ${server.clients.size}`);

    ws.on('message', function message(data) {
        server.clients.forEach(function each(client) {
            if (client.readyState === WebSocket.OPEN && client !== ws) {
                client.send(data.toString());
            }
        });
    });

    ws.once("close", () => {
        console.log(`online: ${server.clients.size}`);
    })
});

server.on("error", (err) => {
    console.error(err);
})

tankgame_nextgen's People

Contributors

cl-he-o avatar sduoduo233 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.