User profile: fun2code

User info
User name:fun2code
Email:derekslagle@rocketmail.com
Name:Derek Slagle
Location:Glendale, CA
Bio:While earning a degree in Physics (graduated 1986) I was forced to take a couple of intro. programming classes in PASCAL(as requirements). These classes lit an interest in programming I would have otherwise never found!! I have been learning on my own and writing programs (in c++) for fun off and on ever since. Some of the best apps I have written are: 1) A user vs. PC version of Scrabble 2) A modified version of minesweeper (I'm a minesweeper nut) 3) A full featured 2D space shooter animated game which is a current ongoing project. All have supplied me with lots of learning. I often bite off way more than I can chew but so far I have always completed my chosen projects anyways. My goals ahead are to fill in the gaps in my use of GDI and API functions in my win32 projects (that is, to learn these skills more formally so I know what I'm doing solidly), move up to use of DirectX (I have some simple working apps now) and learning to use a more modern IDE (I have done everything using MS Visual C++ 6.0 so far). This site looks fun!
Statistical data
Birthdate:Jun 2, 1963
Gender:Male
Occupation:Other
Skills:C++
History
Joined:
Number of posts:1227
Latest posts:

Collision detection
Simply commenting out line 26 doesn't prove that it is where the crash occurs. A crash could happen ...

Help With C++ (arrays)
Do you mean the arrays [code]int ID[5]; int room[5];[/code] ? What are they for? In the example case...

Collision detection
Are you sure this error is occurring at line 26? The way you have it now only one erasure can occur....

Program keeps crashing when i play it D:
This could certainly be causing crashes: [code] void dinosaur::set_attacks(int *A) { if(atta...

Help With C++ (arrays)
That's a good start. If you can use std::string (this is c++) instead of char arrays (c) that would ...