Forum: C++ Aug 6th, 2008 |
| Replies: 3 Views: 443 Re: BMP reading the article about the .bmp file format was useful enough. Thanks! |
Forum: C++ Aug 6th, 2008 |
| Replies: 18 Views: 744 Re: enum warnings it is some work to write (bool) in front, but al least no errors :) |
Forum: C++ Aug 5th, 2008 |
| Replies: 18 Views: 744 |
Forum: C++ Aug 5th, 2008 |
| Replies: 3 Views: 443 BMP reading I start a new thread about this. I need just a piece of code that reads a bmp file. I NEED this. Every program i made used custom graphic files, and a very unpractical graphic editor made by me .... |
Forum: C++ Aug 5th, 2008 |
| Replies: 18 Views: 744 Re: enum warnings i tried just to make my code writing more efficient, i also used dev c++ a lot so i got used with bool
i understand that my compiler returns this:( x || y ) as an int type, so it automatically ... |
Forum: C++ Aug 5th, 2008 |
| Replies: 18 Views: 744 |
Forum: C++ Aug 4th, 2008 |
| Replies: 18 Views: 744 enum warnings i use an older compiler, borland c++ 3.1 and it doesn't have the bool variable type so i made my own bool type
enum bool
{
false = 0, true
};
but always when i try to make comparisons or... |
Forum: C++ Aug 3rd, 2008 |
| Replies: 15 Views: 2,697 |
Forum: C++ Aug 3rd, 2008 |
| Replies: 1 Views: 253 enum question can more variables have the same value in an enum ?
eg.
enum boolean
{
true = 1, false = 0, TRUE = 1, FALSE = 0
}; |
Forum: C++ Jul 29th, 2008 |
| Replies: 8 Views: 378 Re: graphic design program for each step display each pixel as a a square made out of pixels that grows with each step
let me explain :
R = red
B = blue
Y = yellow
G = green
step 0: |
Forum: Posting Games Jul 29th, 2008 |
| Replies: 49 Views: 2,221 |
Forum: Posting Games Jul 28th, 2008 |
| Replies: 1,240 Views: 53,006 |
Forum: Posting Games Jul 28th, 2008 |
| Replies: 3,185 Views: 189,144 |
Forum: Posting Games Jul 28th, 2008 |
| Replies: 49 Views: 2,221 |
Forum: C++ Jul 28th, 2008 |
| Replies: 8 Views: 1,097 Re: BMP C++ is this thread helpful ? http://www.daniweb.com/forums/thread17496.html
i tried this one
all i got were negative values.
could it work ? |
Forum: Posting Games Jul 28th, 2008 |
| Replies: 290 Views: 14,679 |
Forum: Posting Games Jul 28th, 2008 |
| Replies: 276 Views: 23,384 |
Forum: Posting Games Jul 28th, 2008 |
| Replies: 2,038 Views: 109,829 Re: Word Change Game Unhappy beaver's with their offspring stopped spanking New Zealand polices and failed to annex Australia. |
Forum: C++ Jul 28th, 2008 |
| Replies: 8 Views: 1,097 Re: BMP C++ I have to mention that i use Borland 3.1 :D, it's quite old, but i use it very much, it supports pascal-like graphics. I also use Dev C++. I make the game in Borland 3.1. i would like a code for... |
Forum: C++ Jul 28th, 2008 |
| Replies: 7 Views: 434 |
Forum: C++ Jul 28th, 2008 |
| Replies: 8 Views: 1,097 Re: BMP C++ I kinda want to do it my self , no DirectX. I want some help like a piece of code to explain, something more explicit than the Wikipedia article. |
Forum: C++ Jul 27th, 2008 |
| Replies: 8 Views: 1,097 BMP C++ I 'm making a game in C++ and I need some help, I want to display a bmp image. I want to read a a bmp file and save the color ids in a matrix. Could you please help me. :) |