AnnoCrat Posted July 26, 2018 Author Report Share Posted July 26, 2018 Ah that is great info, also I managed to make the map square, I intended square maps because it implements heightmaps better this way, unfortunately my new random map only appears in the editor and not inside the game, also was really positively surprised that I could copy all light and environmental settings to the random map (from the piic I posted), this is really cool Since the whole feature wasn't finished I suppose I won't see terrain shapes just yet Quote Link to comment Share on other sites More sharing options...
av93 Posted July 26, 2018 Report Share Posted July 26, 2018 On 7/25/2018 at 8:27 PM, stanislas69 said: Hey, do not lose hope. This is an open-source project things take longer here. We are currently in a tedious legal process, to comply with GDPR, to offer a better A23 release. Which means most of the dev is stopped for now. elexis is working really hard on it. The feature might be for A24, if someone finds the time/motivation to do it. Nevertheless, it never being implemented probably means there is something more than a few lines of JavaScript code. Coding is fun and can be rewarding. A few devs here started from the bottom and now do awesome things, and it's never to late to start Nothing will beat motivation at getting things done. The best way to get something done is to do it yourself though Sorry for the inconvenience. Devs have stopped to dev because the legal changes? I don't understand it. If some of you are working in this changes, that doesn't mean that other devs could still work in programming, don't they? Quote Link to comment Share on other sites More sharing options...
elexis Posted July 26, 2018 Report Share Posted July 26, 2018 54 minutes ago, AnnoCrat said: unfortunately my new random map only appears in the editor and not inside the game You didn't create a new random map, those are created with code and are saved in maps/random/. When generating an existing random map in atlas, it computes one specific map of all the maps that script can generate, and that can then be saved as a Scenario or Skirmish map and you find it only by the map Title (not by the filename) in the ingame menu. Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted July 26, 2018 Author Report Share Posted July 26, 2018 Ah this worked too now, this way I managed to make exact copies of levels in another game a totally crazy question, not serious but just exploring: the maps are always flat, is it possible to curve them? or even make them into a globe? Quote Link to comment Share on other sites More sharing options...
elexis Posted July 26, 2018 Report Share Posted July 26, 2018 A map in the current pyrogenesis engine is a 2D grid of X * X tiles, each vertex can have a different height. The heightrange is big, so you can create a curved map, but it's not possible to have two different terrain locations at one place (overhang) in the terrain. 1 hour ago, av93 said: I don't understand it. We're updating our privacy policies for GDPR until we start alpha 24 development. 1 Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted July 26, 2018 Author Report Share Posted July 26, 2018 (edited) wow cool @ curved map, how to achieve the map being curved? edit: I mean the map being curved, not a curved elevation, so the edges would be water, pls let me know, this would be epic Edited July 26, 2018 by AnnoCrat Quote Link to comment Share on other sites More sharing options...
elexis Posted July 26, 2018 Report Share Posted July 26, 2018 Mess with the elevation tool in atlas for a long time, or write a rmgen script that for all X and Y coordinates sets the height of a sphere at (X,Y) Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted July 26, 2018 Author Report Share Posted July 26, 2018 (edited) but you can;t place water then? or can you manually place water on higher grounds too? edit: What I try to explain is that it is only possible for water to exist on a certain vertex height level that can be edited in the map settings, if you made a curved world, you could only get water on the edges, since there are also lakes etc in higher grounds, like mountains, I would be wondering if there is a setting somewhere that terrain can be marked as having water (regardless of terrain height level) tiles can already be marked as water, ground, buildable etc, could it be possible to let water appear on tiles that have this property set? Sorry I have experience with over 10 different kinds of similar game engines and their creator's ideas on how they shaped the terrain, also an interesting feature I saw in cossacks (1 & 3) & american conquest are streaming directions of water. this way water animates in a way that it is streaming towards a direction in a set speed. In the editor you can draw a line with a water stream tool and you can set a start and end point of the line and the length of a line, the water will make a streaming animation towards that direction you set the start and endpoint to, and the length of the line indicates the speed the water should flow with, but I think setting a numerical value on that line with water streaming speed would remove the restriction of being forced to draw long lines on sharp curves, now I go work in another external terrain editor and attempt to make a curved globe map Ill post the result here Edited July 27, 2018 by AnnoCrat Quote Link to comment Share on other sites More sharing options...
elexis Posted July 28, 2018 Report Share Posted July 28, 2018 There is currently only one plane waterlevel. People have worked around this by placing water actors from a mod: https://wildfiregames.com/forum/index.php?/topic/17326-your-screenshots/&page=13&tab=comments#comment-346126 Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted July 28, 2018 Author Report Share Posted July 28, 2018 ah thanks, now a big noob question, what keyboard keys do I need to use to get the sky visible in camera view?? Quote Link to comment Share on other sites More sharing options...
elexis Posted July 28, 2018 Report Share Posted July 28, 2018 All hotkeys are listed in https://trac.wildfiregames.com/wiki/HotKeys but just enabling it in the ingame options should do. Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted July 31, 2018 Author Report Share Posted July 31, 2018 @elexis maybe i sound dumb, but I see no key combo for making the camera see the clouds in the sky, it just shows the map border in black Quote Link to comment Share on other sites More sharing options...
elexis Posted July 31, 2018 Report Share Posted July 31, 2018 Alt+D -> disable camera restrictions. The skybox isnt too beautiful though. Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted August 1, 2018 Author Report Share Posted August 1, 2018 (edited) ah I managed to display the skybox, if the map is circular, why is the skybox square? and why are the borders of the map crossing to the skybox still black? is it possible to make the skybox circular like the map itself? @elexis Ps: is there somewhere a mod that has stonehenge for this game? Ps2 (Lol haha ): where are the skybox textures located? can't find any files with the cloudnames Edited August 1, 2018 by AnnoCrat 1 Quote Link to comment Share on other sites More sharing options...
nani Posted August 1, 2018 Report Share Posted August 1, 2018 6 minutes ago, AnnoCrat said: ah I managed to display the skybox, if the map is circular, why is the skybox square? and why are the borders of the map crossing to the skybox still black? is it possible to make the skybox circular like the map itself? @elexis Ps: is there somewhere a mod that has stonehenge for this game? As the name describes the skyBox is just a box with images on each face, in 0ad the skybox botom side is black because is not necessary for the game. https://en.wikipedia.org/wiki/Skybox_(video_games) 1 Quote Link to comment Share on other sites More sharing options...
asterix Posted August 1, 2018 Report Share Posted August 1, 2018 8 minutes ago, AnnoCrat said: ah I managed to display the skybox, if the map is circular, why is the skybox square? and why are the borders of the map crossing to the skybox still black? is it possible to make the skybox circular like the map itself? hmm... 9 minutes ago, AnnoCrat said: Ps: is there somewhere a mod that has stonehenge for this game? Vanilla civs Britons or Gauls per chance 1 Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted August 1, 2018 Author Report Share Posted August 1, 2018 would be nice is the skybox was either cylinder shaped by option or for even more realism dome-formed, is the skybox a 3d model file somewhere in the game directories? what file must I edit to distribute a edited skybox? and would making a cylinder formed skybox be possible? or even a orb or dome formed skybox? Or perhaps its even possible to let the game render an animated sky like the dds file I attached with 2 transparent cloud layers and a background layer for atmosphere color? the background could be a simple gradient image DSky0-71.dds 1 Quote Link to comment Share on other sites More sharing options...
asterix Posted August 1, 2018 Report Share Posted August 1, 2018 @stanislas69 @vladislavbelov Quote Link to comment Share on other sites More sharing options...
vladislavbelov Posted August 1, 2018 Report Share Posted August 1, 2018 33 minutes ago, AnnoCrat said: would be nice is the skybox was either cylinder shaped by option or for even more realism dome-formed, is the skybox a 3d model file somewhere in the game directories? what file must I edit to distribute a edited skybox? and would making a cylinder formed skybox be possible? or even a orb or dome formed skybox? Or perhaps its even possible to let the game render an animated sky like the dds file I attached with 2 transparent cloud layers and a background layer for atmosphere color? the background could be a simple gradient image Skybox is hardcoded, so currently you're not able not change its shape, only textures. But change it to sphere would be good. Also It'd be good to add atmospherics scattering. I have some plans to improve the sky. But the game is RTS, so usually sky isn't really visible, so even a flat sky works. 1 Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted August 2, 2018 Author Report Share Posted August 2, 2018 Yeah, but a good sky is good for cutscenes, promotional material, plus I mostly play close zoomed at battles, so which files do I need to edit for editing the sky's textures? @vladislavbelov 1 Quote Link to comment Share on other sites More sharing options...
Stan` Posted August 2, 2018 Report Share Posted August 2, 2018 20 minutes ago, AnnoCrat said: Yeah, but a good sky is good for cutscenes, promotional material, plus I mostly play close zoomed at battles, so which files do I need to edit for editing the sky's textures? @vladislavbelov C++ Files. Namingly the ones containing sky in the name. You' ll also need to know some OpenGL code because the box is drawn using that. If you only want to mess with skyboxes, Make a mod and in art/textures/skies add another folder with DDS textures. The code being hacky it cant use PNg files. In the thread fixing skybox for maps I gave a bit more insight on skyboxes to Skhorn IIRC 1 Quote Link to comment Share on other sites More sharing options...
fabio Posted August 2, 2018 Report Share Posted August 2, 2018 On 7/26/2018 at 9:00 PM, AnnoCrat said: Meanwhile im doing some fancy intergalactical texture/environment tests You may want to have a look here...: https://github.com/AlexanderOlkhovskiy/0ad-space 2 Quote Link to comment Share on other sites More sharing options...
AnnoCrat Posted August 2, 2018 Author Report Share Posted August 2, 2018 wow @fabio although the tests are for something else intergalactic, your link is very awesome, wow, good mods are hidden all over the place for this game, wow man Quote Link to comment Share on other sites More sharing options...
fabio Posted August 3, 2018 Report Share Posted August 3, 2018 Yes, it is nice indeed! As a clarification that mod is done by @fcxSanya. Quote Link to comment Share on other sites More sharing options...
Stan` Posted August 7, 2018 Report Share Posted August 7, 2018 @fcxSanya If you have the rights over it maybe you could put it on modio ? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.