Thursday, 12 April 2012

A work in progress: Accuracy game [Delphi]

I'm currently working on a Delphi game. The rules are as following: On the right there is a model with a color that changes. Inside the game field are more circles which randomly appear and change colors and your task is to click the correct color and accurately. It's still a work in progress, but I can post some pictures already. Sorry for not including the code, it's rather long (I suppose I could send it to you if you wanted). As it's a work in progress, many things don't work yet (visible on the screenshots). I'll be finishing this soon though. ...

Sunday, 8 April 2012

A very simple Blackjack game [C++]

Here's another of my creations, this time a very, very simple Blackjack game that doesn't even have an opponent to play against. But it took me quite a while. C++ sure is a hard language. Here's the code and of course an image to demonstrate what it does. #include #include using namespace std; // Global Variables // char *card_num[] = {"2","3","4","5","6","7","8","9","10","Jack","Queen","King","Ace"}; char *card_type[] = {"Clubs","Diamonds","Spades","Hearts"}; // Structures // struct cardtype { int color; int number; int value; }; struct decktype { bool deck[52]; int size; }; // Functions // void SeedRandom() { ...

Thursday, 5 April 2012

My go at TicTacToe [C++]

Today I started getting into C++ with my previous experiences with Pascal. I tried writing a simple Tictactoe program in the console. There were some difficulties, but overall I'm quite happy with how it worked out :D. It's probably not very effective and the conditions whether a player won or not are pretty clustered, but for a first try I'm content. Here's the code. #include using namespace std; void main() { // Declarations char rgBoard[9] = {'1','2','3','4','5','6','7','8','9'}; bool bIsGameOver = false; int iPlayer = 1; int iTurn; bool bTurn = false; // Print initial board cout << rgBoard[0] << "|" <<...

Page 1 of 11

Follow us