Search found 17 matches

by cbmeeks
Tue Feb 10, 2004 5:51 pm
Forum: Game Programming
Topic: PureBasic and LUA??
Replies: 2
Views: 2201

PureBasic and LUA??

Does anyone know if PB can be used with a scripting language like LUA? Or Python? Or any scripting abilities?

Thanks

cb
by cbmeeks
Sat Dec 27, 2003 6:45 pm
Forum: Coding Questions
Topic: Which is faster/better?
Replies: 4
Views: 2193

Come on...anybody?

cb
by cbmeeks
Sat Dec 27, 2003 6:44 pm
Forum: Game Programming
Topic: Check out my scrolling demo!
Replies: 6
Views: 3057

Commented out the joystick info on mine and we were rocking and rolling... V nice
Did the joystick not work?
by cbmeeks
Sat Dec 27, 2003 2:35 am
Forum: Coding Questions
Topic: Which is faster/better?
Replies: 4
Views: 2193

Which is faster/better?

And why?


;VERSION 1

Start3D()

Repeat
....
;2D Sprites
DisplaySprite
DisplaySprite
DisplaySprite
.....
;3D Sprites
TransformSprite3D
TransformSprite3D
TransformSprite3D
DisplaySprite3D
DisplaySprite3D
DisplaySprite3D
.....
Until EndOfGame

Stop3D()



OR


;VERSION 2

Repeat
....
;2D Sprites ...
by cbmeeks
Sat Dec 27, 2003 2:30 am
Forum: Game Programming
Topic: DisplaySprite3D garbage???
Replies: 13
Views: 5534

hehe...

so, does the effect look good?

I am kinda proud

cb
by cbmeeks
Sat Dec 27, 2003 1:01 am
Forum: Game Programming
Topic: Controlling Force Feedback
Replies: 1
Views: 1584

Yeah, I am curious about this myself because I just got a new WingMan RumblePAD for Christmas. :-D

cb
by cbmeeks
Fri Dec 26, 2003 10:39 pm
Forum: Game Programming
Topic: Check out my scrolling demo!
Replies: 6
Views: 3057

Check out my scrolling demo!

Man, PB is awesome!

I have run into some bugs (may be video card related...see my DisplaySprite3D garbage thread)

ANYWAY, download the demo below and let me know if it runs smooth (the scrolling is slow...but it should be smooth).

Left/right to move. Also, scroll to the end and you will see Kraid ...
by cbmeeks
Fri Dec 26, 2003 10:32 pm
Forum: Game Programming
Topic: DisplaySprite3D garbage???
Replies: 13
Views: 5534

See? I knew I wasn't crazy....lol

I have re-uploaded another example that should fix it all...plus it is hella-cool!

download and let me know what you all think

cb

HERE -- > cb.signaldev.com/lava.zip
by cbmeeks
Fri Dec 26, 2003 9:38 pm
Forum: Game Programming
Topic: DisplaySprite3D garbage???
Replies: 13
Views: 5534

But alot off old gfx cards would show your Lava.png and Lava2.png wrong cus they are 96x96
you should change the size to 64x64 or 128x128 og 256x256 to be showen correctly
on my card i only see white waves insted off lava, i see the lava crorect when i change the size.

Yeah, I thought about ...
by cbmeeks
Fri Dec 26, 2003 2:44 pm
Forum: Game Programming
Topic: DisplaySprite3D garbage???
Replies: 13
Views: 5534

Well, both machines have different monitors. And one of them is less than a year old.

This kinda worries me because I have been looking high and low for an engine that is FAST at 2D and allows you to mix 3D in it and still keep some speed. I wonder if it is because of the demo version?

-cb
by cbmeeks
Fri Dec 26, 2003 3:17 am
Forum: Game Programming
Topic: DisplaySprite3D garbage???
Replies: 13
Views: 5534

That's weird. I can't be the only one that has happened to. It has happened on two different machines. One of the machine I KNOW has the newest drivers.

Plus, sometimes it does it...sometimes it does not

cb
by cbmeeks
Wed Dec 24, 2003 11:42 pm
Forum: Game Programming
Topic: DisplaySprite3D garbage???
Replies: 13
Views: 5534

DisplaySprite3D garbage???

I am still having the same problem. When I draw a 3D sprite too close to the edge of the screen or especially beyond the edge of the screen, I get weird artifacts or lines or pixels over the sprite. Any clues why this happens? I have tried both PNG and BMP files and it does it with both.

I have ...
by cbmeeks
Wed Dec 24, 2003 4:44 am
Forum: Feature Requests and Wishlists
Topic: LoadAnimSprite
Replies: 3
Views: 1755

I couldn't get it to work. I am still using the DEMO version of PB. I plan on purchasing it after XMas. I was a little hesitant until I saw the LETHAL JUDGMENT 2 - ORBITAL APOCALYPSE video....OMG!!

cb
by cbmeeks
Wed Dec 24, 2003 4:19 am
Forum: Coding Questions
Topic: Holly crap Batman!
Replies: 1
Views: 1040

Holly crap Batman!

I am AMAZED at some of the demos I have seen with Purebasic! PURE INTRUDERS should be in an arcade!

The alpha effects are truely amazing. ANd I can't wait to see LETHAL JUDGMENT 2 - ORBITAL APOCALYPSE.

Wow.

cb
by cbmeeks
Tue Dec 23, 2003 11:27 pm
Forum: Game Programming
Topic: DisplaySprite3D weird??
Replies: 3
Views: 1804

;
; ------------------------------------------------------------
;
; PureBasic - Sprite example file
;
; (c) 2002 - Fantaisie Software
;
; ------------------------------------------------------------
;

If InitSprite() = 0 Or InitKeyboard() = 0 Or InitMouse() = 0
MessageRequester("Error", "Can't ...