Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    17.958
  • Joined

  • Last visited

  • Days Won

    578

Everything posted by Stan`

  1. Without the resource files I would assume you forgot to set all resources to be tradable or not. Example: { "code": "stone", "name": "Stone", "description": "Mine from rocks, stone quarries or ruins.", "order": 3, "subtypes": { "rock": "Rock", "ruins": "Ruins" }, "truePrice": 100, "aiAnalysisInfluenceGroup": "sparse" } if (data.tradable == "true") Would trigger an error because there is no tradable property. So either set it to false where you don't need it or add if (data.tradable && data.tradable == "true") Also not that it's likely that there is some cast occuring there data.tradable == true <=> data.tradable == "true" but not data.tradable === "true" In the json, you can write true without quotes. That's a luxury you do not have in XML. I guess this would come from Player.js ? Player.prototype.SetTradingGoods = function(tradingGoods) { let resCodes = Resources.GetCodes(); let sumProba = 0; for (let resource in tradingGoods) { if (resCodes.indexOf(resource) == -1 || tradingGoods[resource] < 0) { error("Invalid trading goods: " + uneval(tradingGoods)); return; } sumProba += tradingGoods[resource]; } if (sumProba != 100) { error("Invalid trading goods: " + uneval(tradingGoods)); return; } this.tradingGoods = []; for (let resource in tradingGoods) this.tradingGoods.push({ "goods": resource, "proba": tradingGoods[resource] }); }; You just need to check that for (let resource in tradingGoods) { if(Resources.GetTradables().some(res => res == resource)) continue; if (resCodes.indexOf(resource) == -1 || tradingGoods[resource] < 0) { error("Invalid trading goods: " + uneval(tradingGoods)); return; } sumProba += tradingGoods[resource]; } and for (let resource in tradingGoods) { if(Resources.GetTradables().some(res => res == resource)) continue; this.tradingGoods.push({ "goods": resource, "proba": tradingGoods[resource] }); } Also i don't think I have seen any link to your mod, is it publicly hosted somewhere ?
  2. Can you share the error message and/or the code maybe it's something we can fix
  3. Missing the sound or the feature ? else I guess @Samulis could do it
  4. @Itms I remember leper had a patch for utf8 support for the windows buid (Inari couldn't build because he had some Japanese chars in his paths) Maybe it's the same bug but on Linux.
  5. Sure was just wondering since I remember reading something that stated that the interactions between the two languages were slow. That would only be for things refering to this.entity True.
  6. Hey guys, I was wondering since we have a lot of calls that goes like this Engine.QueryInterface(component_IID, entity) if that would not be a performance gain to actually cache them in Init functions ? For some small components that might be negligible but maybe for stuff like UnitAI it could make some difference.
  7. How many units did you have ? How may AIS on what map. Those are all the things that hit greatly on performance.
  8. Actually you are capped at 4GB for 0 A.D. no matter what. The 4GB+ patch is actually a 2GB to 4GB patch. If you want to use more you have to compile for x64 and our game is not ready for that yet.
  9. It's a system component in the Js code but it's not meant for AI it's only used for entities.
  10. Can you attach the crashlog and crashdump ? Also were you doing something particular in DE ?
  11. What if I told you... You can do it manually for now ? Copy pasting Actors in atlas puts XML code in your clipboard. Instead of Ctrl+V in atlas do so in a text editor and save the file as your pog-group.xml somewhere. Then whenever you need it open the file select all and Ctrl + C Then you can Ctrl+v in atlas If someone wants to implement it just saving XML from clipboard and allowing someone to reload it would work.
  12. I wonder if you couldn't just eval JS through C# But I'm not sure any of it is worth it
  13. Too bad you can't call CmpTimer... It executes stuff on each frame.
  14. @Genava55 I thought Alésia was kind of hard to locate ?
  15. Hello, Thanks for the report. Looking at the call stack I'd say this is the GLSL bug again. Try disabling GLSL and postprocessing in the game's option, and try to launch a game. That should work. For further reference here is the call stack. > pyrogenesis.exe!PerformErrorReaction(ErrorReactionInternal er=ERI_BREAK, unsigned int flags=0, volatile int * suppress=0x00000000) Line 426 C++ Symbols loaded. pyrogenesis.exe!debug_DisplayError(const wchar_t * description=0x007dd798, unsigned int flags=0, void * context=0x007ddfa8, const wchar_t * lastFuncToSkip=0x016a3f38, const wchar_t * pathname=0x007ddcb0, int line=0, const char * func=0x007dc790, volatile int * suppress=0x00000000) Line 483 C++ Symbols loaded. pyrogenesis.exe!wseh_ExceptionFilter(_EXCEPTION_POINTERS * ep=0x007dde1c) Line 289 C++ Symbols loaded. pyrogenesis.exe!CallStartupWithinTryBlock() Line 365 C++ Symbols loaded. msvcr120.dll!60bd2aa5() Unknown Non-user code. Cannot find or open the PDB file. [Frames below may be incorrect and/or missing, no symbols loaded for msvcr120.dll] Unknown No symbols loaded. msvcr120.dll!60bd2b33() Unknown Non-user code. Cannot find or open the PDB file. pyrogenesis.exe!_except_handler4(_EXCEPTION_RECORD * ExceptionRecord, _EXCEPTION_REGISTRATION_RECORD * EstablisherFrame, _CONTEXT * ContextRecord, void * DispatcherContext) Line 91 C Non-user code. Symbols loaded. pyrogenesis.exe!CShaderProgramGLSL::Link() Line 380 C++ Symbols loaded.
  16. Thanks @Wijitmaker, @elexis and @(-_-) it will be useful for my presentation, when I get to work on it again...
  17. Well being underrated is actually a good thing, it's better than being overrated
  18. Just double click on Millenniumad save config then relaunch the game
  19. Well LUA is usually the performance choice for scripting. Do you happen to have a link to a thread where we explain why we did choose one over another ? I get that question a lot and I don't have a solid answer. Js is not slow by itself. It's the interfacing that slows things down. Also having multiple ha contexts/threads would help. Currently only the AI and maybe the aGUI are separated. @Sundiata well it does help a lot for static meshes grass trees props. However low poly count LODs and some other tricks might help more. The issue with units is that they are moving so their geometry is different due to variations their textures and props are different so it might not be instanced. But combined with loss and the old mesh one could reduce the performance strain by changing the actor depending on the zoom.
  20. Thank you ! glad you enjoy the mod, and thanks for the screenshots.
  21. @user1 @Hannibal_Barca Can you give us some input ?
×
×
  • Create New...