hlgsdx / Bejeweled

Simple Bejeweled game with SDL and an Object-oriented design

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bejeweled

This is my take on implementing the classical Bejeweled/Match-3 game. It's written purely with SDL 1.2 and C++, and thus should be portable. (I've yet to test it on OSX/Linux though)

Unlike many game implementations, I attempted to employ an object-oriented design to the game, using MVC and other approaches, making it very modular and an easy-to-pickup code.

Compilation Prerequisites

These instructions are for compilation with VC++ on Windows machines. Compiling on other platforms isn't much harder - look for instructions on Lazyfoo's SDL Tutorials

The provided solution file is of VS2013, but it can also be opened with VS2012. You can, of course, use any IDE of your choice.

  • You need to have the following headers and libraries

  • SDL 1.2.15

  • SDL_ttf 2.0.11

  • SDL_image 1.2.12

  • SDL_mixer 1.2.12

  • The VS project is configured to look for the headers/libraries in matching subdirectories under C:\SDL - but you can change it in the project properties.

  • You also need to have the following DLL's in your project directory (files are available in the above packages)

  • From SDL_ttf:

    • libfreetype-6.dll
    • SDL_ttf.dll
    • zlib1.dll
  • From SDL_image:

    • libjpeg-8.dll
    • libpng15-15.dll
    • SDL_image.dll
  • From SDL_mixer:

    • SDL_mixer.dll
    • libvorbis-0.dll
    • libvorbis-0.dll
    • libogg-0.dll
  • From SDL:

    • SDL.dll

If you are having a hard time compiling/linking/running with SDL, do not hesitate to check out Lazyfoo's Tutorial

Copyrights

Graphical resources and sound effects are courtesy of the Freegemas project, an open-source Bejeweled version built on top of the Gosu library (GNU GPL v2). Background music(A Conversation with Saul (Jazz/Blues Shuffle)) by Matthew Pablo (CC-BY 3.0) Rest of the project is licensed under GPLv2 (see LICENSE.MD)

Author

Yoav Francis

Future todo's:

  • Employ State pattern for different states (main menu, game screen, records screen, etc.)
  • Employ Strategy pattern for abstraction of game mechanics.

Appendix - Design Ideas

I'll not delve into the code itself, but I'll try to abstractly present the "algorithm" (Or to put more correctly, how the game works)

In putting the game to an MVC design, There arises the following problem :

Consider the "View" part, which essentially handles drawing to the screen - must reflect the board state ("Model"). However, if a match was to be found on the board - it'll be cleared, new tiles will be dropped to the board - and it will again be drawn to the user.

This is very unpleasant, to say the least, in regards to user experience - the user will see the board shifting from one state to another, totally different state - without any transition.

And thus we must find a way to draw the board in every step of change. "A step" is a vague definition - but for that matter what it means is every change in the board model.

And so, once we alter our model to work in a "step-wise" fashion (which will soon be explained more clearly), our view part easily reflects the board state to create a satisfiable user experience.

The best way to model the board states would be with a deterministic finite automaton (DFA). The "Controller" manages the current state of the board and follows the following DFA for the board states ("state of the model"):

Pleaes note that this should accompany you when you review the code, otherwise it may be a bit hard to comprehend without relevant screenshots (Which I plan to add later on)

  1. Uninitialized
  • Uninitialized state set by the controller.
  1. Freeze
  • Board is initialized with random tiles. User has not pressed "Play" yet so board is unplayable and not drawn.
  1. Check if there are no moves
  • There is a chance that the board will be generated or reach a state without any possible moves (tile switches that generate a sequence of 3 or more tiles)
  1. No moves are available
  • Game is over and player is notified
  1. Ready
  • Board is ready to be played (clicked)
  1. Selected first tile
  2. Selected second tile
  3. Gravitate rows once
  • Consider the board state now. We have some missing tiles (corresponding to the positions in which the match was found
  • We would like to "pull down" the tiles above them, essentially putting some "gravity" into play and bring down the tiles above.
  • This is done "step-by-step" in order to give a better user experience.
  • Once the board is "gravitatized" - we can drop new tiles from above.
  1. Drop new tiles from above
  • Drops a single row of new tiles
  • If no tile was dropped - time to check the board for matches.
  • otherwise, we need to "graviatize" the board again, bringing the new tiles down to their respective positions.
  1. Board is now in the stable state ("Gravitatized" and with no empty tiles that await to be filled with tiles "from above")
  • If there are no matching sequences on the board, we can head back to the (3) state.
  • Otherwise, matching sequences are eliminated and the board is sent to the (8) state, just as if the user made a valid switch that resulted in a match.

About

Simple Bejeweled game with SDL and an Object-oriented design

License:GNU General Public License v2.0


Languages

Language:C++ 100.0%