No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Just trying to learn C++!
- Interests
- Music and Games
- PC Specs
- Windows
7 Posted Topics
I need to update the SQL table every minute, as if typing on an online notepad, that save frequently. So of course, I have: [CODE]<textarea rows="20" cols="80" id="notepad"> <?php $con=mysql_connect("localhost","username","password"); if(!$con) { die('Could not connect: '.mysql_error()); } mysql_select_db("database", $con); $result = mysql_query("SELECT * FROM Notepad"); while($row = mysql_fetch_array($result)) { echo … | |
Re: I suggest SDL 1.2, for it's simplicity. It enables you to make 2D cross compatible games. For tutorials, I recommend Lazy Foo', he shows you how to set it up and everything. [url]http://lazyfoo.net/SDL_tutorials/index.php[/url] | |
Re: [QUOTE=spoonlicker;1475309]On the contrary it doesn't, but to make really advanced games you'll have to be forced to use some kind of programming algorithms or methods for position checking, boolean true or false and handling tons of data. I tried to make an RPG game on Game Maker, like Final Fantasy, … | |
Re: Real game designers use Design Documents, documents that explain everything about the game, from graphics, to where everything is placed, to coding issues. These design documents go through edits as game development goes on and the programmers use these to have a general guideline. | |
So I'm beginning to move onto the OpenGL 3 phase. I found some source code and I've been playing around with it. How would I implement something with the same effect as glTranslate, but without using any deprecated coding? I'm trying to make a 2D game engine with it. I … | |
I am using Visual C++ Express Edition on Windows, and I am look at the windows task manager and I noticed that every second, in the process tab the memory of my C++ program increases about 8 K when I am not even doing anything. Also, I've noticed that if … | |
Hey guys, I'm new here. I just started learning c++ and I'm having a few problems. I have looked for one online but I found none that really worked for me so I tried to make my own. I'm trying to make a constant frame rate at 30 frames per … |
The End.