From fe7636e925319172a226c6326aaf2b7102bab5d8 Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 7 Apr 2018 10:02:38 +0100 Subject: [PATCH] Final manual updates. --- manual/index.html | 62 +++++++++++------------------------------------ manual/style.css | 11 +++++++++ manual/toc.js | 22 +++++++++++++++++ 3 files changed, 47 insertions(+), 48 deletions(-) create mode 100644 manual/style.css create mode 100644 manual/toc.js diff --git a/manual/index.html b/manual/index.html index 7c1191d..4ac927e 100644 --- a/manual/index.html +++ b/manual/index.html @@ -1,27 +1,15 @@ Blob Wars : Attrition - Gameplay Manual - +

-
-Gameplay Manual
+
+Gameplay Manual

Last updated: 2nd April 2018

@@ -57,6 +45,7 @@

Controls

The game's default controls are listed below. These can all be changed by going to the Options screen and selecting "Controls ...". See the Options section of this manual for more information.

+

@@ -83,7 +72,7 @@

Gameplay

3
4
5
- +
  1. Health, Power, Oxygen, and Weapon
  2. Inventory
  3. @@ -95,7 +84,7 @@

    Gameplay

    Bob starts the game with 10 health points, which are depleted as he takes damage. When Bob's health is reduced to 0, he is killed and the mission is failed. Picking up cherries will help to regain health (see further below for more information). Bob also has a power level, that is used by both the aqua lung and jetpack. This can be replenished by picking up batteries (see further below for more information). It also naturally regenerates over time.

    - +

    Pressing Escape anytime during gameplay will bring up a menu, allowing you to access options, stats, trophy information, and to also quit the mission.

    @@ -162,7 +151,7 @@

    Teeka

    Title Screen

    -

    +

    The title screen offers a range of options.

      @@ -184,7 +173,7 @@

      Hub / World Map

      2
      3
      4
      - +
      1. Progress statistics
      2. An incomplete mission
      3. @@ -200,7 +189,7 @@

        Hub / World Map

        2
        3
        4
        - +
        1. Mission name
        2. Mission description
        3. @@ -223,7 +212,7 @@

          Objectives / Inventory

          2
          3
          4
          - +
          1. A completed objective
          2. An incomplete (required) objective
          3. @@ -240,7 +229,7 @@

            Radar

            1
            2
            3
            - +
            1. Radar map area
            2. Blip directional arrows
            3. @@ -262,7 +251,7 @@

              Options

              - +

              • Fullscreen: activate the fullscreen mode for the game. Note that you must exit and restart the game in order for this change to take effect.
              • Window Size: select the window size of the game. Change this if things appear too big or too small. Note that you must exit and restart the game in order for this change to take effect.
              • @@ -277,7 +266,7 @@

                Options

                - +

                To change a control, highlight the relevant options and press Return or Space, then press the keyboard control or joypad button of your choosing. Pressing backspace will clear a control setting. Note that menus can always be navigated by using the arrow keys, and by pressing Return or Space. @@ -316,30 +305,7 @@

                About

                - - + diff --git a/manual/style.css b/manual/style.css new file mode 100644 index 0000000..ed024f9 --- /dev/null +++ b/manual/style.css @@ -0,0 +1,11 @@ +body {font-family: sans; font-size: 14px; background: #111; color: #fff; line-height: 24px;} +h3 {margin-top: 50px; background-color: #234; padding: 5px;} +h4 {background-color: #345; padding: 5px;} +a {color: #0af; text-decoration: none;} +a:hover {color: #0af; text-decoration: underline;} +table {border-collapse: collapse;} +table, th, td {border: 1px solid white; padding: 8px;} +span.highlight {color: #fb0; font-weight: bold;} +img.screenshot {width: 800px; padding: 2px; border: 1px solid #ccc; margin-left: auto; margin-right: auto; display: block;} +div.annotation {font-size: 12px; position: absolute; background-color: #08f; color: #fff; padding: 5px; font-weight: bold; border: 1px #fff solid; text-align: center} +div.annotationContainer {position: relative; width: 800px; display: block; margin-left: auto; margin-right: auto;} diff --git a/manual/toc.js b/manual/toc.js new file mode 100644 index 0000000..29cac8b --- /dev/null +++ b/manual/toc.js @@ -0,0 +1,22 @@ +$(document).ready(function() { + var toc = $('#toc'); + var i = 1; + + $('h3,h4').each(function(i, e) { + + var link = 'link' + i; + var a = $('').attr('href', '#' + link).append(e.innerText); + + $(e).before($('').attr('name', link)); + + if (e.tagName == 'H3') + { + toc.append("▪ " + e.innerText + "
                "); + } + + if (e.tagName == 'H4') + { + toc.append("" + e.innerText + "
                "); + } + }); +});
UpW
DownS