2020-07-19 11:46:37 +01:00
|
|
|
package atlas
|
|
|
|
|
|
|
|
// Glyph represents the text representation of something in the game
|
|
|
|
type Glyph byte
|
|
|
|
|
|
|
|
const (
|
|
|
|
// GlyphNone is a keyword for nothing
|
|
|
|
GlyphNone = Glyph(0)
|
|
|
|
|
2020-07-19 11:56:05 +01:00
|
|
|
// GlyphGroundRock is solid rock ground
|
|
|
|
GlyphGroundRock = Glyph('-')
|
2020-07-19 11:46:37 +01:00
|
|
|
|
2020-07-19 11:56:05 +01:00
|
|
|
// GlyphGroundGravel is loose rocks
|
|
|
|
GlyphGroundGravel = Glyph(':')
|
2020-07-19 11:46:37 +01:00
|
|
|
|
2020-07-19 11:56:05 +01:00
|
|
|
// GlyphGroundSand is sand
|
|
|
|
GlyphGroundSand = Glyph('~')
|
2020-07-19 11:46:37 +01:00
|
|
|
|
2020-07-19 11:56:05 +01:00
|
|
|
// GlyphRoverLive represents a live rover
|
|
|
|
GlyphRoverLive = Glyph('R')
|
2020-07-19 11:46:37 +01:00
|
|
|
|
2020-07-19 11:56:05 +01:00
|
|
|
// GlyphRockSmall is a small stashable rock
|
|
|
|
GlyphRockSmall = Glyph('o')
|
2020-07-19 11:46:37 +01:00
|
|
|
|
2020-07-19 11:56:05 +01:00
|
|
|
// GlyphRockLarge is a large blocking rock
|
|
|
|
GlyphRockLarge = Glyph('O')
|
2020-07-19 11:46:37 +01:00
|
|
|
)
|