安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题


If you wanted to invest a bit of effort into it, what you could do is write an external program to look at the auto-save files. I believe the game can be set to auto save every month (or at least every 3 months). Using that data you can generate the information you want and spit it out into an .html file in the reports. You can then modify the static header html to link to that report so you can access the information in the game.
You could take it one step further and alter the turnevents.xml file based on your results. The TurnEvents file is read each time and not stored in the DB. Hence you could change the outcome of the wars.
All that would require a knowledge of a programming language that can use SQLite, and a little bit of html/xml.
That being said, the mod system does not support this. As it would require editing core files.
Having written this, I'm guessing 99.999% probability is that the answer is no.
Oh, well. It was worth an ask. Probably, there would need to be a lot more built than what I described anyway to properly track a war, because contracts would need to be tied with how well-supplied a side is and how well-supplied the enemy is, etc. Before long we are talking many more integration points.
I guess I'll just stick with roleplaying creating the best designs for the war timeline and assume it helps cut the casualties.
I think you mentioned in another thread that hard-coded contracts are possible to mod in, though, right? Can a modder add contracts for specific types of vehicles with specific specs at specific dates in the war (as opposed to the randomly generated ones)? It could be cool to correlate contracts with big events in the war. Though I admit I haven't played throgh a war yet, so I don't know how much you've already done.
You could probably do something with the Windows API to minimize GC when this is triggered. Thus pausing the game, but it's a bit of complexity. I would just play 3 months, wait for it to process, play three months, wait for it to process, etc.
Alternatively, you could just pull the data out of SQLite with a good viewer, and put it into a spreadsheet program like Excel or Libre Calc. Then do whatever calculations you need to do there.
No, the external contracting data are variables for dynamic contract generator to use to generate contracts. There is no static contract generation system.