diff --git a/client/visualizer/src/main/sidebar.ts b/client/visualizer/src/main/sidebar.ts index 188d0999..e659aa55 100644 --- a/client/visualizer/src/main/sidebar.ts +++ b/client/visualizer/src/main/sidebar.ts @@ -124,11 +124,6 @@ export default class Sidebar { private initializeHelp(): HTMLDivElement { var innerHTML: string = ` - Beware of too much logging! -
- If your match has a significant amount of logging, please turn off log processing with - the L key.
-
Issues?
  1. Refresh (Ctrl-R or Command-R).
  2. @@ -148,12 +143,8 @@ export default class Sidebar { G - Toggle Grid
    N - Toggle Action Radius
    M - Toggle Sensor Radius
    - , - Toggle Detection Radius
    - H - Toggle Shorter Log Headers
    B - Toggle Interpolation
    - L - Toggle whether to process logs.
    Q - Toggle whether to profile matches.
    - Z - Toggle whether to rotate tall maps.
    [ - Hide/unhide sidebar navigation.

    Keyboard Shortcuts (Map Editor)
    Queue section to switch between them.

    - How to Use the Console
    - The console displays all System.out.println() data up to the current round. - You can filter teams by checking the boxes and robot IDs by clicking the - robot. You can also change the maximum number of rounds displayed in the - input box. Beware of doing too much logging! This slows down the client. - (WARNING: If you want to, say, suddenly display 3000 rounds - of data, pause the client first to prevent freezing.)

    How to Use the Profiler
    - Be cautious of memory issues when profiling large games. To disable profiling + The profiler is a competitor tool, and is not officially supported by Teh Devs. Be cautious of memory issues when profiling large games. To disable profiling on a profiled match file, press "Q".
    The profiler can be used to find out which methods are using a lot of bytecodes. To use it, tick the "Profiler enabled" checkbox in the @@ -216,7 +200,7 @@ export default class Sidebar { overlapping units. --> When you are happy with your map, click "Export". If you are directed to save your map, save it in the - /battlecode-scaffold-2021/maps directory of your scaffold. + /battlecode-scaffold-2022/maps directory of your scaffold. (Note: the name of your .map22 file must be the same as the name of your map.)

    diff --git a/client/visualizer/src/runner.ts b/client/visualizer/src/runner.ts index a527cab7..0befd541 100644 --- a/client/visualizer/src/runner.ts +++ b/client/visualizer/src/runner.ts @@ -488,10 +488,10 @@ export default class Runner { case 71: // "g" - Toogle grid view this.conf.showGrid = !this.conf.showGrid; break; - case 72: // "h" - Toggle short log header - this.conf.shorterLogHeader = !this.conf.shorterLogHeader; - this.console.updateLogHeader(); - break; + // case 72: // "h" - Toggle short log header + // this.conf.shorterLogHeader = !this.conf.shorterLogHeader; + // this.console.updateLogHeader(); + // break; case 65: // "a" - previous tournament Match this.previousTournamentState(); this.processTournamentState(); @@ -505,18 +505,18 @@ export default class Runner { this.stats.hideTourneyUpload(); this.showTourneyUpload = !this.showTourneyUpload; break; - case 76: // 'l' - Toggle process logs - this.conf.processLogs = !this.conf.processLogs; - this.console.setNotLoggingDiv(); - break; + // case 76: // 'l' - Toggle process logs + // this.conf.processLogs = !this.conf.processLogs; + // this.console.setNotLoggingDiv(); + // break; case 81: // 'q' - Toggle profiler if (this.profiler) { this.conf.doProfiling = !this.conf.doProfiling; this.profiler.setNotProfilingDiv(); } break; - case 90: // 'z' - Toggle rotate - this.conf.doRotate = !this.conf.doRotate; + // case 90: // 'z' - Toggle rotate + // this.conf.doRotate = !this.conf.doRotate; } }