/usr/share/openmsx/scripts/_reverse.tcl is in openmsx-data 0.10.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | namespace eval reverse {
# Enable reverse if not yet enabled. As an optimization, also return
# reverse-status info (so that caller doesn't have to query it again).
proc auto_enable {} {
set stat_dict [reverse status]
if {[dict get $stat_dict status] eq "disabled"} {
reverse start
}
return $stat_dict
}
set_help_text reverse_prev \
{Go back in time to the previous 'snapshot'.
A 'snapshot' is actually an internal implementation detail, but the\
important thing for this command is that the further back in the past,\
the less dense the snapshots are. So executing this command multiple times\
will take successively bigger steps in the past. Going back to a snapshot\
is also slightly faster than going back to an arbitrary point in time\
(let's say going back a fixed amount of time).
}
proc reverse_prev {{minimum 1} {maximum 15}} {
set stats [auto_enable]
set snapshots [dict get $stats snapshots]
set num_snapshots [llength $snapshots]
if {$num_snapshots == 0} return
set current [dict get $stats current]
set upperTarget [expr {$current - $minimum}]
set lowerTarget [expr {$current - $maximum}]
# search latest snapshot that is still before upperTarget
set i [expr {$num_snapshots - 1}]
while {([lindex $snapshots $i] > $upperTarget) && ($i > 0)} {
incr i -1
}
# but don't go below lowerTarget
set t [lindex $snapshots $i]
if {$t < $lowerTarget} {set t $lowerTarget}
reverse goto $t
}
set_help_text reverse_next \
{This is very much like 'reverse_prev', but instead it goes to the closest\
snapshot in the future (if possible).
}
proc reverse_next {{minimum 0} {maximum 15}} {
set stats [auto_enable]
set snapshots [dict get $stats snapshots]
set num_snapshots [llength $snapshots]
if {$num_snapshots == 0} return
set current [dict get $stats current]
set lowerTarget [expr {$current + $minimum}]
set upperTarget [expr {$current + $maximum}]
# search first snapshot that is after lowerTarget
lappend snapshots [dict get $stats end]
set i 0
while {($i < $num_snapshots) && ([lindex $snapshots $i] < $lowerTarget)} {
incr i
}
if {$i < $num_snapshots} {
# but don't go above upperTarget
set t [lindex $snapshots $i]
if {$t > $upperTarget} {set t $upperTarget}
reverse goto $t
}
}
proc goto_time_delta {delta} {
set t [expr {[dict get [reverse status] current] + $delta}]
if {$t < 0} {set t 0}
reverse goto $t
}
proc go_back_one_step {} {
goto_time_delta [expr {-$::speed / 100.0}]
}
proc go_forward_one_step {} {
goto_time_delta [expr { $::speed / 100.0}]
}
# reverse bookmarks
variable bookmarks [dict create]
proc create_bookmark_from_current_time {name} {
variable bookmarks
dict set bookmarks $name [machine_info time]
# The next message is useful as part of a hotkey command for this
# osd::display_message "Saved current time to bookmark '$name'"
return "Created bookmark '$name' at [dict get $bookmarks $name]"
}
proc remove_bookmark {name} {
variable bookmarks
dict unset bookmarks $name
return "Removed bookmark '$name'"
}
proc jump_to_bookmark {name} {
variable bookmarks
if {[dict exists $bookmarks $name]} {
reverse goto [dict get $bookmarks $name]
# The next message is useful as part of a hotkey command for
# this
#osd::display_message "Jumped to bookmark '$name'"
} else {
error "Bookmark '$name' not defined..."
}
}
proc clear_bookmarks {} {
variable bookmarks
set bookmarks [dict create]
}
proc save_bookmarks {name} {
variable bookmarks
set directory [file normalize $::env(OPENMSX_USER_DATA)/../reverse_bookmarks]
file mkdir $directory
set fullname [file join $directory ${name}.rbm]
if {[catch {
set the_file [open $fullname {WRONLY TRUNC CREAT}]
puts $the_file $bookmarks
close $the_file
} errorText]} {
error "Failed to save to $fullname: $errorText"
}
return "Successfully saved bookmarks to $fullname"
}
proc load_bookmarks {name} {
variable bookmarks
set directory [file normalize $::env(OPENMSX_USER_DATA)/../reverse_bookmarks]
set fullname [file join $directory ${name}.rbm]
if {[catch {
set the_file [open $fullname {RDONLY}]
set bookmarks [read $the_file]
close $the_file
} errorText]} {
error "Failed to load from $fullname: $errorText"
}
return "Successfully loaded $fullname"
}
proc list_bookmarks_files {} {
set directory [file normalize $::env(OPENMSX_USER_DATA)/../reverse_bookmarks]
set results [list]
foreach f [lsort [glob -tails -directory $directory -type f -nocomplain *.rbm]] {
lappend results [file rootname $f]
}
return $results
}
proc reverse_bookmarks {subcmd args} {
switch -- $subcmd {
"create" {create_bookmark_from_current_time {*}$args}
"remove" {remove_bookmark {*}$args}
"goto" {jump_to_bookmark {*}$args}
"clear" {clear_bookmarks}
"load" {load_bookmarks {*}$args}
"save" {save_bookmarks {*}$args}
default {error "Invalid subcommand: $subcmd"}
}
}
set_help_proc reverse_bookmarks [namespace code reverse_bookmarks_help]
proc reverse_bookmarks_help {args} {
switch -- [lindex $args 1] {
"create" {return {Create a bookmark at the current time with the given name.
Syntax: reverse_bookmarks create <name>
}}
"remove" {return {Remove the bookmark with the given name.
Syntax: reverse_bookmarks remove <name>
}}
"goto" {return {Go to the bookmark with the given name.
Syntax: reverse_bookmarks goto <name>
}}
"clear" {return {Removes all bookmarks.
Syntax: reverse_bookmarks clear
}}
"save" {return {Save the current reverse bookmarks to a file.
Syntax: reverse_bookmarks save <filename>
}}
"load" {return {Load reverse bookmarks from file.
Syntax: reverse_bookmarks load <filename>
}}
default {return {Control the reverse bookmarks functionality.
Syntax: reverse_bookmarks <sub-command> [<arguments>]
Where sub-command is one of:
create Create a bookmark at the current time
remove Remove a previously created bookmark
goto Go to a previously created bookmark
clear Shortcut to remove all bookmarks
save Save current bookmarks to a file
load Load previously saved bookmarks
Use 'help reverse_bookmarks <sub-command>' to get more detailed help on a specific sub-command.
}}
}
}
set_tabcompletion_proc reverse_bookmarks [namespace code reverse_bookmarks_tabcompletion]
proc reverse_bookmarks_tabcompletion {args} {
variable bookmarks
if {[llength $args] == 2} {
return [list "create" "remove" "goto" "clear" "save" "load"]
} elseif {[llength $args] == 3} {
switch -- [lindex $args 1] {
"remove" -
"goto" {return [dict keys $bookmarks]}
"load" -
"save" {return [list_bookmarks_files]}
default {return [list]}
}
}
}
### auto save replays
variable auto_save_enabled false
variable auto_save_interval false
set_help_text auto_save_replay_enable \
{Enables automatically saving the current replay to the given filename.\
Optionally you can also specify the interval in seconds, default is 5.\
\
The file will keep being overwritten until you disable the auto save with\
the command auto_save_replay_disable. You can change the filename while\
it's active with the auto_save_replay_set_filename command.\
}
proc auto_save_replay_enable { filename {interval 5}} {
variable auto_save_enabled
variable auto_save_interval
if {$auto_save_enabled} {
error "Auto save is already enabled!"
}
set stat_dict [reverse status]
if {[dict get $stat_dict status] eq "disabled"} {
error "Reverse is not enabled!"
}
set auto_save_enabled true
set auto_save_interval $interval
auto_save_replay_loop $filename
return "Enabled auto-save of replay to filename $filename every $auto_save_interval seconds."
}
proc auto_save_replay_loop {filename} {
variable auto_save_enabled
variable auto_save_interval
if {$auto_save_enabled} {
reverse savereplay $filename
after realtime $auto_save_interval "reverse::auto_save_replay_loop $filename"
}
}
proc auto_save_replay_set_filename {filename} {
variable auto_save_enabled
variable auto_save_interval
if {!$auto_save_enabled} {
error "Auto save is not enabled!"
}
auto_save_replay_disable
auto_save_replay_enable $filename $auto_save_interval
}
proc auto_save_replay_disable {} {
variable auto_save_enabled
if {!$auto_save_enabled} {
error "Auto save was not enabled!"
}
set auto_save_enabled false
return "Disabled auto save of replays."
}
namespace export reverse_prev
namespace export reverse_next
namespace export goto_time_delta
namespace export go_back_one_step
namespace export go_forward_one_step
namespace export reverse_bookmarks
namespace export auto_save_replay_enable
namespace export auto_save_replay_disable
namespace export auto_save_replay_set_filename
} ;# namespace reverse
namespace eval reverse_widgets {
variable reverse_bar_update_interval 0.10
variable update_after_id 0
variable mouse_after_id 0
variable overlay_counter
variable prev_x 0
variable prev_y 0
variable overlayOffset
set_help_text toggle_reversebar \
{Enable/disable an on-screen reverse bar.
This will show the recorded 'reverse history' and the current position in\
this history. It is possible to click on this bar to immediately jump to a\
specific point in time. If the current position is at the end of the history\
(i.e. we're not replaying an existing history), this reverse bar will slowly\
fade out. You can make it reappear by moving the mouse over it.
}
proc toggle_reversebar {} {
if {[osd exists reverse]} {
disable_reversebar
} else {
enable_reversebar
}
return ""
}
proc enable_reversebar {{visible true}} {
reverse::auto_enable
if {[osd exists reverse]} {
# osd already enabled
return
}
# Hack: put the reverse bar at the top/bottom when the icons
# are at the bottom/top. It would be better to have a proper
# layout manager for the OSD stuff.
if {[catch {set led_y [osd info osd_icons -y]}]} {
set led_y 0
}
set y [expr {($led_y == 0) ? 231 : 1}]
# Set time indicator position (depending on reverse bar position)
variable overlayOffset [expr {($led_y > 16) ? 1.1 : -1.25}]
# Reversebar
set fade [expr {$visible ? 1.0 : 0.0}]
osd create rectangle reverse \
-scaled true -x 34 -y $y -w 252 -h 8 \
-rgba 0x00000080 -fadeCurrent $fade -fadeTarget $fade \
-borderrgba 0xFFFFFFC0 -bordersize 1
osd create rectangle reverse.int \
-x 1 -y 1 -w 250 -h 6 -rgba 0x00000000 -clip true
osd create rectangle reverse.int.bar \
-relw 0 -relh 1 -z 3 -rgba "0x0044aa80 0x2266dd80 0x0055cc80 0x55eeff80"
osd create rectangle reverse.int.end \
-relx 0 -x -1 -w 2 -relh 1 -z 3 -rgba 0xff8000c0
osd create text reverse.int.text \
-x -10 -y 0 -relx 0.5 -size 5 -z 6 -rgba 0xffffffff
# on mouse over hover box
osd create rectangle reverse.mousetime \
-relx 0.5 -rely 1 -relh 0.75 -z 4 \
-rgba "0xffdd55e8 0xddbb33e8 0xccaa22e8 0xffdd55e8" \
-bordersize 0.5 -borderrgba 0xffff4480
osd create text reverse.mousetime.text \
-size 5 -z 4 -rgba 0x000000ff
update_reversebar
variable mouse_after_id
set mouse_after_id [after "mouse button1 down" [namespace code check_mouse]]
trace add variable ::reverse::bookmarks "write" [namespace code update_bookmarks]
}
proc disable_reversebar {} {
trace remove variable ::reverse::bookmarks "write" [namespace code update_bookmarks]
variable update_after_id
variable mouse_after_id
after cancel $update_after_id
after cancel $mouse_after_id
osd destroy reverse
}
proc update_reversebar {} {
catch {update_reversebar2}
variable reverse_bar_update_interval
variable update_after_id
set update_after_id [after realtime $reverse_bar_update_interval [namespace code update_reversebar]]
}
proc update_reversebar2 {} {
set stats [reverse status]
set x 2; set y 2
catch {lassign [osd info "reverse.int" -mousecoord] x y}
set mouseInside [expr {0 <= $x && $x <= 1 && 0 <= $y && $y <= 1}]
switch [dict get $stats status] {
"disabled" {
disable_reversebar
return
}
"replaying" {
osd configure reverse -fadeTarget 1.0 -fadeCurrent 1.0
osd configure reverse.int.bar \
-rgba "0x0044aaa0 0x2266dda0 0x0055cca0 0x55eeffa0"
}
"enabled" {
osd configure reverse.int.bar \
-rgba "0xff4400a0 0xdd3300a0 0xbb2200a0 0xcccc11a0"
if {$mouseInside || $::reversebar_fadeout_time == 0.0} {
osd configure reverse -fadePeriod 0.5 -fadeTarget 1.0
} else {
osd configure reverse -fadePeriod $::reversebar_fadeout_time -fadeTarget 0.0
}
}
}
set snapshots [dict get $stats snapshots]
set begin [dict get $stats begin]
set end [dict get $stats end]
set current [dict get $stats current]
set totLenght [expr {$end - $begin}]
set playLength [expr {$current - $begin}]
set reciprocalLength [expr {($totLenght != 0) ? (1.0 / $totLenght) : 0}]
set fraction [expr {$playLength * $reciprocalLength}]
# Check if cursor moved compared to previous update,
# if so reset counter (see below)
variable overlay_counter
variable prev_x
variable prev_y
if {$prev_x != $x || $prev_y != $y} {
set overlay_counter 0
set prev_x $x
set prev_y $y
}
# Display mouse-over time jump-indicator
# Hide when mouse hasn't moved for some time
if {$mouseInside && $overlay_counter < 8} {
variable overlayOffset
set mousetext [formatTime [expr {$x * $totLenght}]]
osd configure reverse.mousetime.text -text $mousetext -relx 0.05
set textsize [lindex [osd info reverse.mousetime.text -query-size] 0]
osd configure reverse.mousetime -rely $overlayOffset -relx [expr {$x - 0.05}] -w [expr {1.1 * $textsize}]
incr overlay_counter
} else {
osd configure reverse.mousetime -rely -100
}
# snapshots
set count 0
foreach snapshot $snapshots {
set name reverse.int.tick$count
if {![osd exists $name]} {
# create new if it doesn't exist yet
osd create rectangle $name -w 0.5 -relh 1 -rgba 0x444444ff -z 2
}
osd configure $name -relx [expr {($snapshot - $begin) * $reciprocalLength}]
incr count
}
# destroy all snapshots with higher count number
while {[osd destroy reverse.int.tick$count]} {
incr count
}
# bookmarks
set count 0
dict for {bookmarkname bookmarkval} $::reverse::bookmarks {
set name reverse.bookmark$count
if {![osd exists $name]} {
# create new if it doesn't exist yet
osd create rectangle $name \
-relx 0.5 -rely 1 -relh 0.75 -z 3 \
-rgba "0xffdd55e8 0xddbb33e8 0xccaa22e8 0xffdd55e8" \
-bordersize 0.5 -borderrgba 0xffff4480
osd create text $name.text -relx -0.05 \
-size 5 -z 3 -rgba 0x000000ff -text $bookmarkname
set textsize [lindex [osd info $name.text -query-size] 0]
osd configure $name -w [expr {1.1 * $textsize}]
}
osd configure $name -relx [expr {($bookmarkval - $begin) * $reciprocalLength}]
incr count
}
# Round fraction to avoid excessive redraws caused by rounding errors
set fraction [expr {round($fraction * 10000) / 10000.0}]
osd configure reverse.int.bar -relw $fraction
osd configure reverse.int.end -relx $fraction
osd configure reverse.int.text \
-text "[formatTime $playLength] / [formatTime $totLenght]"
}
proc check_mouse {} {
catch {
# click on reverse bar
set x 2; set y 2
catch {lassign [osd info "reverse.int" -mousecoord] x y}
if {0 <= $x && $x <= 1 && 0 <= $y && $y <= 1} {
set stats [reverse status]
set begin [dict get $stats begin]
set end [dict get $stats end]
reverse goto [expr {$begin + $x * ($end - $begin)}]
}
# click on bookmark
set count 0
dict for {bookmarkname bookmarkval} $::reverse::bookmarks {
set name reverse.bookmark$count
set x 2; set y 2
catch {lassign [osd info $name -mousecoord] x y}
if {0 <= $x && $x <= 1 && 0 <= $y && $y <= 1} {
reverse::jump_to_bookmark $bookmarkname
}
incr count
}
}
variable mouse_after_id
set mouse_after_id [after "mouse button1 down" [namespace code check_mouse]]
}
proc formatTime {seconds} {
format "%02d:%02d.%02d" [expr {int($seconds / 60)}] [expr {int($seconds) % 60}] [expr {int(fmod($seconds,1) * 100)}]
}
proc update_bookmarks {name1 name2 op} {
# remove all bookmarks to make sure the widget names start with 0
# and have no 'holes' in their sequence. They will be recreated
# when necessary in update_reversebar2
set count 0
while {[osd destroy reverse.bookmark$count]} {
incr count
}
update_reversebar
}
namespace export toggle_reversebar
namespace export enable_reversebar
namespace export disable_reversebar
} ;# namespace reverse_widgets
namespace import reverse::*
namespace import reverse_widgets::*
|