Outerra forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Outerra Tech Demo download. Help with graphics driver issues

Pages: [1] 2

Author Topic: Terrain engine project I’m working on, inspired by Outerra  (Read 16383 times)

theFrenchDutch

  • Newbie
  • Posts: 8
  • newbie
Terrain engine project I’m working on, inspired by Outerra
« on: August 28, 2016, 06:30:35 am »

Hi :)

You might have seen a year and a half ago, I asked a few questions on this forum about how Outerra works and Cameni helped us a lot back then by answering them, when we were working on a school project about procedural planet generation using Unity.

After the six months duration of the school project, we dropped the planetary aspect to focus on large scale flat terrains for a game project we had, and I’ve kept working on it since then (for almost two years now). I’m creating this thread to share our results and to thank Cameni for helping us and for his posts on the outerra blog, as well as to thank the Outerra team for making Outerra as it has been a huge source of inspiration for us during the entire project. Here’s a link to a presentation page with a few screenshots and details on the methods we used.
http://newheadstudio.com/DevBlog/Procedural_Generation/Articles/article1.html

I’ve learnt a huge amount while working on this as we started this project as students with almost no prior knowledge in the field of computer graphics, and I still have a lot to learn, but Outerra has been one of my consistent learning and motivation source. So I really wanted to thank you for this :) Thank you for reading and have a nice day !
« Last Edit: August 28, 2016, 08:46:38 am by theFrenchDutch »
Logged

2eyed

  • Sr. Member
  • ****
  • Posts: 352
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #1 on: August 28, 2016, 07:37:19 am »

Man, looks like a real competitor :). Good work!
Logged

aWac9

  • Hero Member
  • *****
  • Posts: 2538
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #2 on: August 28, 2016, 11:04:18 am »

I do not see images of rivers .. physics applied in rivers?
seems an excellent job ... you have a video?
Logged

theFrenchDutch

  • Newbie
  • Posts: 8
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #3 on: August 28, 2016, 12:04:45 pm »

Thanks for the feedback :)

And sorry about the confusion, the "(In development) Terrain editing, roads, dirt paths, rivers" part in the page wasn't saying that we have already worked on rendering rivers and lakes, but we are working on the system which will be used to place them (the same system used to place the roads in some of the screenshots). This system is still also very much a work in progress. In the future, we plan on trying to implement water rendering with lakes and rivers, but we haven't started anything on this. I've corrected the phrasing, thanks :)

We will soon upload a video when we find the time, mainly to show how it runs, I'll link to it here when we've done it !
« Last Edit: August 28, 2016, 12:07:59 pm by theFrenchDutch »
Logged

Lewin

  • Newbie
  • Posts: 9
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #4 on: August 28, 2016, 12:10:06 pm »

It seems the students will soon become teachers :)
Logged

HiFlyer

  • Hero Member
  • *****
  • Posts: 1788
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #5 on: August 28, 2016, 04:51:10 pm »

I've always said outerra couldn't behave as if the rest of the world was standing still on this........  =|

Tick tock, tick tock.
Logged
Spex: Intel Core i7 6700K @ 4.6GHz / 32.0GB G.SKILL TridentZ Series Dual-Channel Ram / ASUS STRIX GeForce GTX 1080 / Sound Blaster Z / Oculus Rift VR Headset / Klipsch® Promedia 2.1 Computer Speakers / ASUS ROG SWIFT PG279Q ‑ 27" IPS LED Monitor ‑ QHD / 2x Samsung SSD 850 EVO 500GB / Windows 10 Pro

cameni

  • Brano Kemen
  • Outerra Administrator
  • Hero Member
  • *****
  • Posts: 6721
  • No sense of urgency.
    • outerra.com
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #6 on: August 28, 2016, 05:38:15 pm »

After the six months duration of the school project, we dropped the planetary aspect to focus on large scale flat terrains for a game project we had, and I’ve kept working on it since then (for almost two years now). I’m creating this thread to share our results and to thank Cameni for helping us and for his posts on the outerra blog, as well as to thank the Outerra team for making Outerra as it has been a huge source of inspiration for us during the entire project. Here’s a link to a presentation page with a few screenshots and details on the methods we used.
http://newheadstudio.com/DevBlog/Procedural_Generation/Articles/article1.html

