Raz
12th July 2003 23:54 UTC
Neon Wilderness
Inspired by UnConeD (again)(Ok so i copied the idea... i'll just call it a tribute and everything will be aaalright :D), "inspired by" UnConeDs elevation remix of shock value thingy, i still have a lot of work on the DM i think but here's what i have so far...
13373571
13th July 2003 00:51 UTC
It reminds me of the "Lights Out" game :D I hope somebody knows what I'm talking about.
The flying doesn't respond enough, it just goes straight and wavers back and forth a little.
S-uper_T-oast
13th July 2003 03:44 UTC
I like that DM, it get's pretty close to the same effect as UnConed's, (except with no turning), but the thing is, I can't really understand how yours gets were it got! The camera does need a little bit more reactive movement.
anubis2003
13th July 2003 06:10 UTC
I know that game 12309238423.
Good preset, but it does need to move a little more, as well as turn into the side paths. Buildings of different heights would be cool, but I don't think that that would be easy to implement in a DM.
Pixelcraft
13th July 2003 08:24 UTC
Hmm. I don't know what to say, really.
dirkdeftly
13th July 2003 08:42 UTC
Originally posted by anubis2003
[B]...12309238423.
:D
raz: reminds me of wolfenavstein3d without the turns...nice tho. the camera movement (both position and angle) seems a bit stiff and unnatural...dunno why tho
[Ishan]
13th July 2003 10:14 UTC
Originally posted by 13373571
It reminds me of the "Lights Out" game :D I hope somebody knows what I'm talking about.
Looks more like "Dynamic Tetris" to me:D
Raz
13th July 2003 11:47 UTC
I thought the exact same thing Atero when i first starting playing with the movement, seems a bit... wrong but i think i got used to it eventually. I'll eventaully get it to turn in different directions but first i've got to entirely decode zero g maze 3... so it's going to have to just move forward for now. I'll put a little work in later but i've just got up now and i'm going out.
anubis2003
13th July 2003 13:00 UTC
Atero, the reason it looks like unconed's wolfenstein preset is because he made the remix of shock value's preset using his wolfenstein code.
UnConeD
13th July 2003 15:50 UTC
Yeah but it doesn't explain why *this* looks like it ;).
Lacks a 'neon' feel though and I think the wrapping is quite obvious on the side. Perhaps you could try reducing the size of your squares on the texture, and increasing the texture size on the 3D objects.
Oh and avoid non-power-of-two coefficients in convolution, you can almost always come up with a faster kernel/divisor combo that looks nearly the same.
dirkdeftly
13th July 2003 22:55 UTC
aaaaand i said nothing about the texture looking like ucd's, did i
Raz
13th July 2003 23:32 UTC
Any other suggestions before i go on a big four-hour-work-on-the-damned-thing spree?
Raz
14th July 2003 01:22 UTC
Ok update, i made it neon-ish like and it looks purty now, also i made the wrap less obvious and optimised that horrible mess that made the basic shape. Oh yeah quick question does a replace replace EL suck fps?
UnConeD, do you know how i could shorten the distance between the intersections, i coded the basic premise for this monster of a DM a long time a go and maybe its just my messy code but i can't seem to figure out how, help muchas appreciated...
and now to bed......
Raz
14th July 2003 01:24 UTC
oh... your... god, i'm such an ass, and now for some well earned schleeeeep.
anubis2003
14th July 2003 03:37 UTC
The distance-based colors are really weird looking. Don't like that.
S-uper_T-oast
14th July 2003 03:40 UTC
I like how you changed the texture, but the Camera seems to follow the same general path, I think that needs some more work, like maybe having it move up and down, or maybe reverse around and be moving backwards.
Wiser87
14th July 2003 03:57 UTC
Originally posted by Raz
i'm such an ass
No comment ;) :D :D :D :D
[Ishan]
14th July 2003 09:11 UTC
Looks more "neonish" now :)
UnConeD
14th July 2003 14:07 UTC
Oh yeah quick question does a replace replace EL suck fps?
Each effect list has a separate buffer. Given the fact that AVS is not very optimized, a Replace/Replace FxList probably copies the image back and forth at the beginning resp. end, even though this is unnecessary.
However, unless it is triggered onbeat, you can just remove the Replace/Replace FxList and put all the components outside (be careful of the dragging-order bug though).
Btw Raz, could you put your nick in front of your presets? It's a common practice and makes it easier both now ('Raz made a preset... load -> Raz*') and later on ('I know someone made something similar a while ago...hmmm...who was it? I have this Neon Wilderness sitting here').
I'm not a big fan of the constant wobbling and the preset is weird because the lights get dark up close.
As far as distance shortening goes, you should jump the camera at the position as close as possible to the intersection without it looking odd. For the beginning of the jump, pick the position where the camera passes through the clipped out plane:
| |
__| ^ |__ _ _ _ _ when the camera passes through here,
. move it back 'down'.
__ . __
| . |
| . |
You can do it slightly lower if you want (depending on the projection angle and rotation around the camera's velocity vector).
Oh and you still need to get rid of that bad convokernel. Change the divisor from 3 to 4 and watch the FPS soar. To keep the overbright effect, change the center pixel's coefficient to 1.
More optimizations (DM):
z1=if(below((ax+xsx)/xxx,0),-10,((ax+xsx)/xxx));
-> Most of the time this is a no-no. Put the subexpression in a variable and change to:
z1=if(below(var,0),-1,var);
y=y*(h/w);
-> Put h/w into a variable once per frame rather than calculating it per point. You'll be replacing 32x32=1024 divisions perframe by 1.
xxx=xax*cy-(yay*sx+1*cx)*sy;
zzz=xax*sy+(yay*sx+1*cx)*cy;
-> I know you're probably still experimenting with the viewing angle, but by removing the '1*' you'll get rid of 2048 multiplications perframe.
Raz
14th July 2003 17:32 UTC
Ah, thanks a lot :up: I'll put some work in when i get home, thanks man :)
IceWarm
16th July 2003 21:46 UTC
Nice preset Raz. :up: It reminds me of that game also 13373571. :)