Page 1 of 1

Database

PostPosted: Tue Feb 28, 2012 2:17 pm
by Troodon
Can I make a game that loads information from a database created for example with SQL?

I'm working on a game that uses quite much information and I'm worrying about framerates dropping if the ged file would take care of all the calculations.

Re: Database

PostPosted: Sun May 20, 2012 5:36 pm
by Bee-Ant
Reading data from external file and then stored them in an array?
Yes you can. But the problem is, GE is quite inaccurate in reading external data in decimal mode (using fscanf()).
Will do better in hexadecimal (using fread()).
So in this case, you need your own "data-generator" to store all the information to a file in hex, and then load it via your game.
Much like loadVars() and saveVars() functions :)

Re: Database

PostPosted: Sun May 20, 2012 7:34 pm
by skydereign
Bee-Ant wrote:But the problem is, GE is quite inaccurate in reading external data in decimal mode (using fscanf()).

I've only experienced problems with fscanf when dealing with windows exports (which makslane has fixed). Does this happen elsewhere for you?

Re: Database

PostPosted: Mon May 21, 2012 12:46 am
by Bee-Ant
Yup, windows export.
It always messed up whenever I add "newline" a.k.a. "enter".
Well, actually was experiencing this as well with Linux