Good job! Glad to be the inspiration for you. We have been asked several times if it was possible to make a terrain generator usable for other engines like Unity, but the planetary scale and all the issues with it make it rather hard even if we wanted to go that route. But it may be a good way for you, I noticed people on Reddit were interested too, though I'm not sure what other obstacles are there ...
Logged

theFrenchDutch

  • Newbie
  • Posts: 8
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #7 on: August 29, 2016, 09:04:05 am »

Thanks :) Yes I agree, but the scope of our project is much smaller than Outerra's, we only aim to provide flat environments for a video game with this. There's no dynamic download of DEM data to allow the player to go around the entire earth, etc, (which seem to me very complicated to implement and maintain), and all the other stuff Outerra offers as a software. I don't know if it would be feasible to get it all working inside Unity.

About issues with Unity, we ourselves have faced some limitations which we had to work around, some others that we can't do anything about... The Unity API not being thread safe is the biggest drawback, there is some stuff I would much prefer to be doing in my worker thread instead of having to let the main thread do it (creating and filling up meshes with data, creating mesh colliders). There is also no way for us to have the terrain data existing only on VRAM and being rendered from there (which is I believe what Outerra does ?) we are forced to get the generated terrain data arrays back from the GPU to create Unity Mesh objects to be able to render the terrain, which also uses a lot of RAM. We had some trouble with Unity's old implementation of Mono which uses an old, inefficient garbage collector, and we'd much prefer to be handling the data with pointers ourselves at this point. Unity also uses by default a traditional depth buffer which mostly give us unstable shadows with their cascaded shadow map system with huge distances (but implementing a reverse-float depth buffer is on their road map so fingers crossed, or we could do it ourselves as I've seen others do)

But it is still an incredbly flexible engine, I'm amazed by what it let us do with it to this day. ShaderLab also makes for very easy shader learning and programming. But I'd say that something entirely like Outerra within Unity would be a difficult thing to achieve.

Edit: I've also uploaded a video (which hardly survived youtube compression even though it looked good before uploading...) if anyone wants to see it in movement :
« Last Edit: August 29, 2016, 09:08:29 am by theFrenchDutch »
Logged

HiFlyer

  • Hero Member
  • *****
  • Posts: 1788
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #8 on: August 29, 2016, 10:11:54 am »

If shown this without being told beforehand that this was not Outerra, I would swear it was Outerra.
Logged
Spex: Intel Core i7 6700K @ 4.6GHz / 32.0GB G.SKILL TridentZ Series Dual-Channel Ram / ASUS STRIX GeForce GTX 1080 / Sound Blaster Z / Oculus Rift VR Headset / Klipsch® Promedia 2.1 Computer Speakers / ASUS ROG SWIFT PG279Q ‑ 27" IPS LED Monitor ‑ QHD / 2x Samsung SSD 850 EVO 500GB / Windows 10 Pro

2eyed

  • Sr. Member
  • ****
  • Posts: 352
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #9 on: August 29, 2016, 11:23:02 am »

I've always said outerra couldn't behave as if the rest of the world was standing still on this........  =|

Tick tock, tick tock.
Calm down, OT is still ahead and it's nice to see others taking the route as well.
Logged

theFrenchDutch

  • Newbie
  • Posts: 8
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #10 on: August 29, 2016, 11:26:52 am »

I've always said outerra couldn't behave as if the rest of the world was standing still on this........  =|

Tick tock, tick tock.
Calm down, OT is still ahead and it's nice to see others taking the route as well.

Yes, Outerra is way ahead of what we have achieved so far, we hope to one day have something running as great as it. Besides, what we have is only a flat terrain generator for Unity, the Outerra team are building an entire engine for entire Earth simulation ! I've seen nothing else come close to what they have achieved yet.
Logged

