Skip to content

(fork) DuckHunt 4.0 ported to JS and HTML5 + Mobile Device control via Gyroscope in the browser

Notifications You must be signed in to change notification settings

ivanseidel/DuckHunt-JS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

DUCK HUNT JS v4.0

Play the game

This is a GitHub fork that extends the MattSurabian 's DuckHunt Implementation.

This fork enables you to use your phone as a machine gun in the game.

Prints

Machine Gun on the Phone

App running on Desktop

About

This is an implementation of DuckHunt in Javascript and HTML5. It uses the PixiJS rendering engine, Green Sock Animations, Howler, and Bluebird Promises.

Rendering

This game supports WebGL and Canvas rendering via the PixiJS rendering engine.

Audio

This game will attempt to use the WebAudioAPI and fallback to HTML5 Audio if necessary. Audio is loaded and controlled via HowlerJS.

Tweening

The animations in this game are a combination of PixiJS MovieClips built from sprite images and tweens. Since PixiJS doesn't provide a tweening API, Green Sock was used.

Game Logic

The flow of this game is managed using Javascript. The main chunks of business logic are implemented as ES6 classes which are transpiled to ES5 using Babel.

Working With This Repo

There are two different services here. game is where the DuckHunt game is running and mobile-controller is the game's machine gun controller.

  • You must have nodejs 18 installed.
  • Clone the repo into a directory of your choice

Mobile Controller

  • cd into mobile-controller directory and run npm ci --silent
  • You'll need a SSL certificate to be able to retrive gesture data from mobile devices in browsers such as Chrome. I put a script that performs an action to generate a localhost cert for you. It uses the mkcert so make sure you install it.
  • After generating the certificate on the credentials folder, run npm run dev and your API will be ready to be used on port 3000

Make sure to save your IP (eg. 192.168.68.107). On mac run ifconfig | grep 192 It'll show you the IP endpoint you'll need to communicate both projects

Game

  • cd into game directory and run npm ci --silent
  • change the main.js file adding your local IP that you stored from the previous step.
  • Use npm start to start a local webserver which will make the site available at http://localhost:8080/.

Working With Audio and Visual Assets

This repo ships with committed dist files to make it easy for developers to get up and running. If you really want to get into some leet haxing and change the way this game looks and sounds then you'll need to work with audio and image sprites. The following tasks make that possible:

  • To rebuild audio assets use npm run audio (there is a hard dependency on ffmpeg to run this task)
  • To rebuild image assets use npm run images (there is a hard dependency on texturepacker to run this task)

Bugs

Please report bugs as issues.

Contributing

Pull requests are welcome! Please ensure code style and quality compliance with npm run lint and include any built files.

Credits

About

(fork) DuckHunt 4.0 ported to JS and HTML5 + Mobile Device control via Gyroscope in the browser

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 86.7%
  • CSS 9.3%
  • HTML 2.6%
  • HCL 1.2%
  • Shell 0.2%