Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

City-state allies with most influencing civ. #1291

Merged
merged 4 commits into from
Nov 5, 2019

Conversation

ninjatao
Copy link
Contributor

@ninjatao ninjatao commented Nov 4, 2019

Copy link
Owner

@yairm210 yairm210 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A. Looks good!
B. We don't give the player any indication that something happens at 60 influence, we don't want them to have to know this from Civ V knowledge

@ninjatao
Copy link
Contributor Author

ninjatao commented Nov 4, 2019

Maybe add a notification for player's info?

@yairm210
Copy link
Owner

yairm210 commented Nov 4, 2019

But how is the player supposed to know that once he reaches 60 influence they'll be allies?
We need to add something like 'influence for allies: 40/60'

@ninjatao
Copy link
Contributor Author

ninjatao commented Nov 4, 2019

Added notifications and tips in diplomacy screen. Also improved status check.

No TEST-RUN yet for the new commit. Please hold for a while.

@Smashfanful
Copy link
Contributor

I think we also need notifications for when we're about to lose our Friendship or our Alliance with a City-State

@ninjatao
Copy link
Contributor Author

ninjatao commented Nov 4, 2019

Tested ok. However there is a very strange problem. If player is allied with a city-state, game throws exception between turns because tileMap of city-state has not been initialized.
I have to call setTransients() to avoid crash. Please let me know if there are better ways.

@yairm210
Copy link
Owner

yairm210 commented Nov 4, 2019

Tilemap of the...civ? Doesn't civInfo access tileMap via gameInfo?
If not, then where in gameInfo.setTransients is civInfo.setTransients called? Maybe we filter and don't set for city states for done strange reason?

@ninjatao
Copy link
Contributor Author

ninjatao commented Nov 4, 2019

11-05 00:04:14.275 9271 10931 E AndroidRuntime: FATAL EXCEPTION: Thread-7
11-05 00:04:14.275 9271 10931 E AndroidRuntime: Process: com.unciv.app, PID: 9271
11-05 00:04:14.275 9271 10931 E AndroidRuntime: kotlin.UninitializedPropertyAccessException: lateinit property tileMap has not been initialized
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.logic.city.CityInfo.getTiles(CityInfo.kt:120)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.logic.civilization. CivInfoTransientUpdater$updateViewableTiles$2.invoke(CivInfoTransientUpdater.kt:32)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.logic.civilization. CivInfoTransientUpdater$updateViewableTiles$2.invoke(CivInfoTransientUpdater.kt:14)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at kotlin.sequences.FlatteningSequence$iterator$1. ensureItemIterator(Sequences.kt:277)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at kotlin.sequences.FlatteningSequence$iterator$1. hasNext(Sequences.kt:265)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at kotlin.collections.CollectionsKt__MutableCollectionsKt. addAll(MutableCollections.kt:139)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.logic.civilization.CivInfoTransientUpdater. updateViewableTiles(CivInfoTransientUpdater.kt:32)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.logic.civilization.CivilizationInfo. updateViewableTiles(CivilizationInfo.kt:334)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.logic.civilization.CivilizationInfo. setTransients(CivilizationInfo.kt:326)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.logic.GameInfo.setTransients(GameInfo.kt:251)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.ui.worldscreen.WorldScreen$nextTurn$1. invoke(WorldScreen.kt:328)
11-05 00:04:14.275 9271 10931 E AndroidRuntime: at com.unciv.ui.worldscreen.WorldScreen$nextTurn$1. invoke(WorldScreen.kt:36)

@ninjatao
Copy link
Contributor Author

ninjatao commented Nov 4, 2019

Exception log above pressing Next Turn. It seems that setTransients has not been called for city-state. But should this function be called on loading instead of every turn?

@yairm210
Copy link
Owner

yairm210 commented Nov 4, 2019

Ahhh I think I get it
You can see that the exception is encountered INSIDE civInfo.setTransients, I think that one transient is dependent on the other, so we need to ensure we set tileMap first

@yairm210
Copy link
Owner

yairm210 commented Nov 4, 2019

That is,
We need to ensure we set the tilemap for ALL civs, before we update tiles for a single one. In gameInfo.setTransients.

@ninjatao
Copy link
Contributor Author

ninjatao commented Nov 5, 2019

All set.

@ninjatao
Copy link
Contributor Author

ninjatao commented Nov 5, 2019

I think we also need notifications for when we're about to lose our Friendship or our Alliance with a City-State

Let's finish the function before improving user experience.

@yairm210 yairm210 merged commit 1e40344 into yairm210:master Nov 5, 2019
@ninjatao ninjatao deleted the duantao/city_state_ally branch August 16, 2021 01:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants