Search found 354 matches

by arenth
Jan 24, 2007 1:12
Forum: Sources, Examples, Tips and Tricks
Topic: Hue Desktop - Second Version Is Out!!!
Replies: 17
Views: 6646

I definitely think this is a cool idea, and worth a shot.
by arenth
Jan 23, 2007 21:21
Forum: Archive
Topic: Enet release build.
Replies: 29
Views: 11708

Heh _Oz__ beat me to posting, but I have a package to submit too:D. The headers should be more complete. Enet.bi will include the proper header for the proper OS. You can also define ENET_DLL before including enet.bi, to use the enet dll instead of the static lib. Finally it includes a static and dy...
by arenth
Jan 23, 2007 17:18
Forum: Beginners
Topic: Blue Screen / Green Screen Effect?
Replies: 6
Views: 2012

A green screen is the effect used by cinematographers to composite a foreground onto a different background, IE the weather man on the weather board, he is really in front of a green screen. Also, What I mean is you could process an avi to get each individual frame, then use a custom blender[1] in t...
by arenth
Jan 23, 2007 14:35
Forum: Beginners
Topic: Blue Screen / Green Screen Effect?
Replies: 6
Views: 2012

You could probably write a blue/green creen app in FB fairly easily, since a custom put blender could be used to replace those colors with a source image, while leaving non blue screen elements intact.
by arenth
Jan 21, 2007 1:20
Forum: Archive
Topic: Enet release build.
Replies: 29
Views: 11708

No I have g-mail, I just like hotmail better, g-mails junk filter sucks.
by arenth
Jan 19, 2007 11:53
Forum: Archive
Topic: Enet release build.
Replies: 29
Views: 11708

I know, its Microsoft's over aggressive junk filter...
by arenth
Jan 19, 2007 8:57
Forum: Beginners
Topic: Reallocate and push existing data to the back
Replies: 2
Views: 1067

Yeah, what you will have to do, is reallocate your buffer to the size of the current buffer + the size of the new data. Then use memcpy "#include "crt/crt.bi" to move your old data to the end of your allocated block, then copy in your new data.
by arenth
Jan 19, 2007 0:28
Forum: Archive
Topic: Enet release build.
Replies: 29
Views: 11708

Hmm, I'll look into this tomorrow. I just noticed an email in my junk folder about it. So, sorry for the late reply.
by arenth
Jan 04, 2007 0:21
Forum: Beginners
Topic: GTK error - advice please?
Replies: 2
Views: 1649

To me it sounds like an old copy of libiconv, your best bet is to get a fairly current GTK package. This site >Glade for win32< maintains a few packages, you'll probably want the devel package.
by arenth
Jan 02, 2007 10:55
Forum: General
Topic: Double Buffering - 2 pages vs. image buffer
Replies: 2
Views: 1587

I would imagine getting, then modifying the pixels, then putting them back would be really slow. Your best bet for speed would probably to double buffer it.
by arenth
Dec 25, 2006 13:20
Forum: Beginners
Topic: I would like start a new with IDE
Replies: 75
Views: 37534

I personally would love to see true, and simple project support, I hate #include "blah.bas". I'd like to drop a .bas into a project and have it automatically added to the build line. As well as the ability to rearrange their build order, and set whether a .bas in the project is actually ad...
by arenth
Dec 20, 2006 6:23
Forum: Beginners
Topic: Elastic Dot
Replies: 13
Views: 2489

Oh well if it really is homework, who cares? One of two things will happen. a) Short term, his teacher will find out, and take appropriate action. a+=1) Long term, he will continue to do this, and continue to get away with it, then he will get out of school thinking he's a real programmer, at which ...
by arenth
Dec 19, 2006 22:48
Forum: Beginners
Topic: Elastic Dot
Replies: 13
Views: 2489

Heres a very simple way to simulate "springyness" #include "fbgfx.bi" screenres 640,480, 16, 2 screenset 1,0 dim as integer mX, mY, mB dim as single ballX, ballY ballX = 0 ballY = 0 do until multikey(FB.SC_ESCAPE) getmouse mX, mY,,mB 'If mouse 1 is pressed then we assign the ball...
by arenth
Dec 19, 2006 13:23
Forum: General
Topic: Boolean Type
Replies: 4
Views: 2117

While it seems wasteful the best type for a boolean is in fact an integer, since its the fastest data type in FB (CPU's always manipulate their native data type fastest, FB is 32 bits only (for now), integer is 32 bits(for now)).
by arenth
Dec 16, 2006 22:38
Forum: Beginners
Topic: Compiled program just crashes...? Ants
Replies: 18
Views: 3909

Maybe applying a blend function to your pheromone buffer would help some stuff, it would created wider "solid" trails, and eliminated small useless ones. Also consider having 2 pheromone buffers, 1 for moving away from the nest (and should be ignored by returning ants) and one for returnin...