任务单 #42988

Assert 'state == TECH_UNKNOWN' failing

开放日期: 2021-10-06 20:58 最后更新: 2021-11-19 01:42

报告人:
属主:
类型:
状态:
关闭
组件:
里程碑:
优先:
5 - Medium
严重性:
5 - Medium
处理结果:
Fixed
文件:
1

Details

I have a codebase forked from the master summer -19. So far in my debugging I've not seen any difference between current master and this forked codebase that would make current master safe from the assert.

I'm regularly seeing assert 'state == TECH_UNKNOWN' from research_update() failing on a client, with global observer. With my debugging attempts (increased logging from a game to game, really) I think:
- State is actually 'TECH_PREREQS_KNOWN', and that's correct
- There should be no rules preventing researching the tech, so 'reachable' should be TRUE, causing code to go in the different branch in previous 'if' (assert is in the 'else' branch)
- 'reachable' seems to be FALSE because research_may_become_allowed() macro returns FALSE -> research_allowed() returns FALSE
- reqs_may_activate() has never in the entire run returned FALSE
- As far as I see this leaves only the possibilities for the research_allowed() to return FALSE because advance is not valid (it should not be, they have valid name at least), or that research_players_iterate() iterates over zero players (as the first iterated player would cause it to return TRUE from reqs_may_activate() )

任务单历史 (3/6 Histories)

2021-10-06 20:58 Updated by: cazfi
  • New Ticket "Assert 'state == TECH_UNKNOWN' failing" created
2021-10-07 23:11 Updated by: cazfi
评论

Still investigating, but the issue seem to be with this code in (server side) end_turn():

researches_iterate(presearch) {
send_research_info(presearch, NULL);
} researches_iterate_end;

Similar code exist in send_all_info(), which probably causes similar issue.

researches_iterate() iterate over *all* researches, including those that have only dead players. That means that a dead player's research gets sent to the client. That research_players_iterate() on client side discussed earlier will skip dead players, so for a dead player's research it iterates over zero players, which I already assumed to be the problem.

I'm not yet sure what the correct fix would be, or even if it should be server side (never to send dead player's research), or client side (somehow to handle dead player's research).

(Edited, 2021-10-07 23:12 Updated by: cazfi)
2021-10-21 06:52 Updated by: cazfi
  • 里程碑 Update from (无) to 3.0.0 (关闭)
  • 组件 Update from (无) to General
2021-11-08 06:10 Updated by: cazfi
  • 处理结果 Update from to Accepted
2021-11-19 01:42 Updated by: cazfi
  • 状态 Update from 开启 to 关闭
  • 属主 Update from (无) to cazfi
  • 处理结果 Update from Accepted to Fixed

编辑

Please login to add comment to this ticket » 登录名