Skip to content

Commit

Permalink
new sprites, current score, best score wip (need to check on hardware)
Browse files Browse the repository at this point in the history
  • Loading branch information
pashutk committed Oct 2, 2016
1 parent 0bc777f commit acbb267
Show file tree
Hide file tree
Showing 16 changed files with 284 additions and 155 deletions.
355 changes: 200 additions & 155 deletions game.c

Large diffs are not rendered by default.

Binary file modified game.gb
Binary file not shown.
Binary file added sprites/a.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 sprites/black.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 sprites/e.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 sprites/fourdots.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 sprites/l.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 sprites/onedot.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 sprites/p.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 sprites/r.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 sprites/s.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 sprites/t.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 sprites/threedots.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 sprites/twodots.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 sprites/u.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 84 additions & 0 deletions tiledata.h
Original file line number Diff line number Diff line change
Expand Up @@ -1386,3 +1386,87 @@ const unsigned char land_tile_data[] ={

const unsigned char num_9_tile_data[] ={
0x00,0x00,0x3C,0x3C,0x24,0x24,0x3C,0x3C,0x04,0x04,0x04,0x04,0x3C,0x3C,0x00,0x00};

// ///////////////////////
// // //
// // File Attributes //
// // //
// ///////////////////////

// Filename: u.png
// Pixel Width: 8px
// Pixel Height: 8px

// /////////////////
// // //
// // Constants //
// // //
// /////////////////

const int u_tile_map_size = 0x01;
const int u_tile_map_width = 0x01;
const int u_tile_map_height = 0x01;

const int u_tile_data_size = 0x10;
const int u_tile_count = 0x01;

// ////////////////
// // //
// // Map Data //
// // //
// ////////////////

const unsigned char u_map_data[] ={
0x00
};

// /////////////////
// // //
// // Tile Data //
// // //
// /////////////////

const unsigned char u_tile_data[] ={
0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x38,0x38,0x00,0x00};

// ///////////////////////
// // //
// // File Attributes //
// // //
// ///////////////////////

// Filename: l.png
// Pixel Width: 8px
// Pixel Height: 8px

// /////////////////
// // //
// // Constants //
// // //
// /////////////////

const int l_tile_map_size = 0x01;
const int l_tile_map_width = 0x01;
const int l_tile_map_height = 0x01;

const int l_tile_data_size = 0x10;
const int l_tile_count = 0x01;

// ////////////////
// // //
// // Map Data //
// // //
// ////////////////

const unsigned char l_map_data[] ={
0x00
};

// /////////////////
// // //
// // Tile Data //
// // //
// /////////////////

const unsigned char l_tile_data[] ={
0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x7C,0x7C,0x00,0x00};

0 comments on commit acbb267

Please sign in to comment.