HiFlyer

  • Hero Member
  • *****
  • Posts: 1788
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #11 on: August 29, 2016, 11:38:39 am »

I've always said outerra couldn't behave as if the rest of the world was standing still on this........  =|

Tick tock, tick tock.
Calm down, OT is still ahead and it's nice to see others taking the route as well.

My point stands. Technology doesn't stand still, and the gaming scene is full of engines that were amazing when they first appeared, but where just one of the crowd by the time they were finally released.

A good example might be Infinity Battlescape, that was once astonishing, but ended up making its final push for recognition just as Elite Dangerous and Star Citizen sucked all of the air out the "Look! you can actually seamlessly land on planets!" room.

No interesting technology exists in a vacuum, and no amount of well wishing (and I am a fan) should fail to keep that in mind.
« Last Edit: August 29, 2016, 11:52:40 am by HiFlyer »
Logged
Spex: Intel Core i7 6700K @ 4.6GHz / 32.0GB G.SKILL TridentZ Series Dual-Channel Ram / ASUS STRIX GeForce GTX 1080 / Sound Blaster Z / Oculus Rift VR Headset / Klipsch® Promedia 2.1 Computer Speakers / ASUS ROG SWIFT PG279Q ‑ 27" IPS LED Monitor ‑ QHD / 2x Samsung SSD 850 EVO 500GB / Windows 10 Pro

2eyed

  • Sr. Member
  • ****
  • Posts: 352
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #12 on: August 29, 2016, 03:15:10 pm »

Don't get me wrong, I too wished a much faster development, but OT schooled me in patience.
They probably would need a few more talented coders sharing the same vision to speed things up.
Logged

bomber

  • Hero Member
  • *****
  • Posts: 523
  • newbie
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #13 on: August 30, 2016, 01:36:32 pm »

it's a bit off topic discussing Outerra's development yet strangely correct in a way.

Quote
They probably would need a few more talented coders sharing the same vision to speed things up.

If I was to offer one single bit of advice to the Outerra team, and that would be to think 24hours... that's the number of development hours in a day they should be aiming for.

At present we naturally think of getting up and going to work doing our 8 hours or so and then coming home... I'm a firm believer in work life balance. Yes you can work like a maniac, been there, done that.... but I've also had a nervous breakdown. So I know you can work full on in your 20's and early 30's but real burn out is a real issue and once you've thrown the jigsaw puzzle onto the floor, you'll never put it back perfectly.

So I don't advise working harder, pushing the limits I advise working smarter....

Build a Design House that acts like a relay team going around the athletics track (no not taking steroids), but working full pelt and then handing the baton on... A design house that chases the sun around the planet, don't put all your eggs into a European based design house working 8 hours and then stopping as you go home.. but instead build one in which design momentum is constantly rolling.

take it or leave it, it's just advise.

Simon
Logged
"If anyone ever tells you anything about an aeroplane which is so bloody complicated you can't understand it, take it from me - it's all balls" - R J Mitchell

CrazyMemer

  • Newbie
  • Posts: 1
Re: Terrain engine project I’m working on, inspired by Outerra
« Reply #14 on: August 30, 2016, 02:11:22 pm »

If I was to offer one single bit of advice to the Outerra team, and that would be to think 24hours... that's the number of development hours in a day they should be aiming for.

At present we naturally think of getting up and going to work doing our 8 hours or so and then coming home... I'm a firm believer in work life balance. Yes you can work like a maniac, been there, done that.... but I've also had a nervous breakdown. So I know you can work full on in your 20's and early 30's but real burn out is a real issue and once you've thrown the jigsaw puzzle onto the floor, you'll never put it back perfectly.

So I don't advise working harder, pushing the limits I advise working smarter....

Build a Design House that acts like a relay team going around the athletics track (no not taking steroids), but working full pelt and then handing the baton on... A design house that chases the sun around the planet, don't put all your eggs into a European based design house working 8 hours and then stopping as you go home.. but instead build one in which design momentum is constantly rolling.

take it or leave it, it's just advise.

Simon

http://i.imgur.com/inVz20S.mp4
Logged
Pages: [1] 2