diff --git a/src/Graphics.md b/src/Graphics.md index 13b5dac1..6ca7f09b 100644 --- a/src/Graphics.md +++ b/src/Graphics.md @@ -20,10 +20,10 @@ in 8×8 squares, called _tiles_ (or sometimes "patterns" or "characters"), often the base unit in Game Boy graphics. A tile does not encode color information. Instead, a tile assigns a -_color ID_ to each of its pixels, ranging from 0 to 3. For this reason, +[_color indices_](<#Data format>) to each of its pixels, ranging from 0 to 3. For this reason, Game Boy graphics are also called _2bpp_ (2 bits per pixel). When a tile is used -in the Background or Window, these color IDs are associated with a _palette_. When -a tile is used in an object, the IDs 1 to 3 are associated with a palette, but +in the Background or Window, these [color indices](<#Data format>) are associated with a _palette_. When +a tile is used in an object, the indices 1 to 3 are associated with a palette, but ID 0 means transparent. ## Palettes diff --git a/src/OAM.md b/src/OAM.md index 662f82be..c8c851e6 100644 --- a/src/OAM.md +++ b/src/OAM.md @@ -53,7 +53,7 @@ tile is "NN & \$FE", and the bottom 8×8 tile is "NN | \$01". "Attributes" 7:"Priority" 6:"Y flip" 5:"X flip" 4:"DMG palette" 3:"Bank" 2-0:"CGB palette"; }} -- **Priority**: `0` = No, `1` = BG and Window colors 1–3 are drawn over this OBJ +- **Priority**: `0` = No, `1` = BG and Window [color indices](<#Data format>) 1–3 are drawn over this OBJ - **Y flip**: `0` = Normal, `1` = Entire OBJ is vertically mirrored - **X flip**: `0` = Normal, `1` = Entire OBJ is horizontally mirrored - **DMG palette** *\[Non CGB Mode only\]*: `0` = OBP0, `1` = OBP1 diff --git a/src/Palettes.md b/src/Palettes.md index 2e3c8657..180616f5 100644 --- a/src/Palettes.md +++ b/src/Palettes.md @@ -5,7 +5,7 @@ ### FF47 — BGP (Non-CGB Mode only): BG palette data -This register assigns gray shades to the [color IDs](./Tile_Data.md) of the BG and Window tiles. +This register assigns gray shades to the [color indices](<#Data format>) of the BG and Window tiles. {{#bits 8 > "Color for..." 7-6:"ID 3" 5-4:"ID 2" 3-2:"ID 1" 1-0:"ID 0"; diff --git a/src/Tile_Data.md b/src/Tile_Data.md index 4d258588..738a427d 100644 --- a/src/Tile_Data.md +++ b/src/Tile_Data.md @@ -81,18 +81,18 @@ $38 $7C` appears as follows: For the first row, the values `$3C $7E` are `00111100` and `01111110` in -binary. The leftmost bits are 0 and 0, thus the color ID is binary `00`, or 0. -The next bits are 0 and 1, thus the color ID is binary `10`, or 2 (remember to +binary. The leftmost bits are 0 and 0, thus the [color index](<#Data format>) is binary `00`, or 0. +The next bits are 0 and 1, thus the [color index](<#Data format>) is binary `10`, or 2 (remember to flip the order of the bits!). The full eight-pixel row evaluates to 0 2 3 3 3 3 2 0. A tool for viewing tiles can be found [here](https://www.huderlem.com/demos/gameboy2bpp.html). -So, each pixel has a color ID of 0 to 3. The color +So, each pixel has a [color index](<#Data format>) of 0 to 3. The color numbers are translated into real colors (or gray shades) depending on the current palettes, except that when the tile is used in an OBJ the -color ID 0 means transparent. The palettes are defined through registers +[color index](<#Data format>) 0 means transparent. The palettes are defined through registers [BGP](<#FF47 — BGP (Non-CGB Mode only): BG palette data>), [OBP0 and OBP1](<#FF48–FF49 — OBP0, OBP1 (Non-CGB Mode only): OBJ palette 0, 1 data>), and [BCPS/BGPI](<#FF68 — BCPS/BGPI (CGB Mode only): Background color palette specification / Background palette index>), diff --git a/src/Tile_Maps.md b/src/Tile_Maps.md index 4083463e..b72a4435 100644 --- a/src/Tile_Maps.md +++ b/src/Tile_Maps.md @@ -28,7 +28,7 @@ entry in VRAM Bank 0, that is, 1:9800 defines the attributes for the tile at "BG attributes" 7:"Priority" 6:"Y flip" 5:"X flip" 3:"Bank" 2-0:"Color palette"; }} -- **Priority**: `0` = No; `1` = Colors 1–3 of the corresponding BG/Window tile are drawn over OBJ, regardless of [OBJ priority](<#Byte 3 — Attributes/Flags>) +- **Priority**: `0` = No; `1` = [Color indices](<#Data format>) 1–3 of the corresponding BG/Window tile are drawn over OBJ, regardless of [OBJ priority](<#Byte 3 — Attributes/Flags>) - **Y flip**: `0` = Normal; `1` = Tile is drawn vertically mirrored - **X flip**: `0` = Normal; `1` = Tile is drawn horizontally mirrored - **Bank**: `0` = Fetch tile from VRAM bank 0; `1` = Fetch tile from VRAM bank 1