One of my favorite DOS games as a kid was Mahjong solitaire. I remember wondering how it worked underneath and knew I had to implement it using a modern 3D graphics API.
I started simple by first rendering rectangular prisms to represent the tile positions.
I next added texturing and basic lighting.
I improved the legibility of the tiles, added a hint mechanism and score counter:
I created a map editor as well. Each layer can be hidden/shown for easier editing. The counter at the bottom tells you how many tiles have yet to be placed.
I applied bump mapping to the tiles to give them an engraved look, and then refined the shading of the ink.
To polish the look, I applied a wood texture and bump mapping to the tiles. Note how no two tiles look quite the same. I also applied random rotations to the tiles for realism.
I added a fun win effect, complete with fog. The tiles are traveling along a Hermite-interpolated curve. I used transform feedback to perform the computations on the GPU.
I experimented with other effects too, such as worn tiles and vertex-displaced meshes. In addition, I ported the game to Direct3D.
I implemented a layer separator mechanism in the map editor, for enhanced legibility.
Like all of my other graphics projects, I support the 3Dconnexion SpaceNavigator mouse to visualize my shaders: