The entire problem is in numbers. An example, we were looking at doing a robotics platform based around an ARM7 from Atmel. The processor in low quantities was ~$5.00, but if we could figure out a...
Type: Posts; User: jdarling
The entire problem is in numbers. An example, we were looking at doing a robotics platform based around an ARM7 from Atmel. The processor in low quantities was ~$5.00, but if we could figure out a...
Having a background in Digital Engineering and working closely with many groups to get high BOM (Built On Mass, not Bill Of Materials) let me say this. If they can get the qty up high enough the...
This isn't my project, but I've been following it for quite some time. I just checked the site and this is also a bit of old news, but the nD project has released the SDK for development...
A "Maybe" option would have been nice :). Depends on time and other constraints, but I'd be in if the stars line up.
This looks really cool and interesting. How long till we can find a link on where to download/play with it?
- Jeremy
I'm running Lazarus 9.29.?? (rev 26163) with FPC 2.4.1, so yeah, there are new features that don't exist in the 9.28 builds.
Can't see your screen shot to see what your talking about with the...
Actually, FPC/Lazarus takes care of proper slash direction for you. In all my projects I use / and let the compiler handle the rest. I found this out on accident when I was working on JumpStart and...
You can add your own, just simple dump the 32 bit PNG file into the proper partsbin folder (or create new ones, add ones to existing etc) and it will be picked up the next time the app is run. All...
Thats the basic idea. The "templates" that are there now I grabbed from http://silveiraneto.net/tag/pixelart/ and broke each layer (in Gimp) from his images into a new PNG with full alpha. Then the...
Made a few minor updates, added in RGB color shifting and (basic) Palette editing. Updated screenshot above, and posting a new Char from the builder for all to see:...
Does that work for our signatures too? I've been trying to reset my sig and been having issues with it as well. If so, then how do we link them as well (as you have done)?
Thanks AOD, I'm sure I'm the only moron in the group, but the new board has been a hard move for me to make :(.
One upside I've found is not having to enter bbCode for URL's as they seem to get...
Like many on this board a long time enemy of mine has been placeholder (or programmer) art in my applications as I'm either too cheap or too untalented to actually get real artwork. I ran across a...
Nothing stops you from compiling the GDK into a DLL and linking it via a FPC/Delphi app :). Little bit of outside the box thinking for ya :)
- Jeremy
Wouldn't you know it, I got my weekends mixed up and was out at the MakerFaire instead of working on LD :(. Oh well, guess there is always the next go around, but I did have a plan this time.
-...
Answering in reverse order here. Your if structures actually don't have anything to do with stack size. They are simply compiled down to compare and jump statements. What this does mean (and the...
Multiple inheritance via objects is not supported in Pascal, but inheritance from multiple interfaces and object delegates are supported (try Google to learn more, as others have explained MUCH...
The "Terrain" is simply random numbers stuck together into an array of points. So, um... yeah, it doesn't look good. The texture isn't exactly high quality either, it was just the first thing I found...
For sound fx you might try looking into sfxr (I found it yesterday, again, on the Ludum Dare site). Perfect little project for creating quick and easy sfx.
As for actual location:...
Sounds like fun, and maybe, if I can convince the wife and kids, I can try this year :). Quick question (after reading the "new rules"): Does from scratch mean I can't use any code I have lying...
Talk about a DUHH moment, I had one! Apparently while testing my ability to load images I took out the default value for the image wrapper used by the HUD. Quick fix, put it back in. Of course, no...
Shouldn't be anything missing... The sources are all there to build the app from scratch if you have Lazarus installed. I'd be interested to know what your running so I know where to start looking :)
I've made even more progress on my OpenGL learnings and now have something (well sort of) to show for it. I have random height mapping in place, texturing, and other fun things and started on...
If this is pure SDL then your method convention is wrong and should be:
function thread_func(data : Pointer): LongInt; cdecl; // this may change depending on Delphi/Laz and SDL ver
var
myList...
For SQL Server stay away from standard tables and injected SQL (permissions problems arise) and either go straight to the ADO connection object or use TADoStoredProcedure (I think is what its...