-
Posts
17.954 -
Joined
-
Last visited
-
Days Won
578
Everything posted by Stan`
-
Run the game > open map > open settings > switch to 16x > close the game > immediately upload logs.
-
We managed to get it to work somehow with @DanW58 on IRC yesterday. Now he needs to check whether he can actually compile that way.
-
Can you post the interestinglog.html?
-
@DanW58 Sorry seems I missed you by a few :/ I think you should be able to generate codelite project files using premake according to this https://github.com/premake/premake-core/wiki/Using-Premake echo "Premake args: ${premake_args}" if [ "`uname -s`" != "Darwin" ]; then ${premake_command} --file="premake5.lua" --outpath="../workspaces/gcc/" ${premake_args} gmake || die "Premake failed" else ${premake_command} --file="premake5.lua" --outpath="../workspaces/gcc/" --macosx-version-min="${MIN_OSX_VERSION}" ${premake_args} gmake || die "Premake failed" # Also generate xcode workspaces if on OS X ${premake_command} --file="premake5.lua" --outpath="../workspaces/xcode4" --macosx-version-min="${MIN_OSX_VERSION}" ${premake_args} xcode4 || die "Premake failed" fi To do just replace the code above in https://trac.wildfiregames.com/browser/ps/trunk/build/workspaces/update-workspaces.sh by the following echo "Premake args: ${premake_args}" if [ "`uname -s`" != "Darwin" ]; then # ${premake_command} --file="premake5.lua" --outpath="../workspaces/gcc/" ${premake_args} gmake || die "Premake failed" ${premake_command} --file="premake5.lua" --outpath="../workspaces/codelite/" ${premake_args} codelite || die "Premake failed" else ${premake_command} --file="premake5.lua" --outpath="../workspaces/gcc/" --macosx-version-min="${MIN_OSX_VERSION}" ${premake_args} gmake || die "Premake failed" # Also generate xcode workspaces if on OS X ${premake_command} --file="premake5.lua" --outpath="../workspaces/xcode4" --macosx-version-min="${MIN_OSX_VERSION}" ${premake_args} xcode4 || die "Premake failed" fi EDIT: @Loki1950 Do you know if CodeLite is compatible with Code::Blocks ? It seems the latter isn't supported.
-
Can you come on IRC @DanW58 ?
-
Yes they have different stats . Iirc ptol and sele have pikemen gauls for instance only have spearmen
-
You can still use visual studio if you use Windows Feel free to drop by IRC and ask questions
-
Are you talking about the SVN version?
-
Well you're the programmer look that function up and see if it's really needed
-
I ended up deleting all of that code since it messed up with new ryzen CPUs. We use doubles because that's what function returns. The simulation uses fixed point calculation (Fixed CFixed CFixedVector2D etc) But you have to be very wary of overflows and the performance isn't always that grear. For instance perf will show you we spend quite a long time in isqrt64. (Integer square root function) We need to do this to ensure an exact calculation on every machine. Else we'd go out of sync since they all compute the state at the same time. You can use constexpr that are evaluated at compile time iirc. These days yeah we're getting ready for a release and we're trying to nuke bugs and improve balancing as fast possible. Feature Freeze is tomorrow. I'd like to see actual proof of this since it highly depends on the compiler and flags and may only have been true a long while ago. Also might want to share links when doing such statements Could use godbolt to see how compilers optimize that stuff.
-
Some use eclipse, some are more conservative and use the default text editor. I usually use Visual Studio Code. Premake could generate some workspaces, I've never tried it I'm not sure how to address your second point. Nice to see you don't have given up
-
Indeed, that civ is cursed
-
-
-
-
Yeah the rng and rnc files were not updated @vladislavbelov should fix it soon
-
-
-
Player.prototype.Deserialize = function(state) { for (let prop in state) this[prop] = state[prop]; }; You need to add this to your player.js file
-
PNG is losless but doesn't support saving layers, which make the extracting process a bit tedious. Also I find the phase icons a bit blurry, not sure whether that was intended by @wowgetoffyourcellphone Well that could be part of the testing, yes. Anyway in the end you have to turn them into non vectorial images. (The game doesn't load SVG)
-
Unless you make stretch it vertically, it will never be square. I don't think we have them anywhere sadly. (In a losless format)
-
@Nescio @borg- ? ^
-
It's hard to keep track of everything DE does so if someone wants an actor to be updated from there just let me know the name of the actor and the reason EA's is incorrect
-
Isn't the new hotkey editor enough?
-
I realise I never uploaded them. fonts.svglogos.svg @Nescio It might be easier for you to fix the kerning as I'm not sure how close you want the letters to be. Then I can use those for D3404