Giter VIP home page Giter VIP logo

warriorjs's Introduction

banner

Build Status npm version Join the chat at https://gitter.im/olistic/warriorjs

This is a game designed to teach JavaScript and artificial intelligence in a fun, interactive way.

You play as a warrior climbing a tall tower to <insert something that motivates you here> at the top level. On each floor, you need to write JavaScript (with full ES6 support) to instruct the warrior to battle enemies, rescue captives, and reach the stairs.

NOTE: Watch the repo or check npm outdated -g warriorjs regularly to find out about new levels and abilities.

Installation

$ npm install -g warriorjs

Usage

$ warriorjs

That's it! This will create a warriorjs directory in your current location, where you will find a Player.js file in your profile's directory containing the Player class:

class Player {
  playTurn(warrior) {
    // Cool code goes here
  }
}

Objective

Your objective is to fill the playTurn method with commands to instruct the warrior what to do. With each level, your abilities will grow along with the difficulty. See the README in your profile's directory for details on what abilities your warrior has available on the current level.

Here is a simple example which will instruct the warrior to attack if he feels an enemy, otherwise he will walk forward:

class Player {
  playTurn(warrior) {
    if (warrior.feel().isEnemy()) {
      warrior.attack();
    } else {
      warrior.walk();
    }
  }
}

Playing

Once you are done editing Player.js, save the file and run the warriorjs command again to start playing the level. The play happens through a series of turns. On each one, your playTurn method is called along with any enemy's.

You cannot change your code in the middle of a level. You must take into account everything that may happen on that level and give your warrior the proper instructions from the start.

Losing all of your health will cause you to fail the level. You are not punished by this, you simply need to go back to your Player.js file, improve your code, and try again.

Once you pass a level (by reaching the stairs), the profile README will be updated for the next level. Alter the Player.js file and run warriorjs again to play the next level.

Scoring

Your objective is to not only reach the stairs, but to get the highest score you can. There are many ways you can earn points on a level.

  • defeat an enemy to add his max health to your score

  • rescue a captive to earn 20 points

  • pass the level within the bonus time to earn the amount of bonus time remaining

  • defeat all enemies and rescue all captives to receive a 20% overall bonus

A total score is kept as you progress through the levels. When you pass a level, that score is added to your total.

Perspective

Even though this is a text-based game, think of it as two-dimensional where you are viewing from overhead. Each level is always rectangular in shape and is made up of a number of squares. Only one unit can be on a given square at a time, and your objective is to find the square with the stairs. Here is an example level map and key:

 ----
|C s>|
| S s|
|C @ |
 ----

> = Stairs
@ = Warrior (20 HP)
s = Sludge (12 HP)
S = Thick Sludge (24 HP)
C = Captive (1 HP)

Abilities

When you first start, your warrior will only have a few abilities, but with each level your abilities will grow. A warrior has two kinds of abilities: actions and senses.

Most of the abilities can be performed in the following directions: forward, backward, left and right. You have to pass a string with the direction as the first argument, e.g. warrior.walk('backward');.

Actions

An action is something that effects the game in some way. Only one action can be performed per turn, so choose wisely. Here is the complete list of actions:

  • warrior.walk(direction):

    Move in given direction (forward by default).

  • warrior.attack(direction):

    Attack a unit in given direction (forward by default).

  • warrior.rest():

    Gain 10% of max health back, but do nothing more.

  • warrior.rescue(direction):

    Rescue a captive from his chains (earning 20 points) in given direction (forward by default).

  • warrior.pivot(direction):

    Rotate left, right or backward (default).

  • warrior.shoot(direction):

    Shoot your bow & arrow in given direction (forward by default).

NEW in intermediate tower:

  • warrior.bind(direction):

    Binds a unit in given direction to keep him from moving (forward by default).

  • warrior.detonate(direction):

    Detonate a bomb in a given direction (forward by default) which damages that space and surrounding 4 spaces (including yourself).

  • warrior.explode():

    Kills you and all surrounding units. You probably don't want to do this intentionally.

Senses

A sense is something which gathers information about the floor. You can perform senses as often as you want per turn to gather information about your surroundings and to aid you in choosing the proper action. Here is the complete list of senses:

  • warrior.feel(direction):

    Returns a Space for the given direction (forward by default).

  • warrior.health():

    Returns an integer representing your current health.

  • warrior.look():

    Returns an array of up to three Spaces in the given direction (forward by default).

NEW in intermediate tower:

  • warrior.directionOfStairs():

    Returns the direction the stairs are from your location.

  • warrior.directionOf(space):

    Pass a Space as an argument, and the direction to that space will be returned.

  • warrior.distanceOf(space):

    Pass a Space as an argument, and it will return an integer representing the distance to that space.

  • warrior.listen():

    Returns an array of all spaces which have units in them.

Since what you sense will change each turn, you should record what information you gather for use on the next turn. For example, you can determine if you are being attacked if your health has gone down since the last turn.

Spaces

Whenever you sense an area, often one or multiple spaces (in an array) will be returned. A space is an object representing a square in the level.

You can call methods on a space to gather information about what is there. Here are the various methods that are available to you:

  • space.isEmpty():

    If true, this means that nothing (except maybe stairs) is at this location and you can walk here.

  • space.isStairs():

    Determine if stairs are at that location.

  • space.isEnemy():

    Determine if an enemy unit is at this location.

  • space.isCaptive():

    Determine if a captive is at this location.

  • space.isWall():

    Returns true if this is the edge of the level. You can't walk here.

  • space.isTicking():

    Returns true if this space contains a bomb which will explode in time.

You will often call these methods directly after a sense. For example, the feel sense returns one Space. You can call isCaptive() on this to determine if a captive is in front of you.

warrior.feel().isCaptive();

Epic mode

Once you reach the top of the tower, you will enter epic mode. When running warriorjs again, it will run your current Player.js through all levels in the tower without stopping.

Your warrior will most likely not succeed the first time around, so use the -l option on levels you are having difficulty or want to fine-tune the scoring.

$ warriorjs -l 4

Once your warrior reaches the top again, you will receive an average grade, along with a grade for each level. The grades from best to worst are S, A, B, C, D and F. Try to get S on each level for the ultimate score!

Credits

This game was originally developed by @ryanb to teach the Ruby language. Special thanks to him for the original ruby-warrior.

Thanks to @guillecura for the awesome logo idea and for carrying it out.

warriorjs's People

Contributors

olistic avatar

Watchers

James Cloos avatar sp 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.