abstreet/docs/TODO_ux.md

88 lines
3.4 KiB
Markdown
Raw Normal View History

2019-01-18 08:40:47 +03:00
# TODO - GUI and UX
## Quick n easy
- try showing traffic signals by little boxes at the end of lanes
- red circle means right turn on red OK, red right arrow means nope, green means normal turns ok, green arrow means protected left, crosswalk hand or stick figure
- Circle::new radius and pt project_away should take meters type
- if a lane could feasibly have multiple turn options but doesnt, print "ONLY"
- color roads as solid black when zoomed out, and make intersections similar (except for stop sign / signal)
2019-01-18 08:40:47 +03:00
- audit all panics
- tune text color, size, padding
- sort the top menus
- click cycle diagram to edit duration
- lane edit validity
- make it easy to see current lane when changing it
## Less easy
- revamp stop sign editor
- toggle rewind mode
- sim stuff feels like a modal menu that's kinda omniprescent, but gets hidden sometimes
- yellow or flashing red/yellow for yields
- text box entry: highlight char looks like replace mode; draw it btwn chars
2019-01-18 08:40:47 +03:00
## General ezgui stuff
- trigger screencap from a top menu debug thing WITHOUT a hotkey.
- optionally limit canvas scrolling/zooming to some map bounds
- T top menu doesnt know when we have a more urgent input thing going!
- cant use G for geom debug mode and contextual polygon debug
- on a menu with preselected thing, clicking ANYWHERE does stuff...
- X on all menus
- when dragging, dont give mouse movement to UI elements
2019-01-18 08:40:47 +03:00
## New features
- swap direction of one-way
- convert between one- and two-way if there's enough space
- undo support for edits
## Better rendering
- render overlapping peds reasonably
- draw moving / blocked colors (gradually more red as they wait longer)
- render cars with textures?
- rooftops
- https://thumbs.dreamstime.com/b/top-view-city-street-asphalt-transport-people-walking-down-sidewalk-intersecting-road-pedestrian-81034411.jpg
- https://thumbs.dreamstime.com/z/top-view-city-seamless-pattern-streets-roads-houses-cars-68652655.jpg
- general inspiration
- https://gifer.com/en/2svr
- https://www.fhwa.dot.gov/publications/research/safety/05078/images/fig6.gif
2019-01-18 08:40:47 +03:00
- color tuning
- neutral (white or offwhite) color and make noncritical info close to
that. http://davidjohnstone.net/pages/lch-lab-colour-gradient-picker,
chroma < 50
- use new arrows for drawing...
- triangle and base have a gap; why?!
- only for turn icons?
- draw as one polygon when fixed
- dashed thickness is way off
- last dash shouldnt appear?
## Switch to OpenGL (for speed)
- speed
2019-01-25 03:09:29 +03:00
- for things like lanes with markings, build up a single thing that can be drawn...
- but with an easier API... imperative draw single thing or prerender many things should be same
- change ezgui API to allow uploading geometry once
2019-01-25 02:17:31 +03:00
- what about color then? get fancy and plumb an override color uniform?
- stop storing raw geometry when appropriate
2019-01-25 02:17:31 +03:00
- sleep better in the event loop
2019-01-24 22:47:46 +03:00
- first make UserInput borrow state and not need to consume
2019-01-24 22:04:56 +03:00
- experiment with batching and not passing colors
- measure performance of huge maps
2019-01-25 02:17:31 +03:00
- specialized things for common shapes like circles?
- quality
- need padding around text
- text entry needs to draw the cursor differently
- better arrows (then debug the legend plugin)
2019-01-24 00:46:05 +03:00
- refactoring
- pass canvas to text module, make it do the glyph borrowing?
- pass dims to draw_text_bubble; all callers have it anyway, right?
- probably use f32, not f64 everywhere
- undo the y inversion hacks at last!