Dark GDK Programming Game Development by arithehun …taking Dark Basic courses, and converting the code to Dark GDK (not a difficult task), because I am unwilling to …CODE] Here is what I have so far in Dark GDK: [CODE=c]/*My first FPS Created by arithehun Date Started…:4/24/10 */ // whenever using Dark GDK you must ensure you include the header file #include "… Re: Dark GDK Programming Game Development by arithehun Actually, I posted this in a Dark GDK forum too, and I have now replied! I have noticed there were many views, so a lot of people want to know, but do not know how. Now you can! Go here to see my other post answered: [URL="http://forum.thegamecreators.com/?m=forum_view&t=169347&b=22"]Dark GDK Forum: Question Solved[/URL] wxpython gdk error on fedora 5 (fc5) Programming Software Development by NumNut … one of the pages of the notebook, I get a GDK error when the application closes: [B](python:20707…): Gdk-CRITICAL **: gdk_drawable_get_depth: assertion `GDK_IS_DRAWABLE (drawable)' failed (python:20707): Gtk-CRITICAL **: … Re: Help with C++ and Dark GDK Programming Game Development by green_frog …I have visual c++ and have recently downloaded the Dark GDK add on. Does anybody know where i could find some…help is appreciated Thanks -Chris[/QUOTE] The download of Dark GDK they includes tutorials. If you go to 'the game …creators' in the programs menu and then 'Dark GDK' then there is a folder with tutorials on: * Getting … Re: wxpython gdk error on fedora 5 (fc5) Programming Software Development by bumsfeld I don't have linux OS on my machine, but fail to understand why wxPython should bring up a gtk error? Also, is gdk and gtk a mix up? Please use code tags around your Python code to show proper indentations, take a look here: [url]http://www.daniweb.com/techtalkforums/announcement114-3.html[/url] Re: Help with C++ and Dark GDK Programming Game Development by chrishtones Dark GDK come's with some PDF files that give you some basic tutorials. You can find them by going to Program Files\The Game Creators\Dark GDK\Tutorials. If you read all of them you should be able to make some pretty cool games. Help with C++ and Dark GDK Programming Game Development by Cgm Hi, I have visual c++ and have recently downloaded the Dark GDK add on. Does anybody know where i could find some tutorials because I am okay with c++ but dont know how to code the graphics. Any help is appreciated Thanks -Chris Re: Help with C++ and Dark GDK Programming Game Development by Salem Lemme guess. [url]http://gdk.thegamecreators.com/[/url] You picked a random forum, rather than the forum of the homepage where you got the thing from in the first place. Make a guess as to where you'll find the highest concentration of people who are experienced in using it. Re: Help with C++ and Dark GDK Programming Game Development by Shinedevil Yeah i'd just try to find a Dark GDK forum and post there. I kind of did the same thing as you did, pick a random fourm and ask for help. But you are specifically choosing a certian topic, and if you know that, then just search for that topic. dark GDK Programming Software Development by tomtetlaw … doing the 'getting started' tutorial that comes with the dark gdk, and i ran into this error: c:\documents and settings… Re: dark GDK Programming Software Development by springwater … doing the 'getting started' tutorial that comes with the dark gdk, and i ran into this error: c:\documents and settings… Dark GDK Programming Game Development by chrishtones Does anybody know where I can find a good reference book or website about the Dark GDK Library? Re: Dark GDK Programming Game Development by csurfer Well I googled Dark GDK Tutorials in Google And I got just 10,600 links man,you too could have done the same well [URL="http://www.pdf-search-engine.com/dark-basic-pro-tutorial-pdf.html"][B]here is one[/B][/URL] I think would help you Dark GDK rotation Programming Software Development by chrishtones Does anybody know how to rotate a sprite around the center of the image rather than the top left corner in Dark GDK? Re: Dark GDK rotation Programming Software Development by William Hemsworth Consider using the Dark GDK forum for actually having a decent chance of getting a reply from people who know something about it. [URL="http://forum.thegamecreators.com/"][link][/URL] Multiple DirectX .x files from Dark GDK Programming Game Development by C++ Obliviator … game, in MS Visual C++ 2008 Express Edition with Dark GDK. I've created a level and so on, and now… gravity in dark gdk Programming Software Development by uhmyeah i am pretty new to c++ and dark gdk. im trying to make a simple platform game to start off. i have the basic controls down, the animations, and collision. but i am having much trouble finding how to create the effects of gravity. please help. Hiding Objects in Dark GDK Programming Game Development by green_frog Hi, I'm working on a game in Dark GDK in which i have created a new camera. Is it possible to hide an object in just the newly created camera and be able to view it in the default camera? check dark gdk code Programming Software Development by Tigerwatch … any mistakes please tell me.8-) This is in dark gdk code and you will have to copy colonel - x, universe… Re: wxpython gdk error on fedora 5 (fc5) Programming Software Development by NumNut Thanks for the reply. Unfortunately I can't comment on the nature of the error produced after my simple application closes. I am just puzzled and somewhat disheartened, as it was my intention to write a script that would run flawlessly on a linux and win32 wxpython framework. Re: wxpython gdk error on fedora 5 (fc5) Programming Software Development by NumNut I have just received a potential solution from leio at sourceforge, and hope it helps others: Date: 2006-05-21 15:07 Sender: [URL="https://sourceforge.net/users/leio/"]leio[/URL] This is a temporary regression in gtk+. gtk+-2.8.14, 2.8.15 and 2.8.16 are affected. 2.8.17 has it fixed. Try to upgrade or just ignore it until your … Re: dark GDK Programming Software Development by MatEpp did you include the image in the solution explorer? Re: Dark GDK Programming Game Development by ShawnCplus Yeah, did you try perhaps googling it and looking at maybe any of the first 1000 results? Re: Multiple DirectX .x files from Dark GDK Programming Game Development by C++ Obliviator And one more thing!!! When "else" is done in "case 2 : ", the camera automatically moves to another location !?!?!? WHY?!?!?! Re: gravity in dark gdk Programming Software Development by mrnutty What exactly do you mean? If you have an object moving, and you want gravity to account for its movement, then you can just do this : [code] const float GRAVITY = -9.8; ball.x += ball.velocity.x * dt; ball.y += ball.velocity.y + GRAVITY * dt; [/code] Those follow from basic Newtonian equation. Re: gravity in dark gdk Programming Software Development by nbaztec Shouldn't this be: ball.y += ball.velocity.y + GRAVITY * dt; this: ball.y += ball.velocity.y*dt + (GRAVITY*dt*dt)/2 Gravity should be treated as a (physics)vector. In a 2-D scenario the Gravity vector will have 2 components. X & Y. [CODE] struct LineVector { float x; float y; }; LineVector Gravity; Gravity.x = +0.0f; //Since gravity acts… Re: gravity in dark gdk Programming Software Development by uhmyeah Thanks for the replies but this wont work. I'm looking for something that would create more of a parabola for the ball to follow. Re: gravity in dark gdk Programming Software Development by nbaztec Parabolic trajectory is nothing but a velocity vector under the influence of non-perpendicular deceleration(gravity). Re: Multiple DirectX .x files from Dark GDK Programming Game Development by Kiaurutis I dont see any answer here... who did solved this? can u help me solve the same problem too? i have separate files for 1 model and when load new objects camera resets :[ Re: check dark gdk code Programming Software Development by rubberman Please be more explicit as to what this code is supposed to be doing, and what the error is.