-
Posts
1.371 -
Joined
-
Last visited
-
Days Won
22
Everything posted by vladislavbelov
-
A26 profile.txt is also with high shadows, right? A25 profile.txt says that it has everything faster, not particularly graphics (and pretty stable magnitude for mostly everything). There were no graphics or engine related commit after that one. So it seems more related to AppImage itself (maybe some optimizations are missed in the build). Could you attach system_info/hwreport for A25 too?
-
Game crashes when it cannot find a terrain
vladislavbelov replied to wowgetoffyourcellphone's topic in Bug reports
Stack: -
Game crashes when it cannot find a terrain
vladislavbelov replied to wowgetoffyourcellphone's topic in Bug reports
That should be pretty old bug. Magenta happens when you have XML for the terrain type, but not the DDS/PNG texture. It crashes when PMP refers to a not existing XML file for terrain IIRC. -
You might find paths to them here: https://trac.wildfiregames.com/wiki/GameDataPaths#VistaWindows10.
-
Turning down Texture Resolution and Tree/Bush Detail?
vladislavbelov replied to lilBacon's topic in Help & Feedback
Hi! In the upcoming A26 release will appear an option to decrease texture quality and disable anisotropic filtering. Plus disabling variation randomization might help a bit. -
Preview of a GIMP plugin for procedural heightmaps
vladislavbelov replied to Scallact's topic in Scenario Design/Map making
I have some ideas to fix the heightmap import to allow 16-bits grayscale images.- 17 replies
-
- 1
-
-
Preview of a GIMP plugin for procedural heightmaps
vladislavbelov replied to Scallact's topic in Scenario Design/Map making
In Atlas you can place entities (simulation objects, units you can control, etc) and actors (just visual objects without interaction). So you can make a 3D model, import in the game as an actor and place on a map.- 17 replies
-
- 1
-
-
Preview of a GIMP plugin for procedural heightmaps
vladislavbelov replied to Scallact's topic in Scenario Design/Map making
We can add slow brushes/algorithms to Atlas. And add a heightmap export function. I think using an actor mesh gives the best quality. But it requires an experienced artist to adopt to avoid things you described.- 17 replies
-
Preview of a GIMP plugin for procedural heightmaps
vladislavbelov replied to Scallact's topic in Scenario Design/Map making
I'm afraid generating good mountains in JS might be very slow, especially if try to simulate an erosion process. Using precomputed assets (like heightmap mountain brushes) might work though.- 17 replies
-
Changing C++ Coding Conventions
vladislavbelov replied to phosit's topic in Game Development & Technical Discussion
I was explaining why moving the functions out might increase the code length. -
Related bug: #3285
-
peer to peer, webRTC
vladislavbelov replied to Mercury's topic in Game Development & Technical Discussion
It's more tricky. In a regular implementation peer2peer increases traffic from a single peer and total traffic isn't halfed, usually it's mostly the same as with client-server. Also local state modifications (cheating) and host migration are easy things to abuse. -
Changing C++ Coding Conventions
vladislavbelov replied to phosit's topic in Game Development & Technical Discussion
It's good if used with ranges. It's worth to mention though that MSVC sometimes might not inline lambdas and it might affect performance. -
Changing C++ Coding Conventions
vladislavbelov replied to phosit's topic in Game Development & Technical Discussion
auto indeed saves some visual space, but at the same time in some cases it's less clear and isn't safe. Unfortunately we can't define a set of types that an auto might describe (as in more functional languages), auto is kind of workaround because C++ can't express some things better than with auto, fortunately there are concepts in C++20. C++ compiler verifies auto by used operations not by their semantic meanings. It means in your example we could pass a vector of strings to the reduce function and get a lot of string copies (accounting we don't have const int at the left). I'd like to have something like that: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es11-use-auto-to-avoid-redundant-repetition-of-type-names . And addition or reinterpretation: "Use auto when a type class can be deduced by a reader without much context". Mostly it means prefer a STL function over the same function in a third party library or written by yourself. I'd like to remove the lib and merge its functionality into regular folder as well. Generally agree though the code might be longer because of that. F.e. having a FromDouble function in a global namespace isn't a good thing. -
Thanks for the report! That's pretty old bug: #919, it's not so easy to fix properly without performance affection for low platforms (though might be workarounded).
-
Heavily Zoomed Custom Map
vladislavbelov replied to Zer0's topic in Game Development & Technical Discussion
#6116 and D4279. -
Can't compile SVN development version any more
vladislavbelov replied to Player of 0AD's topic in Bug reports
Did you try to run clean-workspaces.sh and then run update-workspaces.sh again? -
That should be related to placing walls. Were you placing some? Also do you have a replay of that game?