Blood Alley - External Media Free screensaver

Community Forums/Showcase/Blood Alley - External Media Free screensaver

Rob Farley(Posted 2006) [#1]



n8r2k(Posted 2006) [#2]
pretty sweet :)


Paul Murray(Posted 2006) [#3]
I get a 'Program has ended' message straight away, and a MAV if I run with debug off.

Debugger stops at

Until ms <> (MouseXSpeed() + MouseYSpeed())



n8r2k(Posted 2006) [#4]
dont touch anything, its a screensaver, cant move your mouse or hit any key.


TomToad(Posted 2006) [#5]
It's a screen saver. It'll end with any mouse movement.

I also get a MAV with Debug off.


Ross C(Posted 2006) [#6]
I don't get the MAV here. Maybe it's the number of polys/vertices it generates. It was pushing 300,000 in full screen. Impressive :o)


Rob Farley(Posted 2006) [#7]
I don't understand why anyone should be getting mavs. The number of cells increase until you get a stable 60fps, if the fps drops below 60 cells will be destroyed....

Unless it's deleting cells that don't exist? But that would only happen on a really slow machine.

Where does it mav?


TomToad(Posted 2006) [#8]
Ok, I fixed the MAV. Apparently on some machines, there is a delay while Blitz3D does some internal setup. Just put a "Delay 500" right before the Repeat statement on line 129 and it should work.

Edit:
Better option, Change the DeleteCell() function like this
Function DeleteCell()
	; Delete the first cell in the list and free the entities
	o.Cell = First Cell
 If o <> Null
	FreeEntity o\mesh
	FreeEntity o\phys
	Delete o
 End If
End Function



Paul Murray(Posted 2006) [#9]
Works.

Looks cool. Nice and relaxing.