Zetawar / zetawar

Zetawar is a turn based tactical strategy game implemented in 100% ClojureScript.
MIT License
169 stars 14 forks source link

Display terrain effects for selected and targeted terrains #90

Closed tbeddy closed 7 years ago

tbeddy commented 7 years ago

Closes #55 The terrain effects are displayed underneath the map in a small Bootstrap table.

pic
djwhitt commented 7 years ago

The logic looks good, but the format needs to be more compact. Selected, targeted, and hover information should all appear on one line. Also, though it wasn't in the original description, I think we should also display the selected and targeted coordinates. I'm imagine something like this: "Selected: Q,R (M,AT,AR) • Targeted: Q:R (M,AT,AR) • Hover: Q,R" with hover text for each group of stats describing what the fields mean (e.g. "Q:X, R:Y, Movement Cost:Z ...").

tbeddy commented 7 years ago

Should there be some text that explains the information? If a user sees "Selected: 2,2 (3,0,0)", they might be able to figure out what "2,2" means, but "3,0,0" isn't very clear.

djwhitt commented 7 years ago

I'd give them some hover text with descriptions of each value, similar to the abbreviations in the build modal.

tbeddy commented 7 years ago

Woops, I somehow missed your hover text comment in the previous comment. Sorry about that.

djwhitt commented 7 years ago

I'm good with merging this after the conflicts are resolved.

tbeddy commented 7 years ago

Done