kolibrios/programs/games/2048/board.h
raandoom 9f16c89604 2048: source files added
git-svn-id: svn://kolibrios.org@5229 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-11 20:14:23 +00:00

41 lines
944 B
C

#ifndef BOARD_H
#define BOARD_H
#include "defines.h"
#include "cell.h"
// Draw a new board
void board_init(rect* r);
// Redraw board and all content (animation will started if needed)
void board_redraw();
// Add one tile with 2 or 4 value in a random cell place
// Return true if tile added, false - if no more place for tile
__u8 board_add_random_tile();
// Check for available moves
// Return true if board has moves, false - if not
__u8 board_has_moves();
// Get score
__u32 board_score();
// Try to move all tiles up
// Will return true if something moved or false - if not
__u8 board_up();
// Try to move all tiles down
// Will return true if something moved or false - if not
__u8 board_down();
// Try to move all tiles left
// Will return true if something moved or false - if not
__u8 board_left();
// Try to move all tiles right
// Will return true if something moved or false - if not
__u8 board_right();
#endif // BOARD_H