Jump to content


wicked mountains


13 replies to this topic

#1 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted 16 June 2013 - 05:48 PM

raycasting looks so dreamy...

using my gtx690 to the max. :)

Posted Image
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#2 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted 17 June 2013 - 08:10 AM

Posted Image
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#3 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted 17 June 2013 - 08:24 AM

gnomish landscape
Posted Image


added water... no reflections or refractions yet, and no skybox, so theres some things still left to improve it.
Posted Image
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#4 Albertone

    New Member

  • Members
  • PipPip
  • 32 posts

Posted 17 June 2013 - 04:08 PM

I don't want to sound harsh but to me it looks a lot like the Mars demo released in 1994...

#5 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted 17 June 2013 - 06:42 PM

HAHA! i had the exact same thought! ive got to see it with the rover on top of it, then my work here is done :)
but honestly, i really feel some potential here, especially for a unique looking rts?

had to take the grass fluff off, but its going way faster now, will add the proper water next.
Posted Image
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#6 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted 17 June 2013 - 07:02 PM

Yeh, your right, its like off what youd see on national geographic dating back a bit, ive got a running demo now, heres a movie, ill get the exe uploaded next.
Its a great test for your video cards pixel shader.


you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#7 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted 17 June 2013 - 07:13 PM

The demo is under documents, try (if you would be so kind...) and tell me your framerate and video card specs!

https://mwootton.egn....168.2.45_6280#
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#8 Albertone

    New Member

  • Members
  • PipPip
  • 32 posts

Posted 17 June 2013 - 08:42 PM

I've not been able to download the demo: the first time I saw a blank screen, and since then I can no longer access.

#9 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted Yesterday, 05:47 AM

try on gamedev, the site i used was pretty dodgy.

http://www.gamedev.n...ith-attachment/
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#10 Albertone

    New Member

  • Members
  • PipPip
  • 32 posts

Posted Yesterday, 09:46 AM

A couple of frames per second on my GT530.

#11 Vilem Otte

    Valued Member

  • Members
  • PipPipPipPip
  • 362 posts

Posted Yesterday, 10:11 AM

Sadly I'm linux user (so no D3D11) and the only Windows I have on single PC is WinXP, so I'm unable to try. Anyways may I ask whether you brute-force the terrain, or whether you build something like octree? Also you could try mip-mapping voxels to get better performance for more distant voxels (it removes flickering and improves cache coherency). I bet that you could get several times better performance by just doing this.
My blog about game development (and not just game development) - http://gameprogramme...y.blogspot.com/

If you don't know how to speed up application, go "roarrrrrr!", hit the compiler with the club and use -O3 :D

#12 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted Yesterday, 10:35 AM

Im sorta pretending I have a distance field from just a displacement map, I just treat the altitude of the ray as the distance, so I get problems doing this, im kinda already mipping it by skipping larger distances the further away from the camera.
The mountains are made of octaves of noise.

Best frame report ive had so far is 5 fps... noone has as good a video card as I do.
[edit] some guys had some better video cards now, got 10fps at 1920x1000!

You could try lowering the resolution of your desktop if youd like to see it going a little faster.
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#13 rouncer

    Senior Member

  • Members
  • PipPipPipPip
  • 2757 posts

Posted Yesterday, 01:57 PM

just went the whole hog and added one limited bounce of gi :) goes about 6 fps at 1360x768!
this version is available at the gamedev.net link, a little later on...
Posted Image
Posted Image
you used to be able to fit a game on a disk, then you used to be able to fit a game on a cd, then you used to be able to fit a game on a dvd, now you can barely fit one on your harddrive.

#14 Vilem Otte

    Valued Member

  • Members
  • PipPipPipPip
  • 362 posts

Posted Yesterday, 06:13 PM

Still, by doing larger jumps you save some computation time, but actually computation time isn't your problem, you've got plenty of it ... your problem is (as in case of every raycasting/raytracing function) memory access. Therefore at moderate distance you read from different part of memory (not mentioning that means you experience cache miss), and the higher the distance from camera is, the worse it gets.

Actually every sparse voxel octree ray caster solves this (and thats why they're that fast).

Anyways 6 fps is nice, but I bet you could do it at at least 30 fps on your gpu ;).
My blog about game development (and not just game development) - http://gameprogramme...y.blogspot.com/

If you don't know how to speed up application, go "roarrrrrr!", hit the compiler with the club and use -O3 :D





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users