Skip to content

Commit

Permalink
Fix terminal taking input when not visible, fix timescale command (Op…
Browse files Browse the repository at this point in the history
  • Loading branch information
FooSoft authored Feb 3, 2020
1 parent 0c618bd commit a04d238
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
20 changes: 11 additions & 9 deletions d2core/d2term/terminal.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,12 @@ func (t *terminal) advance(elapsed float64) error {
}

func (t *terminal) OnKeyDown(event d2input.KeyEvent) bool {
maxOutputIndex := d2common.MaxInt(0, len(t.outputHistory)-t.lineCount)

if t.visState == termVisHiding || t.visState == termVisHidden {
if event.Key == d2input.KeyGraveAccent {
t.show()
return true
}
if t.visState == termVisHiding || t.visState == termVisHidden && event.Key == d2input.KeyGraveAccent {
t.show()
return true
}

// When terminal is not visible, only d2input.KeyGraveAccent is consumed.
if !t.isVisible() {
return false
}

Expand All @@ -152,6 +149,8 @@ func (t *terminal) OnKeyDown(event d2input.KeyEvent) bool {
return true
}

maxOutputIndex := d2common.MaxInt(0, len(t.outputHistory)-t.lineCount)

if event.Key == d2input.KeyHome {
t.outputIndex = maxOutputIndex
return true
Expand Down Expand Up @@ -224,11 +223,14 @@ func (t *terminal) OnKeyDown(event d2input.KeyEvent) bool {
return true
}

// When terminal is visible, all keys are consumed.
return true
}

func (t *terminal) OnKeyChars(event d2input.KeyCharsEvent) bool {
if !t.isVisible() {
return false
}

var handled bool
for _, c := range event.Chars {
if c != '`' {
Expand Down
1 change: 1 addition & 0 deletions d2game/d2game.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ func Initialize(loadingSpr *d2ui.Sprite) error {
if timeScale <= 0 {
d2term.OutputError("invalid time scale value")
} else {
singleton.timeScale = timeScale
d2term.OutputInfo("timescale changed from %f to %f", singleton.timeScale, timeScale)
}
})
Expand Down

0 comments on commit a04d238

Please sign in to comment.