Skip to content

Commit

Permalink
Added background info on sprite creation
Browse files Browse the repository at this point in the history
  • Loading branch information
kahleeeb3 committed Jul 18, 2024
1 parent 93a2b49 commit 8bd7736
Show file tree
Hide file tree
Showing 15 changed files with 893 additions and 54 deletions.
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"cSpell.words": [
"CHARBLOCK",
"charblocks",
"DEVKITARM",
"DEVKITPPC",
"devkitpro",
"Gameboy",
"memmap",
"mgba",
"mtab",
"pacman"
"pacman",
"Requantize",
"tilemap",
"Tonclib",
"Usenti"
]
}
Binary file added projects/Gameboy/files/Usenti1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/Gameboy/files/Usenti2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/Gameboy/files/Will.bmp
Binary file not shown.
61 changes: 61 additions & 0 deletions projects/Gameboy/files/Will.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@

//{{BLOCK(Will)

//======================================================================
//
// Will, 32x32@4,
// + palette 8 entries, not compressed
// + 16 tiles Metatiled by 4x4 not compressed
// Total size: 16 + 512 = 528
//
// Time-stamp: 2024-07-18, 00:15:43
// Exported by Cearn's GBA Image Transmogrifier, v0.8.3
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================

const unsigned short WillTiles[256] __attribute__((aligned(4)))=
{
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x1111,0x1000,0x5555,0x5100,0x5555,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x1111,0x0011,0x5555,0x0155,0x5555,0x1555,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x1111,0x0000,

0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x5510,0x5555,0x5510,0x5555,0x1111,0x1111,0x2221,0x2222,
0x2221,0x2222,0x1221,0x1161,0x1210,0x1161,0x2100,0x6666,
0x5555,0x5555,0x5555,0x5555,0x1111,0x1111,0x1111,0x1121,
0x6661,0x0161,0x6161,0x0161,0x6161,0x0161,0x6661,0x0161,
0x5555,0x0001,0x5555,0x0001,0x1111,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,

0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x2100,0x6666,0x3100,0x6644,0x3310,0x4444,0x3310,0x4466,
0x3310,0x4466,0x3100,0x4466,0x1000,0x7444,0x1000,0x7777,
0x1116,0x0016,0x6666,0x0016,0x1111,0x0001,0x0001,0x0000,
0x0001,0x0000,0x0001,0x0000,0x0017,0x0000,0x0017,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,

0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x1000,0x7777,0x0000,0x1111,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0017,0x0000,0x0001,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
};

const unsigned short WillPal[8] __attribute__((aligned(4)))=
{
0x0000,0x14A5,0x150A,0x2D6B,0x3627,0x2552,0x429D,0x76AA,
};

//}}BLOCK(Will)
28 changes: 28 additions & 0 deletions projects/Gameboy/files/Will.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

//{{BLOCK(Will)

//======================================================================
//
// Will, 32x32@4,
// + palette 8 entries, not compressed
// + 16 tiles Metatiled by 4x4 not compressed
// Total size: 16 + 512 = 528
//
// Time-stamp: 2024-07-18, 00:15:43
// Exported by Cearn's GBA Image Transmogrifier, v0.8.3
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================

#ifndef GRIT_WILL_H
#define GRIT_WILL_H

#define WillTilesLen 512
extern const unsigned short WillTiles[256];

#define WillPalLen 16
extern const unsigned short WillPal[8];

#endif // GRIT_WILL_H

//}}BLOCK(Will)
Binary file added projects/Gameboy/files/Will0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/Gameboy/files/Will1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/Gameboy/files/WillPal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/Gameboy/files/WillTiles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed projects/Gameboy/files/display_player.png
Binary file not shown.
Binary file removed projects/Gameboy/files/exportwindow.png
Binary file not shown.
Binary file removed projects/Gameboy/files/player.bmp
Binary file not shown.
Binary file removed projects/Gameboy/files/player_animation.mkv
Binary file not shown.
Loading

0 comments on commit 8bd7736

Please sign in to comment.