-
Posts
2129 -
Joined
-
Days Won
989
Content Type
Profiles
Forums
Blogs
News
Store
Everything posted by Tyron
-
A shiny sky needs clouds too! Clouds are quite tough to implement due to the fact that graphics cards were not designed to draw half transparent objects, so you have to use various tricks to make it work, like sorting all objects every frame or implementing order independent transparency. Thankfully there's a lot of research on that - I chose to implement "Weighted Blended Order Indenpendent Transparency" invented by Morgan McGuire because its fast, comparatively easy to implement and delievers good enough results. 1. First working clouds with variable density (no WBOIT) It uses efficient rendering methods so it can render over a kilometer of clouds quite easily (at least at this stage of the game) 2. Less ugly clouds after implementing correct transparency rendering using WBOIT As you can see, the density and color of the clouds is just a value that can be changed anytime. This is important as I want to create different cloud patterns depending on the weather. The cloud system is also using Shaders, so i can easily color them according to the sky colors during sunset (they are also vertically offseted here just for testing, I might make it a permanent feature): Up next: More cleanup/refactoring and the beginnings of proper terrain generation.
-
A shiny sky needs clouds too! Clouds are quite tough to implement due to the fact that graphics cards were not designed to draw half transparent objects, so you have to use various tricks to make it work, like sorting all objects every frame or implementing order independent transparency. Thankfully there's a lot of research on that - I chose to implement "Weighted Blended Order Indenpendent Transparency" invented by Morgan McGuire because its fast, comparatively easy to implement and delievers good enough results. 1. First working clouds with variable density (no WBOIT) It uses efficient rendering methods so it can render over a kilometer of clouds quite easily (at least at this stage of the game) 2. Less ugly clouds after implementing correct transparency rendering using WBOIT As you can see, the density and color of the clouds is just a value that can be changed anytime. This is important as I want to create different cloud patterns depending on the weather. The cloud system is also using Shaders, so i can easily color them according to the sky colors during sunset (they are also vertically offseted here just for testing, I might make it a permanent feature): Up next: More cleanup/refactoring and the beginnings of proper terrain generation. View full record
-
New since last update: I've added an ambient/fog system that works by layering ambient/fog colors on top of each other. This will come in extremly handy when there are several factors influencing the range and color of the fog. Examples: Air Humidity, Day/Evening, Underwater, Deep underwater, Potion effects, etc. This system is already helping a lot in improving the look&feel when you jump into the water: After lots and lots of studying OpenGL the game engine now supports GLSL Shaders. It's first use: A shiny new implementation of the Sky, including sunrise and sunset. Here, witness the very first sunset in Vintage story youself ;-) In the video you can also see how the whole ambient and the fog is colored according to the suns color shift during sunset. This is also only possible due to the new ambient/fog system. I also added dithering to the sky renderer to reduce color banding, which makes the sky look almost silky smooth. In the video the color banding is very visible probably due to compression. Up next: Clouds
-
New since last update: I've added an ambient/fog system that works by layering ambient/fog colors on top of each other. This will come in extremly handy when there are several factors influencing the range and color of the fog. Examples: Air Humidity, Day/Evening, Underwater, Deep underwater, Potion effects, etc. This system is already helping a lot in improving the look&feel when you jump into the water: After lots and lots of studying OpenGL the game engine now supports GLSL Shaders. It's first use: A shiny new implementation of the Sky, including sunrise and sunset. Here, witness the very first sunset in Vintage story youself ;-) In the video you can also see how the whole ambient and the fog is colored according to the suns color shift during sunset. This is also only possible due to the new ambient/fog system. I also added dithering to the sky renderer to reduce color banding, which makes the sky look almost silky smooth. In the video the color banding is very visible probably due to compression. Up next: Clouds View full record
-
- 3
-
-
TLDR: Screenshots below Since I have full freedom on what I want to work on next, I often just focus on area for a short amount of time and then continue with something else. It keeps my daily coding on the game a bit more colorful! The entity system got a complete rewrite, including some basic implementations of attribute trees and entity property system. These two system will allow to attach/detach behaviors and attributes to any entity which makes it a lot easier to add different entities in the future. The Vintagecraft tree generator is now migrated to Vintagestory, which is a very flexible piece of code to generate a large variety of trees. It took some extra efforts to make it load the various tree types from external json files, instead of being hardcoded like it was in Vintagecraft I'm a strong advocate for using a good toolset to achieve good results, so I am often spending time on adding stuff that help me spend less time on adding stuff ;-) Since last update I added automatic reloading of server mods, you just save the changes, the server immediately recognizes the change and reloads all mods. This speeds up development when I have to do many small changes. The creative inventory now shows an item tooltip when you hover over a slot, also I implemented moving items between slots using the mouse. I also added a new sun texture to replace the one from manic digger. I spent quite some time on getting the glow around the sun just right. I continued working on components required for worldgeneration. Before worldgen works as planned, many components have to be in place and working. I did some playing around with fog, which will be a big part of the game as part of a weather system. Pictures on https://imgur.com/a/5R4IS View full record
-
- 2
-
-
TLDR: Screenshots below Since I have full freedom on what I want to work on next, I often just focus on area for a short amount of time and then continue with something else. It keeps my daily coding on the game a bit more colorful! The entity system got a complete rewrite, including some basic implementations of attribute trees and entity property system. These two system will allow to attach/detach behaviors and attributes to any entity which makes it a lot easier to add different entities in the future. The Vintagecraft tree generator is now migrated to Vintagestory, which is a very flexible piece of code to generate a large variety of trees. It took some extra efforts to make it load the various tree types from external json files, instead of being hardcoded like it was in Vintagecraft I'm a strong advocate for using a good toolset to achieve good results, so I am often spending time on adding stuff that help me spend less time on adding stuff ;-) Since last update I added automatic reloading of server mods, you just save the changes, the server immediately recognizes the change and reloads all mods. This speeds up development when I have to do many small changes. The creative inventory now shows an item tooltip when you hover over a slot, also I implemented moving items between slots using the mouse. I also added a new sun texture to replace the one from manic digger. I spent quite some time on getting the glow around the sun just right. I continued working on components required for worldgeneration. Before worldgen works as planned, many components have to be in place and working. I did some playing around with fog, which will be a big part of the game as part of a weather system. Pictures on https://imgur.com/a/5R4IS
-
After some massive refactoring work of various Manic Digger Components a new gui system has sprung to life \o/ The refactoring included consistent use of xyz axes, threaded server components, new chunk loader, terraingen rewrite, refactor server api system, inventory rewrite, embedding of a new graphics libary and more. While programming the gui system I drew inspiration from two main sources: World of Warcraft and HTML+Cascading Stylesheets, the latter is used to neatly format what you are looking at right now ;-) The main idea is that the player can have any quantity of dialogs opened simultaneously. Just like in WoW where you can open up your character screen seperatly from your inventory. These dialogs consist of individual elements that can be either freely or automatically placed using alignments, paddings and margins. This allows me to quickly cobble together many different guis from a fairly small set of elements, because I really can't be bothered fiddling around with positioning everything by hand if I don't have to. All of the GUI System is coded from scratch using just a basic drawing library named Cairo. I generally shy away from using large libraries/frameworks (like Unity) and try to code as much as I can myself. Below screenshot show the very first version of the creative inventory. Already complete with scrollbar and search function. In the background you can also the first few steps towards terrain generation have been made already. Beyond that, it can also render fancy switches (please ignore the messy element positioning ^_^;) Up next: Trees, Fog and Water
-
After some massive refactoring work of various Manic Digger Components a new gui system has sprung to life \o/ The refactoring included consistent use of xyz axes, threaded server components, new chunk loader, terraingen rewrite, refactor server api system, inventory rewrite, embedding of a new graphics libary and more. While programming the gui system I drew inspiration from two main sources: World of Warcraft and HTML+Cascading Stylesheets, the latter is used to neatly format what you are looking at right now ;-) The main idea is that the player can have any quantity of dialogs opened simultaneously. Just like in WoW where you can open up your character screen seperatly from your inventory. These dialogs consist of individual elements that can be either freely or automatically placed using alignments, paddings and margins. This allows me to quickly cobble together many different guis from a fairly small set of elements, because I really can't be bothered fiddling around with positioning everything by hand if I don't have to. All of the GUI System is coded from scratch using just a basic drawing library named Cairo. I generally shy away from using large libraries/frameworks (like Unity) and try to code as much as I can myself. Below screenshot show the very first version of the creative inventory. Already complete with scrollbar and search function. In the background you can also the first few steps towards terrain generation have been made already. Beyond that, it can also render fancy switches (please ignore the messy element positioning ^_^;) Up next: Trees, Fog and Water View full record
-
- 1
-
-
"If I have seen further, it is by standing on the shoulders of giants." - Isaac Newton Vintage Story will not begin from Zero, there is no need for that. Instead it will use an existing game named Manic Digger as a basis. While being pretty basic content wise, it hides a few unpolished gems in its source code. It is extremly forthcoming by the authors of Manic Digger to release source code into the public domain, which allows everybody to use it for any purpose they desire, for which I am very thankful. It allows me to kickstart Vintage Story without the need to implement the basics first. Hence, my primary goals at first were to strip down the game engine to it's most esssential parts and massively clean up, simplify and reorganize the remaining code. This is still an ongoing process and will probably continue for several more months to come. Once this is done, it is likely that less than a few percent of the original code remains untouched. Here is the very first screenshot after I added a new block loader system to have the very first blocks from Vintagecraft in our new game. Please be aware that nothing in these screenshots is final and there's many textures that need to be replaced still. Up next: A brand new GUI System View full record
-
- 5
-
-
-
[Edit 9.Aug.2016] Seems like I accidently deleted this entry and no possibility to restore it ? The Text I still remember that I wrote: Vintage Story will not be written from Scratch, there is no need for that. Instead it will be based on the game Manic Digger whose Authors graciously have placed the entire game source under public domain, for which I am extremly thankful because it will let me kickstart my game and not worry about implementing the very essentials first. The game itself looks, let's say, very rough, but it hides a few unpolished gems in it's source code. Below Screenshot is the very first visible progress on the game, as I have written a new block loading system that loads blocktypes from external json files. The line of blocks you see there are directly taken from my mod Vintagecraft. I've also already managed to render blocks as 3D models within manic diggers gui system
-
[Edit 9.Aug.2016] Seems like I accidently deleted this entry and no possibility to restore it ? The Text I still remember that I wrote: Vintage Story will not be written from Scratch, there is no need for that. Instead it will be based on the game Manic Digger whose Authors graciously have placed the entire game source under public domain, for which I am extremly thankful because it will let me kickstart my game and not worry about implementing the very essentials first. The game itself looks, let's say, very rough, but it hides a few unpolished gems in it's source code. Below Screenshot is the very first visible progress on the game, as I have written a new block loading system that loads blocktypes from external json files. The line of blocks you see there are directly taken from my mod Vintagecraft. I've also already managed to render blocks as 3D models within manic diggers gui system View full record
-
- 3
-
-
Hello! I'm glad to see you here! This will be the place where I, starting from today, will post regular updates about the current state of the game. As many of you might know I am working on a blocky sandbox game which is based on my full conversion modification named Vintagecraft. I am doing this as my nearly full time job now and hope to release it in Spring 2017. I am extremly eager to implement my ideas into the game and watch players using them. I have already been working for 2 months on Vintagestory and I am making large strides towards a playable game. Any questions or suggestions? Let's have a talk in the forums!
-
Hello! I'm glad to see you here! This will be the place where I, starting from today, will post regular updates about the current state of the game. As many of you might know I am working on a blocky sandbox game which is based on my full conversion modification named Vintagecraft. I am doing this as my nearly full time job now and hope to release it in Spring 2017. I am extremly eager to implement my ideas into the game and watch players using them. I have already been working for 2 months on Vintagestory and I am making large strides towards a playable game. Any questions or suggestions? Let's have a talk in the forums! View full record