Hyphen-ated / RebirthItemTracker

Uses the log.txt file to track item pickups in Binding of Isaac: Rebirth.
BSD 2-Clause "Simplified" License
121 stars 26 forks source link

Tracker sometimes goes way offscreen #64

Closed Hyphen-ated closed 8 years ago

Hyphen-ated commented 8 years ago

My power went out and when I tried to run the tracker afterward, my options.json contained:

"x_position": -31996, "y_position": -31977

and so the tracker was not visible. a few people have complained about the tracker not being visible before and I'm guessing this is what they were seeing.

maybe there's some way we can prevent this from happening

Zamiell commented 8 years ago

Perhaps include this logic at program intialization:

if x_position + width < 5 && y_position + height < 5:
    reset_window_position()
Hyphen-ated commented 8 years ago

i put in something similar