Coder Social home page Coder Social logo

jialong0209 / pikachu-volleyball Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gorisanson/pikachu-volleyball

0.0 0.0 0.0 11.34 MB

Pikachu Volleyball implemented into JavaScript by reverse engineering the original game

JavaScript 63.32% CSS 6.11% HTML 30.57%

pikachu-volleyball's Introduction

Pikachu Volleyball

English | Korean(한국어)

Pikachu Volleyball (対戦ぴかちゅ~ ビーチバレー編) is an old Windows game which was developed by "(C) SACHI SOFT / SAWAYAKAN Programmers" and "(C) Satoshi Takenouchi" in 1997. The source code on this repository is gained by reverse engineering the core part of the machine code — including the physics engine and the AI — of the original game and implementing it into JavaScript.

You can play this game on the website: https://gorisanson.github.io/pikachu-volleyball/en/

Pikachu Volleyball game screenshot

How to run locally

  1. Clone this repoistory and get into the directory.
git clone https://github.com/gorisanson/pikachu-volleyball.git
cd pikachu-volleyball
  1. Install dependencies. (If errors occur, you can try with node v16 and npm v8.)
npm install
  1. Bundle the code.
npm run build
  1. Run a local web server.
npx http-server dist
  1. Connect to the local web server on a web browser. (In most cases, the URL for connecting to the server would be http://localhost:8080. For the exact URL, it is supposed to be found on the printed messages on your terminal.)

Game structure

  • Physics Engine: The physics engine, which calculates the position of the ball and the players (Pikachus), is contained in the file src/resources/js/physics.js. (This file also containes the AI which determines the keyboard input of the computer when you are playing against your computer.) This source code file is gained by reverse engineering the function at the address 00403dd0 of the machine code of the original game.

  • Rendering: PixiJS library is used for rendering the game.

Refer comments on src/resources/js/main.js for other details.

Methods used for reverse engineering

The main tools used for reverse engineering are following.

Ghidra is used for decompiling the machine code to C code. At first look, the decompiled C code looked incomprehensible. One of the reason was that the variable names (iVar1, iVar2, ...) and function names (FUN_00402dc0, FUN_00403070, ...) in the decompiled C code are meaningless. But, with the aid of Cheat Engine, I could find the location of some significant variables — x, y coordinate of the ball and the players. And reading from the location of the variables, the decompiled C code was comprehensible! OllyDbg was used for altering a specific part of the machine code. For example, to make slower version of the game so that it would be easier to count the number of frames of "Ready?" message on the start of new round in the game. Resource Hacker was used for extract the assets (sprites and sounds) of the game.

An intended deviation from the original game

If there is no keyboard input, AI vs AI match is started after a while. In the original game, the match lasts only for about 40 seconds. But in this JavaScript version, there's no time limit to the AI vs AI match so you can watch it as long as you want.

Other intended deviations from the original game(jialong0209)

  • Pressing key "LeftShift" (for player1) or "RightShift" (for player2) can accelerate the speed-x of pikachu.
  • Change FPS to 30FPS, 45FPS, 60FPS.

pikachu-volleyball's People

Contributors

gorisanson avatar ototot avatar dependabot[bot] avatar jialong0209 avatar disjukr avatar

Stargazers

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