Soup 10 Concepts

Object of the game

The object of the game is to survive as long as possible while exploring the game arena. To survive, the Player needs to avoid starvation by eating. The Player loses one point of health each turn. Eating increases the Player's health by 2 points, up to the current MaxHealth value, provided in the GameState struct.

GameStates

The GameState struct represents the state of the game in that turn. It contains the following fields:

  • GameId: the id of the game this struct is associated with,
  • PlayerId: the id of the Player playing this game,
  • ScenarioId: the id of the scenario being played,
  • Turn: the number of the current turn,
  • State: status of the game ("Running", or "Completed"),
  • Health: the current health level of the Player. This will change throughout the game; the game ends when it reaches zero,
  • MaxHealth: the current maximum health level of the Player. This can be modified throughout the game by interacting with various items (not implemented),
  • Abilities: list of the current special skills/abilities the Player has picked up throughout the game that assist them in surviving. (not implemented),
  • Easting: the Player's current horizontal coordinate within the game arena,
  • Northing: the Player's current vertical coordinate within the game arena,
  • ActionCount: the number of actions the Player can take in their next turn. This may vary throughout the game depending on items, abilities and the environment,
  • ViewRange: the distance the Player can see. May vary according to items, abilities and environment. Used to determine how many Blocks are returned to the Player in the View array,
  • View: an array of Blocks currently visible to the Player. The Blocks contained within the array are those within ViewRange of the Player's current coordinates. The view may be further modified by the LandType of the Player's current Block, and those nearby,
  • Results: an array of brief messages regarding the Player's actions in the previous turn - a mini log.

Blocks

A Block represents an individual location in the game. The Player always occupies a single block. Each Block has the following properties:

  • Easting: its horizontal coordinate within the game arena,
  • Northing: its vertical coordinate within the game arena,
  • LandType: the environment of the block, such as Plain, Forest, etc. The LandType can affect the Player in various ways,
  • Food: the number of food items in the Block,
  • Item: various objects that the Player can interact with, (not implemented),
  • E (Exposed): has this Block been viewed by the Player? Used to track progress and calculate the Player's score,

The Player moves from Block to Block throughout the game, seeking the resources needed to survive.

LandTypes

LandTypes represent an environment within a Block. There are (currently) 6 defined environments:

  • Plain: Open grasslands. Typically well provided with food. The Player may safely enter any Plain Block,
  • Mountain: High hills & mountain peaks. The Player cannot enter Mountain Blocks without the Mountaineering Ability. The Player's view range is increased when in a Mountain Block; conversely Mountain Blocks may obscure the Player's view of other Blocks (not implemented),
  • Water: Rivers, lakes, seas. The Player cannot enter Water Blocks without the Watercraft Ability
  • Forest: Dense bushlands & Jungles. The Player may enter any Forest Block, but their view range and action count may be reduced (not implemented),
  • Desert: The Player may enter any Desert Block, but will take moderate damage to their health
  • Lava: Volcanoes & lava fields. The Player may enter any Lava Block, but will take severe damage to their health.

Coordinates

Coordinates in Soup10 are always positive integers with the origin at the bottom left corner. 'Northing' is then the vertical axis, and 'Easting' the horizontal.

Scoring

The Player's score is calculated at the end of the game. Scoring is determined by a combination of the number of turns survived and the number of Blocks exposed.