diff --git a/src/main/java/eu/mihosoft/freerouting/gui/BoardPanel.java b/src/main/java/eu/mihosoft/freerouting/gui/BoardPanel.java index ddf12be..8135ddf 100644 --- a/src/main/java/eu/mihosoft/freerouting/gui/BoardPanel.java +++ b/src/main/java/eu/mihosoft/freerouting/gui/BoardPanel.java @@ -23,6 +23,7 @@ package eu.mihosoft.freerouting.gui; +import eu.mihosoft.freerouting.interactive.ActivityReplayFileScope; import eu.mihosoft.freerouting.interactive.BoardHandling; import eu.mihosoft.freerouting.interactive.ScreenMessages; @@ -298,9 +299,9 @@ public class BoardPanel extends javax.swing.JPanel new java.awt.Point((int)(new_center.getX() - delta.getX()), (int)(new_center.getY() - delta.getY())); move_mouse(new_mouse_location); repaint(); - this.board_handling.logfile.start_scope(eu.mihosoft.freerouting.interactive.LogfileScope.CENTER_DISPLAY); + this.board_handling.activityReplayFile.start_scope(ActivityReplayFileScope.CENTER_DISPLAY); eu.mihosoft.freerouting.geometry.planar.FloatPoint curr_corner = new eu.mihosoft.freerouting.geometry.planar.FloatPoint(p_new_center.getX(), p_new_center.getY()); - this.board_handling.logfile.add_corner(curr_corner); + this.board_handling.activityReplayFile.add_corner(curr_corner); } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/Logfile.java b/src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFile.java similarity index 73% rename from src/main/java/eu/mihosoft/freerouting/interactive/Logfile.java rename to src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFile.java index 7679b42..6f0f655 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/Logfile.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFile.java @@ -1,283 +1,283 @@ -/* - * Copyright (C) 2014 Alfons Wirtz - * website www.freerouting.net - * - * Copyright (C) 2017 Michael Hoffer - * Website www.freerouting.mihosoft.eu -* - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License at - * for more details. - */ - -package eu.mihosoft.freerouting.interactive; - -import eu.mihosoft.freerouting.geometry.planar.FloatPoint; -import eu.mihosoft.freerouting.logger.FRLogger; - -import java.io.File; -import java.io.FileWriter; -import java.io.IOException; -import java.io.InputStream; - -/** - * Logfile to track the actions in the eu.mihosoft.freerouting.interactive eu.mihosoft.freerouting.board handling - * for automatic replay. - * - * @author Alfons Wirtz - * - */ - -public class Logfile -{ - /** - * opens the logfile for reading - */ - public boolean start_read(InputStream p_input_stream) - { - this.scanner = new LogfileScanner(p_input_stream); - return (this.scanner != null); - } - - /** - * Reads the next corner from the logfile. - * Return null, if no valid corner is found. - */ - public FloatPoint read_corner() - { - - double x = 0; - double y = 0; - for (int i = 0; i < 2; ++i) - { - Object curr_ob = this.next_token(); - if (!(curr_ob instanceof Double)) - { - this.pending_token = curr_ob; - return null; - } - double f = ((Double) curr_ob).doubleValue(); - if (i == 0) - { - x = f; - } - else - { - y = f; - } - } - return new FloatPoint(x, y); - } - - /** - * closes the logfile after writing - */ - public void close_output() - { - if (this.file_writer != null) - { - try - { - this.file_writer.close(); - } - catch (IOException e) - { - FRLogger.logger.error("Unable to close logfile", e); - } - } - this.write_enabled = false; - } - - /** - * opens a logfile for writing - */ - public boolean start_write(File p_file) - { - try - { - this.file_writer = new FileWriter(p_file); - } - catch (IOException e) - { - FRLogger.logger.error("Unable to create logfile", e); - return false; - } - write_enabled = true; - return true; - } - - /** - * Marks the beginning of a new item in the output stream - */ - public void start_scope(LogfileScope p_logfile_scope) - { - if (write_enabled) - { - try - { - this.file_writer.write(p_logfile_scope.name); - this.file_writer.write("\n"); - } - catch (IOException e) - { - FRLogger.logger.error("Logfile.start_scope: write failed", e); - } - } - } - - /** - * Marks the beginning of a new scope in the output stream - * Writes also an integer value. - */ - public void start_scope(LogfileScope p_logfile_scope, int p_int_value) - { - start_scope(p_logfile_scope); - add_int(p_int_value); - } - - /** - * Marks the beginning of a new scope in the output stream - * Writes also 1, if p_boolean_value is true, or 0, if p_boolean_value is false; - */ - public void start_scope(LogfileScope p_logfile_scope, boolean p_boolean_value) - { - start_scope(p_logfile_scope); - int int_value; - if (p_boolean_value) - { - int_value = 1; - } - else - { - int_value = 0; - } - add_int(int_value); - } - - /** - * Marks the beginning of a new item in the output stream - * Writes also the start corner. - */ - public void start_scope(LogfileScope p_logfile_scope, FloatPoint p_start_corner) - { - start_scope(p_logfile_scope); - add_corner(p_start_corner); - } - - - - /** - * Reads the next scope identifier from the logfile. - * Returns null if no more item scope was found. - */ - public LogfileScope start_read_scope() - { - Object curr_ob = this.next_token(); - if (curr_ob == null) - { - return null; - } - if (!(curr_ob instanceof String)) - { - FRLogger.logger.error("Logfile.start_read_scope: String expected"); - this.pending_token = curr_ob; - return null; - } - LogfileScope result = LogfileScope.get_scope((String) curr_ob); - return result; - } - - /** - * adds an int to the logfile - */ - public void add_int(int p_int) - { - - if (write_enabled) - { - try - { - this.file_writer.write((Integer.valueOf(p_int)).toString()); - this.file_writer.write("\n"); - } - catch (IOException e) - { - FRLogger.logger.error("Unable to write integer to logfile", e); - } - } - } - - /** - * Reads the next int from the logfile. - * Returns -1, if no valid integer was found. - */ - public int read_int() - { - Object curr_ob = this.next_token(); - if (!(curr_ob instanceof Integer)) - { - FRLogger.logger.error("Logfile.read_int: Integer expected"); - this.pending_token = curr_ob; - return -1; - } - return (((Integer) curr_ob).intValue()); - } - - /** - * adds a FloatPoint to the logfile - */ - public void add_corner(FloatPoint p_corner) - { - if (write_enabled) - { - if (p_corner == null) - { - FRLogger.logger.error("Logfile.add_corner: p_corner is null"); - return; - } - try - { - this.file_writer.write((Double.valueOf(p_corner.x)).toString()); - this.file_writer.write(" "); - this.file_writer.write((Double.valueOf(p_corner.y)).toString()); - this.file_writer.write("\n"); - } - catch (IOException e) - { - FRLogger.logger.error("Unable to write to logfile while adding corner", e); - } - } - } - - private Object next_token() - { - if (this.pending_token != null) - { - Object result = this.pending_token; - this.pending_token = null; - return result; - } - try - { - Object result = this.scanner.next_token(); - return result; - } - catch (IOException e) - { - FRLogger.logger.error("Logfile.next_token: IO error scanning file", e); - return null; - } - } - - private LogfileScanner scanner = null; - private FileWriter file_writer = null; - private boolean write_enabled = false; - private Object pending_token = null; +/* + * Copyright (C) 2014 Alfons Wirtz + * website www.freerouting.net + * + * Copyright (C) 2017 Michael Hoffer + * Website www.freerouting.mihosoft.eu +* + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License at + * for more details. + */ + +package eu.mihosoft.freerouting.interactive; + +import eu.mihosoft.freerouting.geometry.planar.FloatPoint; +import eu.mihosoft.freerouting.logger.FRLogger; + +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import java.io.InputStream; + +/** + * ActivityReplayFile to track the actions in the eu.mihosoft.freerouting.interactive eu.mihosoft.freerouting.board handling + * for automatic replay. + * + * @author Alfons Wirtz + * + */ + +public class ActivityReplayFile +{ + /** + * opens the ActivityReplayFile for reading + */ + public boolean start_read(InputStream p_input_stream) + { + this.scanner = new ActivityReplayFileScanner(p_input_stream); + return (this.scanner != null); + } + + /** + * Reads the next corner from the ActivityReplayFile. + * Return null, if no valid corner is found. + */ + public FloatPoint read_corner() + { + + double x = 0; + double y = 0; + for (int i = 0; i < 2; ++i) + { + Object curr_ob = this.next_token(); + if (!(curr_ob instanceof Double)) + { + this.pending_token = curr_ob; + return null; + } + double f = ((Double) curr_ob).doubleValue(); + if (i == 0) + { + x = f; + } + else + { + y = f; + } + } + return new FloatPoint(x, y); + } + + /** + * closes the ActivityReplayFile after writing + */ + public void close_output() + { + if (this.file_writer != null) + { + try + { + this.file_writer.close(); + } + catch (IOException e) + { + FRLogger.logger.error("Unable to close the file", e); + } + } + this.write_enabled = false; + } + + /** + * opens a ActivityReplayFile for writing + */ + public boolean start_write(File p_file) + { + try + { + this.file_writer = new FileWriter(p_file); + } + catch (IOException e) + { + FRLogger.logger.error("Unable to create the file", e); + return false; + } + write_enabled = true; + return true; + } + + /** + * Marks the beginning of a new item in the output stream + */ + public void start_scope(ActivityReplayFileScope p_scope) + { + if (write_enabled) + { + try + { + this.file_writer.write(p_scope.name); + this.file_writer.write("\n"); + } + catch (IOException e) + { + FRLogger.logger.error("ActivityReplayFile.start_scope: write failed", e); + } + } + } + + /** + * Marks the beginning of a new scope in the output stream + * Writes also an integer value. + */ + public void start_scope(ActivityReplayFileScope p_scope, int p_int_value) + { + start_scope(p_scope); + add_int(p_int_value); + } + + /** + * Marks the beginning of a new scope in the output stream + * Writes also 1, if p_boolean_value is true, or 0, if p_boolean_value is false; + */ + public void start_scope(ActivityReplayFileScope p_scope, boolean p_boolean_value) + { + start_scope(p_scope); + int int_value; + if (p_boolean_value) + { + int_value = 1; + } + else + { + int_value = 0; + } + add_int(int_value); + } + + /** + * Marks the beginning of a new item in the output stream + * Writes also the start corner. + */ + public void start_scope(ActivityReplayFileScope p_scope, FloatPoint p_start_corner) + { + start_scope(p_scope); + add_corner(p_start_corner); + } + + + + /** + * Reads the next scope identifier from the ActivityReplayFile. + * Returns null if no more item scope was found. + */ + public ActivityReplayFileScope start_read_scope() + { + Object curr_ob = this.next_token(); + if (curr_ob == null) + { + return null; + } + if (!(curr_ob instanceof String)) + { + FRLogger.logger.error("ActivityReplayFile.start_read_scope: String expected"); + this.pending_token = curr_ob; + return null; + } + ActivityReplayFileScope result = ActivityReplayFileScope.get_scope((String) curr_ob); + return result; + } + + /** + * adds an int to the ActivityReplayFile + */ + public void add_int(int p_int) + { + + if (write_enabled) + { + try + { + this.file_writer.write((Integer.valueOf(p_int)).toString()); + this.file_writer.write("\n"); + } + catch (IOException e) + { + FRLogger.logger.error("Unable to write integer to the file", e); + } + } + } + + /** + * Reads the next int from the ActivityReplayFile. + * Returns -1, if no valid integer was found. + */ + public int read_int() + { + Object curr_ob = this.next_token(); + if (!(curr_ob instanceof Integer)) + { + FRLogger.logger.error("ActivityReplayFile.read_int: Integer expected"); + this.pending_token = curr_ob; + return -1; + } + return (((Integer) curr_ob).intValue()); + } + + /** + * adds a FloatPoint to the ActivityReplayFile + */ + public void add_corner(FloatPoint p_corner) + { + if (write_enabled) + { + if (p_corner == null) + { + FRLogger.logger.error("ActivityReplayFile.add_corner: p_corner is null"); + return; + } + try + { + this.file_writer.write((Double.valueOf(p_corner.x)).toString()); + this.file_writer.write(" "); + this.file_writer.write((Double.valueOf(p_corner.y)).toString()); + this.file_writer.write("\n"); + } + catch (IOException e) + { + FRLogger.logger.error("Unable to write to the file while adding corner", e); + } + } + } + + private Object next_token() + { + if (this.pending_token != null) + { + Object result = this.pending_token; + this.pending_token = null; + return result; + } + try + { + Object result = this.scanner.next_token(); + return result; + } + catch (IOException e) + { + FRLogger.logger.error("ActivityReplayFile.next_token: IO error scanning file", e); + return null; + } + } + + private ActivityReplayFileScanner scanner = null; + private FileWriter file_writer = null; + private boolean write_enabled = false; + private Object pending_token = null; } \ No newline at end of file diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/LogfileScanner.java b/src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFileScanner.java similarity index 99% rename from src/main/java/eu/mihosoft/freerouting/interactive/LogfileScanner.java rename to src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFileScanner.java index d7d40e9..f1aa26a 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/LogfileScanner.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFileScanner.java @@ -9,7 +9,7 @@ package eu.mihosoft.freerouting.interactive; * on 06.07.05 18:12 from the specification file * C:/Dokumente und Einstellungen/alfons/Eigene Dateien/freeroute/eu.mihosoft.freerouting.interactive/LogfileDescription.flex */ -class LogfileScanner { +class ActivityReplayFileScanner { /** This character denotes the end of file */ public static final int YYEOF = -1; @@ -224,7 +224,7 @@ class LogfileScanner { * * @param in the java.io.Reader to read input from. */ - LogfileScanner(java.io.Reader in) { + ActivityReplayFileScanner(java.io.Reader in) { this.zzReader = in; } @@ -234,7 +234,7 @@ class LogfileScanner { * * @param in the java.io.Inputstream to read input from. */ - LogfileScanner(java.io.InputStream in) { + ActivityReplayFileScanner(java.io.InputStream in) { this(new java.io.InputStreamReader(in)); } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/LogfileScope.java b/src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFileScope.java similarity index 61% rename from src/main/java/eu/mihosoft/freerouting/interactive/LogfileScope.java rename to src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFileScope.java index a8b4e6a..d02b6af 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/LogfileScope.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/ActivityReplayFileScope.java @@ -1,1312 +1,1312 @@ -/* - * Copyright (C) 2014 Alfons Wirtz - * website www.freerouting.net - * - * Copyright (C) 2017 Michael Hoffer - * Website www.freerouting.mihosoft.eu -* - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License at - * for more details. - * - * LogfileScope.java - * - * Created on 12. November 2003, 11:10 - */ - -package eu.mihosoft.freerouting.interactive; - -import eu.mihosoft.freerouting.geometry.planar.FloatPoint; - - -/** - * Enumeration class defining scopes in a logfile, - * Each Object of the class must implement the read_scope method. - * - * @author Alfons Wirtz - */ -public abstract class LogfileScope -{ - /** - * The only instances of the internal classes: - */ - - // scpopes logging undo and redo - public static final LogfileScope UNDO = new UndoScope("undo"); - public static final LogfileScope REDO = new RedoScope("redo"); - public static final LogfileScope GENERATE_SNAPSHOT = new GenerateSnapshotScope("generate_snapshot"); - - // Scopes for logging changes in the eu.mihosoft.freerouting.interactive setting: - public static final LogfileScope SET_CLEARANCE_COMPENSATION = new SetClearanceCompensationScope("set_clearance_compensation"); - public static final LogfileScope SET_DRAG_COMPONENTS_ENABLED = new SetDragComponentsEnabledScope("set_drag_componente_enabled"); - public static final LogfileScope SET_LAYER = new SetLayerScope("set_layer"); - public static final LogfileScope SET_MANUAL_TRACE_CLEARANCE_CLASS = new SetManualTraceClearanceClassScope("set_manual_trace_clearance_class"); - public static final LogfileScope SET_MANUAL_TRACE_HALF_WIDTH = new SetManualTraceHalfWidthScope("set_manual_trace_half_width"); - public static final LogfileScope SET_MANUAL_TRACEWITH_SELECTION = new SetManualTraceWidthSelectionScope("set_manual_tracewidth_selection"); - public static final LogfileScope SET_PULL_TIGHT_ACCURACY = new SetPullTightAccuracyScope("set_pull_tight_accuracy"); - public static final LogfileScope SET_PULL_TIGHT_REGION_WIDTH = new SetPullTightRegionWidthScope("set_pull_tight_region_width"); - public static final LogfileScope SET_PUSH_ENABLED = new SetPushEnabledScope("set_push_enabled"); - public static final LogfileScope SET_SNAP_ANGLE = new SetSnapAngleScope("set_snap_angle"); - public static final LogfileScope SET_SELECTABLE = new SetSelectableScope(" set_selectable"); - public static final LogfileScope SET_SELECT_ON_ALL_LAYER = new SetSelectOnAllLayerScope(" set_select_on_all_layer"); - public static final LogfileScope SET_STITCH_ROUTE = new SetStitchRouteScope(" set_stitch_route"); - public static final LogfileScope SET_TRACE_HALF_WIDTH = new SetTraceHalfWidthScope("set_trace_halfwidth"); - public static final LogfileScope SET_IGNORE_CONDUCTION = new SetIgnoreConductionScope("set_ignore_conduction"); - - // scopes for logging changes in the interactively selected set of items: - public static final LogfileScope START_SELECT = new StartSelectScope("start_select"); - public static final LogfileScope TOGGLE_SELECT = new ToggleSelectScope("toggle_select"); - public static final LogfileScope SELECT_REGION = new SelectRegionScope("select_region"); - public static final LogfileScope EXTEND_TO_WHOLE_CONNECTED_SETS = new ExtendToWholeConnectedSetsScope("extend_to_whole_connected_sets"); - public static final LogfileScope EXTEND_TO_WHOLE_CONNECTIONS = new ExtendToWholeConnectionsScope("extend_to_whole_connections"); - public static final LogfileScope EXTEND_TO_WHOLE_COMPONENTS = new ExtendToWholeComponentsScope("extend_to_whole_components"); - public static final LogfileScope EXTEND_TO_WHOLE_NETS = new ExtendToWholeNetsScope("extend_to_whole_nets"); - - // scopes for logging actions on the interactively selected set of items: - public static final LogfileScope ASSIGN_CLEARANCE_CLASS = new AssignClearanceClassScope("assign_clearance_class"); - public static final LogfileScope ASSIGN_SELECTED_TO_NEW_NET = new AssignSelectedToNewNetScope("assign_selected_to_new_net"); - public static final LogfileScope ASSIGN_SELECTED_TO_NEW_GROUP = new AssignSelectedToNewGroupScope("assign_selected_to_new_group"); - public static final LogfileScope FIX_SELECTED_ITEMS = new FixSelectedScope("fix_selected_items"); - public static final LogfileScope UNFIX_SELECTED_ITEMS = new UnfixSelectedScope("unfix_selected_items"); - public static final LogfileScope DELETE_SELECTED = new DeleteSelectedScope("delete_selected"); - public static final LogfileScope CUTOUT_ROUTE = new CutoutRouteScope("cutout_route"); - public static final LogfileScope OPTIMIZE_SELECTED = new OptimizeSelectedScope("optmize_selected"); - public static final LogfileScope AUTOROUTE_SELECTED = new AutorouteSelectedScope("autoroute_selected"); - public static final LogfileScope FANOUT_SELECTED = new FanoutSelectedScope("fanout_selected"); - - // scopes for logging eu.mihosoft.freerouting.interactive creating or moving items. - public static final LogfileScope COMPLETE_SCOPE = new CompleteScope("complete_scope"); - public static final LogfileScope CANCEL_SCOPE = new CancelScope("cancel_scope"); - public static final LogfileScope CREATING_TILE = new CreateTileScope("creating_tile"); - public static final LogfileScope CREATING_CIRCLE = new CreateCircleScope("creating_circle"); - public static final LogfileScope CREATING_POLYGONSHAPE = new CreatePolygonShapeScope("creating_polygonshape"); - public static final LogfileScope ADDING_HOLE = new AddHoleScope("adding_hole"); - public static final LogfileScope CREATING_TRACE = new CreateTraceScope("creating_trace"); - public static final LogfileScope CHANGE_LAYER = new ChangeLayerScope("change_layer"); - public static final LogfileScope DRAGGING_ITEMS = new DragItemScope("dragging_items"); - public static final LogfileScope MAKING_SPACE = new MakeSpaceScope("making_space"); - public static final LogfileScope COPYING_ITEMS = new CopyItemScope("copying_items"); - public static final LogfileScope MOVE_ITEMS = new MoveItemScope("moving_items"); - public static final LogfileScope TURN_90_DEGREE = new Turn90DegreeScope("turn_90_degree"); - public static final LogfileScope ROTATE = new RotateScope("rotate"); - public static final LogfileScope CHANGE_PLACEMENT_SIDE = new ChangePlacementSideScope("change_placement_side"); - public static final LogfileScope SET_ZOOM_WITH_WHEEL = new SetZoomWithWheelScope("set_zoom_with_wheel"); - - // scopes for logging displax changes - public static final LogfileScope CENTER_DISPLAY = new CenterDisplayScope("center_display"); - public static final LogfileScope ZOOM_FRAME = new ZoomFrameScope("zoom_frame"); - - - - - /** - * This array contains all (above) created objects of this class. - * Initialializing this static array automatically by the program - * did not work correctly, so the programmer has to keep it uptodate by hand. - */ - private static LogfileScope[] arr = - { - UNDO, REDO, GENERATE_SNAPSHOT, SET_CLEARANCE_COMPENSATION, SET_LAYER, SET_MANUAL_TRACE_CLEARANCE_CLASS, - SET_MANUAL_TRACE_HALF_WIDTH, SET_MANUAL_TRACEWITH_SELECTION, SET_SNAP_ANGLE, - SET_SELECTABLE, SET_SELECT_ON_ALL_LAYER, SET_STITCH_ROUTE, SET_TRACE_HALF_WIDTH, - SET_PULL_TIGHT_REGION_WIDTH, SET_PULL_TIGHT_ACCURACY, SET_PUSH_ENABLED, SET_IGNORE_CONDUCTION, - START_SELECT, TOGGLE_SELECT, SELECT_REGION, EXTEND_TO_WHOLE_CONNECTED_SETS, - EXTEND_TO_WHOLE_CONNECTIONS, EXTEND_TO_WHOLE_COMPONENTS, EXTEND_TO_WHOLE_NETS, - ASSIGN_SELECTED_TO_NEW_NET, ASSIGN_SELECTED_TO_NEW_GROUP, FIX_SELECTED_ITEMS, - UNFIX_SELECTED_ITEMS, DELETE_SELECTED, CUTOUT_ROUTE, OPTIMIZE_SELECTED, AUTOROUTE_SELECTED, - FANOUT_SELECTED, COMPLETE_SCOPE, CANCEL_SCOPE, CREATING_TILE, CREATING_CIRCLE, CREATING_POLYGONSHAPE, - ADDING_HOLE, CREATING_TRACE, CHANGE_LAYER, DRAGGING_ITEMS, MAKING_SPACE, COPYING_ITEMS, - MOVE_ITEMS, TURN_90_DEGREE, ROTATE, CHANGE_PLACEMENT_SIDE, SET_ZOOM_WITH_WHEEL, - ASSIGN_CLEARANCE_CLASS, CENTER_DISPLAY, ZOOM_FRAME - }; - - /** - * Reads the scope from the input logfile. - * Returns the active eu.mihosoft.freerouting.interactive state after reading the scope. - */ - public abstract InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling); - - /** - * Returns the LogfileScope with name p_name if it exists, else null. - */ - public static LogfileScope get_scope(String p_name) - { - for (int i = 0; i < arr.length; ++i) - { - if (arr[i].name.compareTo(p_name) == 0) - { - return arr[i]; - } - } - return null; - } - - /** prevents creating more instances */ - private LogfileScope(String p_name) - { - name = p_name; - } - - /** - * Scopes marking the end of a cornerlist scope. - */ - private boolean is_end_scope() - { - return this == COMPLETE_SCOPE || this == CANCEL_SCOPE; - } - - public final String name; - - /** - * A logfile scope containing a list of points. - */ - private static abstract class CornerlistScope extends LogfileScope - { - public CornerlistScope(String p_name) - { - super( p_name); - } - - /** - * Reads the next corner list scope togethet with its - * interiour scopes (layer change for example) from the input logfile. - * Returns the active eu.mihosoft.freerouting.interactive state after reading the scope. - */ - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - FloatPoint location = p_logfile.read_corner(); - if (location == null) - { - return null; - } - InteractiveState interactive_state = - this.start_scope(location, p_return_state, p_board_handling); - if (interactive_state == null) - { - return null; - } - p_board_handling.interactive_state = interactive_state; - InteractiveState return_state = p_return_state; - for (;;) - { - location = p_logfile.read_corner(); - if (location != null) - { - // process corner list - InteractiveState new_state = interactive_state.process_logfile_point(location); - if (new_state != interactive_state) - { - // state ended - return_state = new_state; - break; - } - } - else - { - // end of corner list, process the next interiour scope - LogfileScope next_scope = p_logfile.start_read_scope(); - if (next_scope == null) - { - break; // end of logfile - } - InteractiveState new_state = next_scope.read_scope(p_logfile, interactive_state, p_board_handling); - if(next_scope.is_end_scope()) - { - return_state = new_state; - break; - } - } - } - return return_state; - } - - /** - * Used for beginning a new CornerlistScope. - */ - public abstract InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling); - } - - private static class CreateTraceScope extends CornerlistScope - { - public CreateTraceScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - return RouteState.get_instance(p_location, p_return_state, - p_board_handling, null); - } - } - - private static class CreateTileScope extends CornerlistScope - { - public CreateTileScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - return TileConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); - } - } - - private static class CreateCircleScope extends CornerlistScope - { - public CreateCircleScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - return CircleConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); - } - } - - private static class CreatePolygonShapeScope extends CornerlistScope - { - public CreatePolygonShapeScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - return PolygonShapeConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); - } - } - - private static class AddHoleScope extends CornerlistScope - { - public AddHoleScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - return HoleConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); - } - } - - private static class DragItemScope extends CornerlistScope - { - public DragItemScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - return DragItemState.get_instance(p_location, p_return_state, p_board_handling, null); - } - } - - private static class MakeSpaceScope extends CornerlistScope - { - public MakeSpaceScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - return MakeSpaceState.get_instance(p_location, p_return_state, p_board_handling, null); - } - } - - private static class CopyItemScope extends CornerlistScope - { - public CopyItemScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - if (p_return_state instanceof SelectedItemState) - { - java.util.Collection item_list = ((SelectedItemState) p_return_state).get_item_list(); - result = CopyItemState.get_instance(p_location, item_list, p_return_state.return_state, p_board_handling, null); - } - else - { - System.out.println("CopyItemScope.start_scope: unexpected p_return_state"); - result = null; - - } - return result; - } - } - - private static class MoveItemScope extends CornerlistScope - { - public MoveItemScope(String p_name) - { - super( p_name); - } - - public InteractiveState start_scope( FloatPoint p_location, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - if (p_return_state instanceof SelectedItemState) - { - java.util.Collection item_list = ((SelectedItemState) p_return_state).get_item_list(); - result = MoveItemState.get_instance(p_location, item_list, p_return_state.return_state, p_board_handling, null); - } - else - { - System.out.println("MoveComponent.start_scope: unexpected p_return_state"); - result = null; - - } - return result; - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState new_state = super.read_scope(p_logfile, p_return_state, p_board_handling); - if (new_state == null) - { - return null; - } - return new_state.return_state; - } - } - - private static class Turn90DegreeScope extends LogfileScope - { - public Turn90DegreeScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (p_return_state instanceof MoveItemState) - { - int factor = p_logfile.read_int(); - ((MoveItemState)p_return_state).turn_90_degree(factor); - return p_return_state; - } - - System.out.println("Turn90DegreeScope.read_scope: unexpected p_return_state"); - return null; - } - } - - private static class RotateScope extends LogfileScope - { - public RotateScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (p_return_state instanceof MoveItemState) - { - int angle = p_logfile.read_int(); - ((MoveItemState)p_return_state).rotate(angle); - return p_return_state; - } - - System.out.println("RotateScope.read_scope: unexpected p_return_state"); - return null; - } - } - - private static class ChangePlacementSideScope extends LogfileScope - { - public ChangePlacementSideScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (p_return_state instanceof MoveItemState) - { - ((MoveItemState)p_return_state).change_placement_side(); - return p_return_state; - } - - System.out.println("ChangePlacementSideScope.read_scope: unexpected p_return_state"); - return null; - } - } - - private static class SetZoomWithWheelScope extends LogfileScope - { - public SetZoomWithWheelScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (p_return_state instanceof MoveItemState) - { - int int_value = p_logfile.read_int(); - if (int_value == 0) - { - p_board_handling.settings.set_zoom_with_wheel(false); - } - else - { - p_board_handling.settings.set_zoom_with_wheel(true); - } - return p_return_state; - } - - System.out.println("SetRotateWithWheelScope.read_scope: unexpected p_return_state"); - return null; - } - } - - private static class ChangeLayerScope extends LogfileScope - { - public ChangeLayerScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_layer = p_logfile.read_int(); - p_return_state.change_layer_action(new_layer); - return p_return_state; - } - } - - private static class StartSelectScope extends LogfileScope - { - public StartSelectScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - while (!(p_return_state instanceof MenuState)) - { - System.out.println("StartSelectScope.read_scope: menu state expected"); - p_return_state = p_return_state.return_state; - } - FloatPoint location = p_logfile.read_corner(); - if (location == null) - { - System.out.println("StartSelectScope.read_scope: unable to read corner"); - return null; - } - return ((MenuState) p_return_state).select_items(location); - } - } - - private static class ToggleSelectScope extends LogfileScope - { - public ToggleSelectScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (!(p_return_state instanceof SelectedItemState)) - { - System.out.println("ToggleSelectScope.read_scope: SelectedItemState expected"); - return null; - } - FloatPoint location = p_logfile.read_corner(); - if (location == null) - { - System.out.println("ToggleSelectScope.read_scope: unable to read corner"); - return null; - } - return ((SelectedItemState)p_return_state).toggle_select(location); - } - } - - private static class SelectRegionScope extends LogfileScope - { - public SelectRegionScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (!(p_return_state instanceof MenuState)) - { - System.out.println("SelectRegionScope.read_scope: menu state expected"); - } - FloatPoint lower_left = p_logfile.read_corner(); - if (lower_left == null) - { - System.out.println("SelectRegionScope.read_scope: unable to read corner"); - return null; - } - InteractiveState curr_state = - SelectItemsInRegionState.get_instance(lower_left, p_return_state, p_board_handling, null); - FloatPoint upper_right = p_logfile.read_corner(); - if (upper_right == null) - { - // user may have cancelled the state after the first corner - return curr_state; - } - p_board_handling.set_current_mouse_position(upper_right); - return curr_state.complete(); - } - } - - private static class CutoutRouteScope extends LogfileScope - { - public CutoutRouteScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, - InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (!(p_return_state instanceof SelectedItemState)) - { - System.out.println("CutoutRouteScope.read_scope: electedItemState expected"); - } - java.util.Collection item_list = ((SelectedItemState) p_return_state).get_item_list(); - FloatPoint lower_left = p_logfile.read_corner(); - if (lower_left == null) - { - System.out.println("CutoutRouteScope.read_scope: unable to read corner"); - return null; - } - InteractiveState curr_state = - CutoutRouteState.get_instance(item_list, lower_left, p_return_state.return_state, p_board_handling, null); - FloatPoint upper_right = p_logfile.read_corner(); - if (upper_right == null) - { - // user may have cancelled the state after the first corner - return curr_state; - } - p_board_handling.set_current_mouse_position(upper_right); - return curr_state.complete(); - } - } - - private static class DeleteSelectedScope extends LogfileScope - { - public DeleteSelectedScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - - if (p_return_state instanceof SelectedItemState) - { - result = ((SelectedItemState)p_return_state).delete_items(); - } - else - { - System.out.println("DeleteSelectedScope.read_scope: SelectedItemState expected"); - result = null; - } - return result; - } - } - - private static class OptimizeSelectedScope extends LogfileScope - { - public OptimizeSelectedScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - - if (p_return_state instanceof SelectedItemState) - { - result = ((SelectedItemState)p_return_state).pull_tight(null); - } - else - { - System.out.println("DeleteSelectedScope.read_scope: SelectedItemState expected"); - result = null; - } - return result; - } - } - - private static class AutorouteSelectedScope extends LogfileScope - { - public AutorouteSelectedScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - - if (p_return_state instanceof SelectedItemState) - { - result = ((SelectedItemState)p_return_state).autoroute(null); - } - else - { - System.out.println("AutorouteSelectedScope.read_scope: SelectedItemState expected"); - result = null; - } - return result; - } - } - - private static class FanoutSelectedScope extends LogfileScope - { - public FanoutSelectedScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - - if (p_return_state instanceof SelectedItemState) - { - result = ((SelectedItemState)p_return_state).fanout(null); - } - else - { - System.out.println("FanoutSelectedScope.read_scope: SelectedItemState expected"); - result = null; - } - return result; - } - } - - /** - * Scope calling the single method SelectedItemState.assign_clearance_class - */ - private static class AssignClearanceClassScope extends LogfileScope - { - public AssignClearanceClassScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - - if (p_return_state instanceof SelectedItemState) - { - int int_value = p_logfile.read_int(); - result = ((SelectedItemState)p_return_state).assign_clearance_class(int_value); - } - else - { - System.out.println("AssignSelectedToNewNetScope.read_scope: SelectedItemState expected"); - result = null; - } - return result; - } - } - - - /** - * Scope calling the single method SelectedItemState.assign_items_to_new_net - */ - private static class AssignSelectedToNewNetScope extends LogfileScope - { - public AssignSelectedToNewNetScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - - if (p_return_state instanceof SelectedItemState) - { - result = ((SelectedItemState)p_return_state).assign_items_to_new_net(); - } - else - { - System.out.println("AssignSelectedToNewNetScope.read_scope: SelectedItemState expected"); - result = null; - } - return result; - } - } - - /** - * Scope calling the single method SelectedItemState.assign_items_to_new_group - */ - private static class AssignSelectedToNewGroupScope extends LogfileScope - { - public AssignSelectedToNewGroupScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState result; - - if (p_return_state instanceof SelectedItemState) - { - result = ((SelectedItemState)p_return_state).assign_items_to_new_group(); - } - else - { - System.out.println("AssignSelectedToNewGroupScope.read_scope: SelectedItemState expected"); - result = null; - } - return result; - } - } - - private static class ExtendToWholeConnectedSetsScope extends LogfileScope - { - public ExtendToWholeConnectedSetsScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState return_state = null; - if (p_return_state instanceof SelectedItemState) - { - return_state = ((SelectedItemState)p_return_state).extent_to_whole_connected_sets(); - } - else - { - System.out.println("ExtendToWholeConnectedSetsScope.read_scope: SelectedItemState expected"); - } - return return_state; - } - } - - private static class ExtendToWholeComponentsScope extends LogfileScope - { - public ExtendToWholeComponentsScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState return_state = null; - if (p_return_state instanceof SelectedItemState) - { - return_state = ((SelectedItemState)p_return_state).extent_to_whole_components(); - } - else - { - System.out.println("ExtendToWholeGroupsScope.read_scope: SelectedItemState expected"); - } - return return_state; - } - } - - private static class ExtendToWholeNetsScope extends LogfileScope - { - public ExtendToWholeNetsScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState return_state = null; - if (p_return_state instanceof SelectedItemState) - { - return_state = ((SelectedItemState)p_return_state).extent_to_whole_nets(); - } - else - { - System.out.println("ExtendToWholeNetsScope.read_scope: SelectedItemState expected"); - } - return return_state; - } - } - - private static class ExtendToWholeConnectionsScope extends LogfileScope - { - public ExtendToWholeConnectionsScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - InteractiveState return_state = null; - if (p_return_state instanceof SelectedItemState) - { - return_state = ((SelectedItemState)p_return_state).extent_to_whole_connections(); - } - else - { - System.out.println("ExtendToWholeConnectionsScope.read_scope: SelectedItemState expected"); - } - return return_state; - } - } - - private static class FixSelectedScope extends LogfileScope - { - public FixSelectedScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (p_return_state instanceof SelectedItemState) - { - ((SelectedItemState)p_return_state).fix_items(); - } - else - { - System.out.println("FixSelectedScope.read_scope: SelectedItemState expected"); - } - return p_return_state; - } - } - - private static class UnfixSelectedScope extends LogfileScope - { - public UnfixSelectedScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - if (p_return_state instanceof SelectedItemState) - { - ((SelectedItemState)p_return_state).unfix_items(); - } - else - { - System.out.println("UnfixSelectedScope.read_scope: SelectedItemState expected"); - } - return p_return_state; - } - } - - private static class CompleteScope extends LogfileScope - { - public CompleteScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - return p_return_state.complete(); - } - } - - private static class CancelScope extends LogfileScope - { - public CancelScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - return p_return_state.cancel(); - } - } - - private static class SetTraceHalfWidthScope extends LogfileScope - { - public SetTraceHalfWidthScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int layer = p_logfile.read_int(); - int new_half_width = p_logfile.read_int(); - p_board_handling.get_routing_board().rules.set_default_trace_half_width(layer, new_half_width); - return p_return_state; - } - } - - private static class SetPullTightRegionWidthScope extends LogfileScope - { - public SetPullTightRegionWidthScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_tidy_width = p_logfile.read_int(); - p_board_handling.settings.trace_pull_tight_region_width = new_tidy_width; - return p_return_state; - } - } - - private static class SetPushEnabledScope extends LogfileScope - { - public SetPushEnabledScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int int_value = p_logfile.read_int(); - if ( int_value == 0) - { - p_board_handling.settings.push_enabled = false; - } - else - { - p_board_handling.settings.push_enabled = true; - } - return p_return_state; - } - } - - private static class SetDragComponentsEnabledScope extends LogfileScope - { - public SetDragComponentsEnabledScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int int_value = p_logfile.read_int(); - if ( int_value == 0) - { - p_board_handling.settings.drag_components_enabled = false; - } - else - { - p_board_handling.settings.drag_components_enabled = true; - } - return p_return_state; - } - } - - private static class SetPullTightAccuracyScope extends LogfileScope - { - public SetPullTightAccuracyScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_accuracy = p_logfile.read_int(); - p_board_handling.settings.trace_pull_tight_accuracy = new_accuracy; - return p_return_state; - } - } - - private static class SetIgnoreConductionScope extends LogfileScope - { - public SetIgnoreConductionScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int int_value = p_logfile.read_int(); - p_board_handling.get_routing_board().change_conduction_is_obstacle(int_value == 0); - return p_return_state; - } - } - - private static class SetLayerScope extends LogfileScope - { - public SetLayerScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_layer = p_logfile.read_int(); - p_board_handling.set_layer(new_layer); - return p_return_state; - } - } - - private static class SetClearanceCompensationScope extends LogfileScope - { - public SetClearanceCompensationScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_clearance_type = p_logfile.read_int(); - if (new_clearance_type == 0) - { - p_board_handling.get_routing_board().search_tree_manager.set_clearance_compensation_used(false); - } - else - { - p_board_handling.get_routing_board().search_tree_manager.set_clearance_compensation_used(true); - } - return p_return_state; - } - } - - private static class SetManualTraceHalfWidthScope extends LogfileScope - { - public SetManualTraceHalfWidthScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int layer = p_logfile.read_int(); - int half_width = p_logfile.read_int(); - p_board_handling.settings.manual_trace_half_width_arr[layer] = half_width; - return p_return_state; - } - } - - private static class SetManualTraceClearanceClassScope extends LogfileScope - { - public SetManualTraceClearanceClassScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int index = p_logfile.read_int(); - p_board_handling.settings.manual_trace_clearance_class = index; - return p_return_state; - } - } - - private static class SetManualTraceWidthSelectionScope extends LogfileScope - { - public SetManualTraceWidthSelectionScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int manual_selection = p_logfile.read_int(); - if ( manual_selection == 0) - { - p_board_handling.settings.manual_rule_selection = false; - } - else - { - p_board_handling.settings.manual_rule_selection = true; - } - return p_return_state; - } - } - - private static class SetSnapAngleScope extends LogfileScope - { - public SetSnapAngleScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_snap_angle_no = p_logfile.read_int(); - p_board_handling.get_routing_board().rules.set_trace_angle_restriction(eu.mihosoft.freerouting.board.AngleRestriction.arr[new_snap_angle_no]); - return p_return_state; - } - } - - private static class SetSelectOnAllLayerScope extends LogfileScope - { - public SetSelectOnAllLayerScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_value = p_logfile.read_int(); - p_board_handling.settings.select_on_all_visible_layers = (new_value != 0); - return p_return_state; - } - } - - private static class SetStitchRouteScope extends LogfileScope - { - public SetStitchRouteScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int new_value = p_logfile.read_int(); - p_board_handling.settings.is_stitch_route = (new_value != 0); - return p_return_state; - } - } - - - private static class SetSelectableScope extends LogfileScope - { - public SetSelectableScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - int item_type_no = p_logfile.read_int(); - int selection = p_logfile.read_int(); - eu.mihosoft.freerouting.board.ItemSelectionFilter.SelectableChoices item_type = eu.mihosoft.freerouting.board.ItemSelectionFilter.SelectableChoices.values()[item_type_no]; - if (selection == 0) - { - p_board_handling.settings.item_selection_filter.set_selected(item_type, false); - if (p_return_state instanceof SelectedItemState) - { - ((SelectedItemState) p_return_state).filter(); - } - } - else - { - p_board_handling.settings.item_selection_filter.set_selected(item_type, true); - } - return p_return_state; - } - } - - - private static class UndoScope extends LogfileScope - { - public UndoScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - p_board_handling.get_routing_board().undo(null); - p_board_handling.repaint(); - return p_return_state; - } - } - - private static class RedoScope extends LogfileScope - { - public RedoScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - p_board_handling.get_routing_board().redo(null); - p_board_handling.repaint(); - return p_return_state; - } - } - - private static class GenerateSnapshotScope extends LogfileScope - { - public GenerateSnapshotScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - p_board_handling.get_routing_board().generate_snapshot(); - return p_return_state; - } - } - - private static class CenterDisplayScope extends LogfileScope - { - public CenterDisplayScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - FloatPoint curr_location = p_logfile.read_corner(); - java.awt.geom.Point2D new_center = new java.awt.geom.Point2D.Double(curr_location.x, curr_location.y); - p_board_handling.get_panel().center_display(new_center); - return p_return_state; - } - } - - private static class ZoomFrameScope extends LogfileScope - { - public ZoomFrameScope(String p_name) - { - super( p_name); - } - - public InteractiveState read_scope(Logfile p_logfile, InteractiveState p_return_state, BoardHandling p_board_handling) - { - java.awt.geom.Point2D lower_left = - p_board_handling.graphics_context.coordinate_transform.board_to_screen(p_logfile.read_corner()); - java.awt.geom.Point2D upper_right = p_board_handling.graphics_context.coordinate_transform.board_to_screen(p_logfile.read_corner()); - p_board_handling.get_panel().zoom_frame(lower_left, upper_right); - p_board_handling.repaint(); - return p_return_state; - } - } -} - - +/* + * Copyright (C) 2014 Alfons Wirtz + * website www.freerouting.net + * + * Copyright (C) 2017 Michael Hoffer + * Website www.freerouting.mihosoft.eu +* + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License at + * for more details. + * + * LogfileScope.java + * + * Created on 12. November 2003, 11:10 + */ + +package eu.mihosoft.freerouting.interactive; + +import eu.mihosoft.freerouting.geometry.planar.FloatPoint; + + +/** + * Enumeration class defining scopes in a logfile, + * Each Object of the class must implement the read_scope method. + * + * @author Alfons Wirtz + */ +public abstract class ActivityReplayFileScope +{ + /** + * The only instances of the internal classes: + */ + + // scpopes logging undo and redo + public static final ActivityReplayFileScope UNDO = new UndoScope("undo"); + public static final ActivityReplayFileScope REDO = new RedoScope("redo"); + public static final ActivityReplayFileScope GENERATE_SNAPSHOT = new GenerateSnapshotScope("generate_snapshot"); + + // Scopes for logging changes in the eu.mihosoft.freerouting.interactive setting: + public static final ActivityReplayFileScope SET_CLEARANCE_COMPENSATION = new SetClearanceCompensationScope("set_clearance_compensation"); + public static final ActivityReplayFileScope SET_DRAG_COMPONENTS_ENABLED = new SetDragComponentsEnabledScope("set_drag_componente_enabled"); + public static final ActivityReplayFileScope SET_LAYER = new SetLayerScope("set_layer"); + public static final ActivityReplayFileScope SET_MANUAL_TRACE_CLEARANCE_CLASS = new SetManualTraceClearanceClassScope("set_manual_trace_clearance_class"); + public static final ActivityReplayFileScope SET_MANUAL_TRACE_HALF_WIDTH = new SetManualTraceHalfWidthScope("set_manual_trace_half_width"); + public static final ActivityReplayFileScope SET_MANUAL_TRACEWITH_SELECTION = new SetManualTraceWidthSelectionScope("set_manual_tracewidth_selection"); + public static final ActivityReplayFileScope SET_PULL_TIGHT_ACCURACY = new SetPullTightAccuracyScope("set_pull_tight_accuracy"); + public static final ActivityReplayFileScope SET_PULL_TIGHT_REGION_WIDTH = new SetPullTightRegionWidthScope("set_pull_tight_region_width"); + public static final ActivityReplayFileScope SET_PUSH_ENABLED = new SetPushEnabledScope("set_push_enabled"); + public static final ActivityReplayFileScope SET_SNAP_ANGLE = new SetSnapAngleScope("set_snap_angle"); + public static final ActivityReplayFileScope SET_SELECTABLE = new SetSelectableScope(" set_selectable"); + public static final ActivityReplayFileScope SET_SELECT_ON_ALL_LAYER = new SetSelectOnAllLayerScope(" set_select_on_all_layer"); + public static final ActivityReplayFileScope SET_STITCH_ROUTE = new SetStitchRouteScope(" set_stitch_route"); + public static final ActivityReplayFileScope SET_TRACE_HALF_WIDTH = new SetTraceHalfWidthScope("set_trace_halfwidth"); + public static final ActivityReplayFileScope SET_IGNORE_CONDUCTION = new SetIgnoreConductionScope("set_ignore_conduction"); + + // scopes for logging changes in the interactively selected set of items: + public static final ActivityReplayFileScope START_SELECT = new StartSelectScope("start_select"); + public static final ActivityReplayFileScope TOGGLE_SELECT = new ToggleSelectScope("toggle_select"); + public static final ActivityReplayFileScope SELECT_REGION = new SelectRegionScope("select_region"); + public static final ActivityReplayFileScope EXTEND_TO_WHOLE_CONNECTED_SETS = new ExtendToWholeConnectedSetsScope("extend_to_whole_connected_sets"); + public static final ActivityReplayFileScope EXTEND_TO_WHOLE_CONNECTIONS = new ExtendToWholeConnectionsScope("extend_to_whole_connections"); + public static final ActivityReplayFileScope EXTEND_TO_WHOLE_COMPONENTS = new ExtendToWholeComponentsScope("extend_to_whole_components"); + public static final ActivityReplayFileScope EXTEND_TO_WHOLE_NETS = new ExtendToWholeNetsScope("extend_to_whole_nets"); + + // scopes for logging actions on the interactively selected set of items: + public static final ActivityReplayFileScope ASSIGN_CLEARANCE_CLASS = new AssignClearanceClassScope("assign_clearance_class"); + public static final ActivityReplayFileScope ASSIGN_SELECTED_TO_NEW_NET = new AssignSelectedToNewNetScope("assign_selected_to_new_net"); + public static final ActivityReplayFileScope ASSIGN_SELECTED_TO_NEW_GROUP = new AssignSelectedToNewGroupScope("assign_selected_to_new_group"); + public static final ActivityReplayFileScope FIX_SELECTED_ITEMS = new FixSelectedScope("fix_selected_items"); + public static final ActivityReplayFileScope UNFIX_SELECTED_ITEMS = new UnfixSelectedScope("unfix_selected_items"); + public static final ActivityReplayFileScope DELETE_SELECTED = new DeleteSelectedScope("delete_selected"); + public static final ActivityReplayFileScope CUTOUT_ROUTE = new CutoutRouteScope("cutout_route"); + public static final ActivityReplayFileScope OPTIMIZE_SELECTED = new OptimizeSelectedScope("optmize_selected"); + public static final ActivityReplayFileScope AUTOROUTE_SELECTED = new AutorouteSelectedScope("autoroute_selected"); + public static final ActivityReplayFileScope FANOUT_SELECTED = new FanoutSelectedScope("fanout_selected"); + + // scopes for logging eu.mihosoft.freerouting.interactive creating or moving items. + public static final ActivityReplayFileScope COMPLETE_SCOPE = new CompleteScope("complete_scope"); + public static final ActivityReplayFileScope CANCEL_SCOPE = new CancelScope("cancel_scope"); + public static final ActivityReplayFileScope CREATING_TILE = new CreateTileScope("creating_tile"); + public static final ActivityReplayFileScope CREATING_CIRCLE = new CreateCircleScope("creating_circle"); + public static final ActivityReplayFileScope CREATING_POLYGONSHAPE = new CreatePolygonShapeScope("creating_polygonshape"); + public static final ActivityReplayFileScope ADDING_HOLE = new AddHoleScope("adding_hole"); + public static final ActivityReplayFileScope CREATING_TRACE = new CreateTraceScope("creating_trace"); + public static final ActivityReplayFileScope CHANGE_LAYER = new ChangeLayerScope("change_layer"); + public static final ActivityReplayFileScope DRAGGING_ITEMS = new DragItemScope("dragging_items"); + public static final ActivityReplayFileScope MAKING_SPACE = new MakeSpaceScope("making_space"); + public static final ActivityReplayFileScope COPYING_ITEMS = new CopyItemScope("copying_items"); + public static final ActivityReplayFileScope MOVE_ITEMS = new MoveItemScope("moving_items"); + public static final ActivityReplayFileScope TURN_90_DEGREE = new Turn90DegreeScope("turn_90_degree"); + public static final ActivityReplayFileScope ROTATE = new RotateScope("rotate"); + public static final ActivityReplayFileScope CHANGE_PLACEMENT_SIDE = new ChangePlacementSideScope("change_placement_side"); + public static final ActivityReplayFileScope SET_ZOOM_WITH_WHEEL = new SetZoomWithWheelScope("set_zoom_with_wheel"); + + // scopes for logging displax changes + public static final ActivityReplayFileScope CENTER_DISPLAY = new CenterDisplayScope("center_display"); + public static final ActivityReplayFileScope ZOOM_FRAME = new ZoomFrameScope("zoom_frame"); + + + + + /** + * This array contains all (above) created objects of this class. + * Initialializing this static array automatically by the program + * did not work correctly, so the programmer has to keep it uptodate by hand. + */ + private static ActivityReplayFileScope[] arr = + { + UNDO, REDO, GENERATE_SNAPSHOT, SET_CLEARANCE_COMPENSATION, SET_LAYER, SET_MANUAL_TRACE_CLEARANCE_CLASS, + SET_MANUAL_TRACE_HALF_WIDTH, SET_MANUAL_TRACEWITH_SELECTION, SET_SNAP_ANGLE, + SET_SELECTABLE, SET_SELECT_ON_ALL_LAYER, SET_STITCH_ROUTE, SET_TRACE_HALF_WIDTH, + SET_PULL_TIGHT_REGION_WIDTH, SET_PULL_TIGHT_ACCURACY, SET_PUSH_ENABLED, SET_IGNORE_CONDUCTION, + START_SELECT, TOGGLE_SELECT, SELECT_REGION, EXTEND_TO_WHOLE_CONNECTED_SETS, + EXTEND_TO_WHOLE_CONNECTIONS, EXTEND_TO_WHOLE_COMPONENTS, EXTEND_TO_WHOLE_NETS, + ASSIGN_SELECTED_TO_NEW_NET, ASSIGN_SELECTED_TO_NEW_GROUP, FIX_SELECTED_ITEMS, + UNFIX_SELECTED_ITEMS, DELETE_SELECTED, CUTOUT_ROUTE, OPTIMIZE_SELECTED, AUTOROUTE_SELECTED, + FANOUT_SELECTED, COMPLETE_SCOPE, CANCEL_SCOPE, CREATING_TILE, CREATING_CIRCLE, CREATING_POLYGONSHAPE, + ADDING_HOLE, CREATING_TRACE, CHANGE_LAYER, DRAGGING_ITEMS, MAKING_SPACE, COPYING_ITEMS, + MOVE_ITEMS, TURN_90_DEGREE, ROTATE, CHANGE_PLACEMENT_SIDE, SET_ZOOM_WITH_WHEEL, + ASSIGN_CLEARANCE_CLASS, CENTER_DISPLAY, ZOOM_FRAME + }; + + /** + * Reads the scope from the input logfile. + * Returns the active eu.mihosoft.freerouting.interactive state after reading the scope. + */ + public abstract InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling); + + /** + * Returns the LogfileScope with name p_name if it exists, else null. + */ + public static ActivityReplayFileScope get_scope(String p_name) + { + for (int i = 0; i < arr.length; ++i) + { + if (arr[i].name.compareTo(p_name) == 0) + { + return arr[i]; + } + } + return null; + } + + /** prevents creating more instances */ + private ActivityReplayFileScope(String p_name) + { + name = p_name; + } + + /** + * Scopes marking the end of a cornerlist scope. + */ + private boolean is_end_scope() + { + return this == COMPLETE_SCOPE || this == CANCEL_SCOPE; + } + + public final String name; + + /** + * A logfile scope containing a list of points. + */ + private static abstract class CornerlistScope extends ActivityReplayFileScope + { + public CornerlistScope(String p_name) + { + super( p_name); + } + + /** + * Reads the next corner list scope togethet with its + * interiour scopes (layer change for example) from the input logfile. + * Returns the active eu.mihosoft.freerouting.interactive state after reading the scope. + */ + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + FloatPoint location = p_activityReplayFile.read_corner(); + if (location == null) + { + return null; + } + InteractiveState interactive_state = + this.start_scope(location, p_return_state, p_board_handling); + if (interactive_state == null) + { + return null; + } + p_board_handling.interactive_state = interactive_state; + InteractiveState return_state = p_return_state; + for (;;) + { + location = p_activityReplayFile.read_corner(); + if (location != null) + { + // process corner list + InteractiveState new_state = interactive_state.process_logfile_point(location); + if (new_state != interactive_state) + { + // state ended + return_state = new_state; + break; + } + } + else + { + // end of corner list, process the next interiour scope + ActivityReplayFileScope next_scope = p_activityReplayFile.start_read_scope(); + if (next_scope == null) + { + break; // end of logfile + } + InteractiveState new_state = next_scope.read_scope(p_activityReplayFile, interactive_state, p_board_handling); + if(next_scope.is_end_scope()) + { + return_state = new_state; + break; + } + } + } + return return_state; + } + + /** + * Used for beginning a new CornerlistScope. + */ + public abstract InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling); + } + + private static class CreateTraceScope extends CornerlistScope + { + public CreateTraceScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + return RouteState.get_instance(p_location, p_return_state, + p_board_handling, null); + } + } + + private static class CreateTileScope extends CornerlistScope + { + public CreateTileScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + return TileConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); + } + } + + private static class CreateCircleScope extends CornerlistScope + { + public CreateCircleScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + return CircleConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); + } + } + + private static class CreatePolygonShapeScope extends CornerlistScope + { + public CreatePolygonShapeScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + return PolygonShapeConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); + } + } + + private static class AddHoleScope extends CornerlistScope + { + public AddHoleScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + return HoleConstructionState.get_instance(p_location, p_return_state, p_board_handling, null); + } + } + + private static class DragItemScope extends CornerlistScope + { + public DragItemScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + return DragItemState.get_instance(p_location, p_return_state, p_board_handling, null); + } + } + + private static class MakeSpaceScope extends CornerlistScope + { + public MakeSpaceScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + return MakeSpaceState.get_instance(p_location, p_return_state, p_board_handling, null); + } + } + + private static class CopyItemScope extends CornerlistScope + { + public CopyItemScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + if (p_return_state instanceof SelectedItemState) + { + java.util.Collection item_list = ((SelectedItemState) p_return_state).get_item_list(); + result = CopyItemState.get_instance(p_location, item_list, p_return_state.return_state, p_board_handling, null); + } + else + { + System.out.println("CopyItemScope.start_scope: unexpected p_return_state"); + result = null; + + } + return result; + } + } + + private static class MoveItemScope extends CornerlistScope + { + public MoveItemScope(String p_name) + { + super( p_name); + } + + public InteractiveState start_scope( FloatPoint p_location, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + if (p_return_state instanceof SelectedItemState) + { + java.util.Collection item_list = ((SelectedItemState) p_return_state).get_item_list(); + result = MoveItemState.get_instance(p_location, item_list, p_return_state.return_state, p_board_handling, null); + } + else + { + System.out.println("MoveComponent.start_scope: unexpected p_return_state"); + result = null; + + } + return result; + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState new_state = super.read_scope(p_activityReplayFile, p_return_state, p_board_handling); + if (new_state == null) + { + return null; + } + return new_state.return_state; + } + } + + private static class Turn90DegreeScope extends ActivityReplayFileScope + { + public Turn90DegreeScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (p_return_state instanceof MoveItemState) + { + int factor = p_activityReplayFile.read_int(); + ((MoveItemState)p_return_state).turn_90_degree(factor); + return p_return_state; + } + + System.out.println("Turn90DegreeScope.read_scope: unexpected p_return_state"); + return null; + } + } + + private static class RotateScope extends ActivityReplayFileScope + { + public RotateScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (p_return_state instanceof MoveItemState) + { + int angle = p_activityReplayFile.read_int(); + ((MoveItemState)p_return_state).rotate(angle); + return p_return_state; + } + + System.out.println("RotateScope.read_scope: unexpected p_return_state"); + return null; + } + } + + private static class ChangePlacementSideScope extends ActivityReplayFileScope + { + public ChangePlacementSideScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (p_return_state instanceof MoveItemState) + { + ((MoveItemState)p_return_state).change_placement_side(); + return p_return_state; + } + + System.out.println("ChangePlacementSideScope.read_scope: unexpected p_return_state"); + return null; + } + } + + private static class SetZoomWithWheelScope extends ActivityReplayFileScope + { + public SetZoomWithWheelScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (p_return_state instanceof MoveItemState) + { + int int_value = p_activityReplayFile.read_int(); + if (int_value == 0) + { + p_board_handling.settings.set_zoom_with_wheel(false); + } + else + { + p_board_handling.settings.set_zoom_with_wheel(true); + } + return p_return_state; + } + + System.out.println("SetRotateWithWheelScope.read_scope: unexpected p_return_state"); + return null; + } + } + + private static class ChangeLayerScope extends ActivityReplayFileScope + { + public ChangeLayerScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_layer = p_activityReplayFile.read_int(); + p_return_state.change_layer_action(new_layer); + return p_return_state; + } + } + + private static class StartSelectScope extends ActivityReplayFileScope + { + public StartSelectScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + while (!(p_return_state instanceof MenuState)) + { + System.out.println("StartSelectScope.read_scope: menu state expected"); + p_return_state = p_return_state.return_state; + } + FloatPoint location = p_activityReplayFile.read_corner(); + if (location == null) + { + System.out.println("StartSelectScope.read_scope: unable to read corner"); + return null; + } + return ((MenuState) p_return_state).select_items(location); + } + } + + private static class ToggleSelectScope extends ActivityReplayFileScope + { + public ToggleSelectScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (!(p_return_state instanceof SelectedItemState)) + { + System.out.println("ToggleSelectScope.read_scope: SelectedItemState expected"); + return null; + } + FloatPoint location = p_activityReplayFile.read_corner(); + if (location == null) + { + System.out.println("ToggleSelectScope.read_scope: unable to read corner"); + return null; + } + return ((SelectedItemState)p_return_state).toggle_select(location); + } + } + + private static class SelectRegionScope extends ActivityReplayFileScope + { + public SelectRegionScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (!(p_return_state instanceof MenuState)) + { + System.out.println("SelectRegionScope.read_scope: menu state expected"); + } + FloatPoint lower_left = p_activityReplayFile.read_corner(); + if (lower_left == null) + { + System.out.println("SelectRegionScope.read_scope: unable to read corner"); + return null; + } + InteractiveState curr_state = + SelectItemsInRegionState.get_instance(lower_left, p_return_state, p_board_handling, null); + FloatPoint upper_right = p_activityReplayFile.read_corner(); + if (upper_right == null) + { + // user may have cancelled the state after the first corner + return curr_state; + } + p_board_handling.set_current_mouse_position(upper_right); + return curr_state.complete(); + } + } + + private static class CutoutRouteScope extends ActivityReplayFileScope + { + public CutoutRouteScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, + InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (!(p_return_state instanceof SelectedItemState)) + { + System.out.println("CutoutRouteScope.read_scope: electedItemState expected"); + } + java.util.Collection item_list = ((SelectedItemState) p_return_state).get_item_list(); + FloatPoint lower_left = p_activityReplayFile.read_corner(); + if (lower_left == null) + { + System.out.println("CutoutRouteScope.read_scope: unable to read corner"); + return null; + } + InteractiveState curr_state = + CutoutRouteState.get_instance(item_list, lower_left, p_return_state.return_state, p_board_handling, null); + FloatPoint upper_right = p_activityReplayFile.read_corner(); + if (upper_right == null) + { + // user may have cancelled the state after the first corner + return curr_state; + } + p_board_handling.set_current_mouse_position(upper_right); + return curr_state.complete(); + } + } + + private static class DeleteSelectedScope extends ActivityReplayFileScope + { + public DeleteSelectedScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + + if (p_return_state instanceof SelectedItemState) + { + result = ((SelectedItemState)p_return_state).delete_items(); + } + else + { + System.out.println("DeleteSelectedScope.read_scope: SelectedItemState expected"); + result = null; + } + return result; + } + } + + private static class OptimizeSelectedScope extends ActivityReplayFileScope + { + public OptimizeSelectedScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + + if (p_return_state instanceof SelectedItemState) + { + result = ((SelectedItemState)p_return_state).pull_tight(null); + } + else + { + System.out.println("DeleteSelectedScope.read_scope: SelectedItemState expected"); + result = null; + } + return result; + } + } + + private static class AutorouteSelectedScope extends ActivityReplayFileScope + { + public AutorouteSelectedScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + + if (p_return_state instanceof SelectedItemState) + { + result = ((SelectedItemState)p_return_state).autoroute(null); + } + else + { + System.out.println("AutorouteSelectedScope.read_scope: SelectedItemState expected"); + result = null; + } + return result; + } + } + + private static class FanoutSelectedScope extends ActivityReplayFileScope + { + public FanoutSelectedScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + + if (p_return_state instanceof SelectedItemState) + { + result = ((SelectedItemState)p_return_state).fanout(null); + } + else + { + System.out.println("FanoutSelectedScope.read_scope: SelectedItemState expected"); + result = null; + } + return result; + } + } + + /** + * Scope calling the single method SelectedItemState.assign_clearance_class + */ + private static class AssignClearanceClassScope extends ActivityReplayFileScope + { + public AssignClearanceClassScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + + if (p_return_state instanceof SelectedItemState) + { + int int_value = p_activityReplayFile.read_int(); + result = ((SelectedItemState)p_return_state).assign_clearance_class(int_value); + } + else + { + System.out.println("AssignSelectedToNewNetScope.read_scope: SelectedItemState expected"); + result = null; + } + return result; + } + } + + + /** + * Scope calling the single method SelectedItemState.assign_items_to_new_net + */ + private static class AssignSelectedToNewNetScope extends ActivityReplayFileScope + { + public AssignSelectedToNewNetScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + + if (p_return_state instanceof SelectedItemState) + { + result = ((SelectedItemState)p_return_state).assign_items_to_new_net(); + } + else + { + System.out.println("AssignSelectedToNewNetScope.read_scope: SelectedItemState expected"); + result = null; + } + return result; + } + } + + /** + * Scope calling the single method SelectedItemState.assign_items_to_new_group + */ + private static class AssignSelectedToNewGroupScope extends ActivityReplayFileScope + { + public AssignSelectedToNewGroupScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState result; + + if (p_return_state instanceof SelectedItemState) + { + result = ((SelectedItemState)p_return_state).assign_items_to_new_group(); + } + else + { + System.out.println("AssignSelectedToNewGroupScope.read_scope: SelectedItemState expected"); + result = null; + } + return result; + } + } + + private static class ExtendToWholeConnectedSetsScope extends ActivityReplayFileScope + { + public ExtendToWholeConnectedSetsScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState return_state = null; + if (p_return_state instanceof SelectedItemState) + { + return_state = ((SelectedItemState)p_return_state).extent_to_whole_connected_sets(); + } + else + { + System.out.println("ExtendToWholeConnectedSetsScope.read_scope: SelectedItemState expected"); + } + return return_state; + } + } + + private static class ExtendToWholeComponentsScope extends ActivityReplayFileScope + { + public ExtendToWholeComponentsScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState return_state = null; + if (p_return_state instanceof SelectedItemState) + { + return_state = ((SelectedItemState)p_return_state).extent_to_whole_components(); + } + else + { + System.out.println("ExtendToWholeGroupsScope.read_scope: SelectedItemState expected"); + } + return return_state; + } + } + + private static class ExtendToWholeNetsScope extends ActivityReplayFileScope + { + public ExtendToWholeNetsScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState return_state = null; + if (p_return_state instanceof SelectedItemState) + { + return_state = ((SelectedItemState)p_return_state).extent_to_whole_nets(); + } + else + { + System.out.println("ExtendToWholeNetsScope.read_scope: SelectedItemState expected"); + } + return return_state; + } + } + + private static class ExtendToWholeConnectionsScope extends ActivityReplayFileScope + { + public ExtendToWholeConnectionsScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + InteractiveState return_state = null; + if (p_return_state instanceof SelectedItemState) + { + return_state = ((SelectedItemState)p_return_state).extent_to_whole_connections(); + } + else + { + System.out.println("ExtendToWholeConnectionsScope.read_scope: SelectedItemState expected"); + } + return return_state; + } + } + + private static class FixSelectedScope extends ActivityReplayFileScope + { + public FixSelectedScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (p_return_state instanceof SelectedItemState) + { + ((SelectedItemState)p_return_state).fix_items(); + } + else + { + System.out.println("FixSelectedScope.read_scope: SelectedItemState expected"); + } + return p_return_state; + } + } + + private static class UnfixSelectedScope extends ActivityReplayFileScope + { + public UnfixSelectedScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + if (p_return_state instanceof SelectedItemState) + { + ((SelectedItemState)p_return_state).unfix_items(); + } + else + { + System.out.println("UnfixSelectedScope.read_scope: SelectedItemState expected"); + } + return p_return_state; + } + } + + private static class CompleteScope extends ActivityReplayFileScope + { + public CompleteScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + return p_return_state.complete(); + } + } + + private static class CancelScope extends ActivityReplayFileScope + { + public CancelScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + return p_return_state.cancel(); + } + } + + private static class SetTraceHalfWidthScope extends ActivityReplayFileScope + { + public SetTraceHalfWidthScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int layer = p_activityReplayFile.read_int(); + int new_half_width = p_activityReplayFile.read_int(); + p_board_handling.get_routing_board().rules.set_default_trace_half_width(layer, new_half_width); + return p_return_state; + } + } + + private static class SetPullTightRegionWidthScope extends ActivityReplayFileScope + { + public SetPullTightRegionWidthScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_tidy_width = p_activityReplayFile.read_int(); + p_board_handling.settings.trace_pull_tight_region_width = new_tidy_width; + return p_return_state; + } + } + + private static class SetPushEnabledScope extends ActivityReplayFileScope + { + public SetPushEnabledScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int int_value = p_activityReplayFile.read_int(); + if ( int_value == 0) + { + p_board_handling.settings.push_enabled = false; + } + else + { + p_board_handling.settings.push_enabled = true; + } + return p_return_state; + } + } + + private static class SetDragComponentsEnabledScope extends ActivityReplayFileScope + { + public SetDragComponentsEnabledScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int int_value = p_activityReplayFile.read_int(); + if ( int_value == 0) + { + p_board_handling.settings.drag_components_enabled = false; + } + else + { + p_board_handling.settings.drag_components_enabled = true; + } + return p_return_state; + } + } + + private static class SetPullTightAccuracyScope extends ActivityReplayFileScope + { + public SetPullTightAccuracyScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_accuracy = p_activityReplayFile.read_int(); + p_board_handling.settings.trace_pull_tight_accuracy = new_accuracy; + return p_return_state; + } + } + + private static class SetIgnoreConductionScope extends ActivityReplayFileScope + { + public SetIgnoreConductionScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int int_value = p_activityReplayFile.read_int(); + p_board_handling.get_routing_board().change_conduction_is_obstacle(int_value == 0); + return p_return_state; + } + } + + private static class SetLayerScope extends ActivityReplayFileScope + { + public SetLayerScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_layer = p_activityReplayFile.read_int(); + p_board_handling.set_layer(new_layer); + return p_return_state; + } + } + + private static class SetClearanceCompensationScope extends ActivityReplayFileScope + { + public SetClearanceCompensationScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_clearance_type = p_activityReplayFile.read_int(); + if (new_clearance_type == 0) + { + p_board_handling.get_routing_board().search_tree_manager.set_clearance_compensation_used(false); + } + else + { + p_board_handling.get_routing_board().search_tree_manager.set_clearance_compensation_used(true); + } + return p_return_state; + } + } + + private static class SetManualTraceHalfWidthScope extends ActivityReplayFileScope + { + public SetManualTraceHalfWidthScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int layer = p_activityReplayFile.read_int(); + int half_width = p_activityReplayFile.read_int(); + p_board_handling.settings.manual_trace_half_width_arr[layer] = half_width; + return p_return_state; + } + } + + private static class SetManualTraceClearanceClassScope extends ActivityReplayFileScope + { + public SetManualTraceClearanceClassScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int index = p_activityReplayFile.read_int(); + p_board_handling.settings.manual_trace_clearance_class = index; + return p_return_state; + } + } + + private static class SetManualTraceWidthSelectionScope extends ActivityReplayFileScope + { + public SetManualTraceWidthSelectionScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int manual_selection = p_activityReplayFile.read_int(); + if ( manual_selection == 0) + { + p_board_handling.settings.manual_rule_selection = false; + } + else + { + p_board_handling.settings.manual_rule_selection = true; + } + return p_return_state; + } + } + + private static class SetSnapAngleScope extends ActivityReplayFileScope + { + public SetSnapAngleScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_snap_angle_no = p_activityReplayFile.read_int(); + p_board_handling.get_routing_board().rules.set_trace_angle_restriction(eu.mihosoft.freerouting.board.AngleRestriction.arr[new_snap_angle_no]); + return p_return_state; + } + } + + private static class SetSelectOnAllLayerScope extends ActivityReplayFileScope + { + public SetSelectOnAllLayerScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_value = p_activityReplayFile.read_int(); + p_board_handling.settings.select_on_all_visible_layers = (new_value != 0); + return p_return_state; + } + } + + private static class SetStitchRouteScope extends ActivityReplayFileScope + { + public SetStitchRouteScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int new_value = p_activityReplayFile.read_int(); + p_board_handling.settings.is_stitch_route = (new_value != 0); + return p_return_state; + } + } + + + private static class SetSelectableScope extends ActivityReplayFileScope + { + public SetSelectableScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + int item_type_no = p_activityReplayFile.read_int(); + int selection = p_activityReplayFile.read_int(); + eu.mihosoft.freerouting.board.ItemSelectionFilter.SelectableChoices item_type = eu.mihosoft.freerouting.board.ItemSelectionFilter.SelectableChoices.values()[item_type_no]; + if (selection == 0) + { + p_board_handling.settings.item_selection_filter.set_selected(item_type, false); + if (p_return_state instanceof SelectedItemState) + { + ((SelectedItemState) p_return_state).filter(); + } + } + else + { + p_board_handling.settings.item_selection_filter.set_selected(item_type, true); + } + return p_return_state; + } + } + + + private static class UndoScope extends ActivityReplayFileScope + { + public UndoScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + p_board_handling.get_routing_board().undo(null); + p_board_handling.repaint(); + return p_return_state; + } + } + + private static class RedoScope extends ActivityReplayFileScope + { + public RedoScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + p_board_handling.get_routing_board().redo(null); + p_board_handling.repaint(); + return p_return_state; + } + } + + private static class GenerateSnapshotScope extends ActivityReplayFileScope + { + public GenerateSnapshotScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + p_board_handling.get_routing_board().generate_snapshot(); + return p_return_state; + } + } + + private static class CenterDisplayScope extends ActivityReplayFileScope + { + public CenterDisplayScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + FloatPoint curr_location = p_activityReplayFile.read_corner(); + java.awt.geom.Point2D new_center = new java.awt.geom.Point2D.Double(curr_location.x, curr_location.y); + p_board_handling.get_panel().center_display(new_center); + return p_return_state; + } + } + + private static class ZoomFrameScope extends ActivityReplayFileScope + { + public ZoomFrameScope(String p_name) + { + super( p_name); + } + + public InteractiveState read_scope(ActivityReplayFile p_activityReplayFile, InteractiveState p_return_state, BoardHandling p_board_handling) + { + java.awt.geom.Point2D lower_left = + p_board_handling.graphics_context.coordinate_transform.board_to_screen(p_activityReplayFile.read_corner()); + java.awt.geom.Point2D upper_right = p_board_handling.graphics_context.coordinate_transform.board_to_screen(p_activityReplayFile.read_corner()); + p_board_handling.get_panel().zoom_frame(lower_left, upper_right); + p_board_handling.repaint(); + return p_return_state; + } + } +} + + diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandling.java b/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandling.java index 46e4811..8c03ce4 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandling.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandling.java @@ -76,7 +76,7 @@ public class BoardHandling extends BoardHandlingImpl this.locale = p_locale; this.panel = p_panel; this.screen_messages = p_panel.screen_messages; - this.set_interactive_state(SelectMenuState.get_instance(this, logfile)); + this.set_interactive_state(SelectMenuState.get_instance(this, activityReplayFile)); this.resources = java.util.ResourceBundle.getBundle("eu.mihosoft.freerouting.interactive.BoardHandling", p_locale); } @@ -147,7 +147,7 @@ public class BoardHandling extends BoardHandlingImpl } board.change_conduction_is_obstacle(!p_value); - logfile.start_scope(LogfileScope.SET_IGNORE_CONDUCTION, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_IGNORE_CONDUCTION, p_value); } public void set_pin_edge_to_turn_dist(double p_value) @@ -290,8 +290,8 @@ public class BoardHandling extends BoardHandlingImpl if (p_layer >= 0 && p_layer <= board.get_layer_count()) { board.rules.set_default_trace_half_width(p_layer, p_value); - logfile.start_scope(LogfileScope.SET_TRACE_HALF_WIDTH, p_layer); - logfile.add_int(p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_TRACE_HALF_WIDTH, p_layer); + activityReplayFile.add_int(p_value); } } @@ -305,7 +305,7 @@ public class BoardHandling extends BoardHandlingImpl return; } board.search_tree_manager.set_clearance_compensation_used(p_value); - logfile.start_scope(LogfileScope.SET_CLEARANCE_COMPENSATION, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_CLEARANCE_COMPENSATION, p_value); } /** @@ -318,7 +318,7 @@ public class BoardHandling extends BoardHandlingImpl return; } board.rules.set_trace_angle_restriction(p_snap_angle); - logfile.start_scope(LogfileScope.SET_SNAP_ANGLE, p_snap_angle.get_no()); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_SNAP_ANGLE, p_snap_angle.get_no()); } /** @@ -333,7 +333,7 @@ public class BoardHandling extends BoardHandlingImpl int layer = Math.max(p_layer, 0); layer = Math.min(layer, board.get_layer_count() - 1); set_layer(layer); - logfile.start_scope(LogfileScope.SET_LAYER, p_layer); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_LAYER, p_layer); } /** @@ -619,7 +619,7 @@ public class BoardHandling extends BoardHandlingImpl { return; } - logfile.start_write(p_filename); + activityReplayFile.start_write(p_filename); } /** @@ -716,7 +716,7 @@ public class BoardHandling extends BoardHandlingImpl return; } board.generate_snapshot(); - logfile.start_scope(LogfileScope.GENERATE_SNAPSHOT); + activityReplayFile.start_scope(ActivityReplayFileScope.GENERATE_SNAPSHOT); } /** @@ -747,7 +747,7 @@ public class BoardHandling extends BoardHandlingImpl { screen_messages.set_status_message(resources.getString("no_more_undo_possible")); } - logfile.start_scope(LogfileScope.UNDO); + activityReplayFile.start_scope(ActivityReplayFileScope.UNDO); repaint(); } @@ -773,7 +773,7 @@ public class BoardHandling extends BoardHandlingImpl { screen_messages.set_status_message(resources.getString("no_more_redo_possible")); } - logfile.start_scope(LogfileScope.REDO); + activityReplayFile.start_scope(ActivityReplayFileScope.REDO); repaint(); } @@ -985,7 +985,7 @@ public class BoardHandling extends BoardHandlingImpl */ public void set_select_menu_state() { - this.interactive_state = SelectMenuState.get_instance(this, logfile); + this.interactive_state = SelectMenuState.get_instance(this, activityReplayFile); screen_messages.set_status_message(resources.getString("select_menu")); } @@ -994,7 +994,7 @@ public class BoardHandling extends BoardHandlingImpl */ public void set_route_menu_state() { - this.interactive_state = RouteMenuState.get_instance(this, logfile); + this.interactive_state = RouteMenuState.get_instance(this, activityReplayFile); screen_messages.set_status_message(resources.getString("route_menu")); } @@ -1003,7 +1003,7 @@ public class BoardHandling extends BoardHandlingImpl */ public void set_drag_menu_state() { - this.interactive_state = DragMenuState.get_instance(this, logfile); + this.interactive_state = DragMenuState.get_instance(this, activityReplayFile); screen_messages.set_status_message(resources.getString("drag_menu")); } @@ -1017,7 +1017,7 @@ public class BoardHandling extends BoardHandlingImpl { board = (RoutingBoard) p_design.readObject(); settings = (Settings) p_design.readObject(); - settings.set_logfile(this.logfile); + settings.set_logfile(this.activityReplayFile); coordinate_transform = (CoordinateTransform) p_design.readObject(); graphics_context = (GraphicsContext) p_design.readObject(); } @@ -1156,9 +1156,9 @@ public class BoardHandling extends BoardHandlingImpl */ public void close_files() { - if (logfile != null) + if (activityReplayFile != null) { - logfile.close_output(); + activityReplayFile.close_output(); } } @@ -1174,7 +1174,7 @@ public class BoardHandling extends BoardHandlingImpl } FloatPoint location = graphics_context.coordinate_transform.screen_to_board(p_point); - InteractiveState new_state = RouteState.get_instance(location, this.interactive_state, this, logfile); + InteractiveState new_state = RouteState.get_instance(location, this.interactive_state, this, activityReplayFile); set_interactive_state(new_state); } @@ -1203,7 +1203,7 @@ public class BoardHandling extends BoardHandlingImpl { return; } - set_interactive_state(SelectItemsInRegionState.get_instance(this.interactive_state, this, logfile)); + set_interactive_state(SelectItemsInRegionState.get_instance(this.interactive_state, this, activityReplayFile)); } /** @@ -1219,7 +1219,7 @@ public class BoardHandling extends BoardHandlingImpl this.display_layer_messsage(); if (interactive_state instanceof MenuState) { - set_interactive_state(SelectedItemState.get_instance(p_items, interactive_state, this, logfile)); + set_interactive_state(SelectedItemState.get_instance(p_items, interactive_state, this, activityReplayFile)); } else if (interactive_state instanceof SelectedItemState) { @@ -1398,7 +1398,7 @@ public class BoardHandling extends BoardHandlingImpl Collection item_list = curr_state.get_item_list(); FloatPoint from_location = graphics_context.coordinate_transform.screen_to_board(p_from_location); InteractiveState new_state = - MoveItemState.get_instance(from_location, item_list, interactive_state, this, logfile); + MoveItemState.get_instance(from_location, item_list, interactive_state, this, activityReplayFile); set_interactive_state(new_state); repaint(); } @@ -1417,7 +1417,7 @@ public class BoardHandling extends BoardHandlingImpl Collection item_list = curr_state.get_item_list(); FloatPoint from_location = graphics_context.coordinate_transform.screen_to_board(p_from_location); InteractiveState new_state = - CopyItemState.get_instance(from_location, item_list, interactive_state.return_state, this, logfile); + CopyItemState.get_instance(from_location, item_list, interactive_state.return_state, this, activityReplayFile); set_interactive_state(new_state); } @@ -1562,7 +1562,7 @@ public class BoardHandling extends BoardHandlingImpl */ public void zoom_region() { - interactive_state = ZoomRegionState.get_instance(this.interactive_state, this, this.logfile); + interactive_state = ZoomRegionState.get_instance(this.interactive_state, this, this.activityReplayFile); } /** @@ -1576,7 +1576,7 @@ public class BoardHandling extends BoardHandlingImpl return; } FloatPoint location = graphics_context.coordinate_transform.screen_to_board(p_point); - set_interactive_state(CircleConstructionState.get_instance(location, this.interactive_state, this, logfile)); + set_interactive_state(CircleConstructionState.get_instance(location, this.interactive_state, this, activityReplayFile)); } /** @@ -1590,7 +1590,7 @@ public class BoardHandling extends BoardHandlingImpl return; } FloatPoint location = graphics_context.coordinate_transform.screen_to_board(p_point); - set_interactive_state(TileConstructionState.get_instance(location, this.interactive_state, this, logfile)); + set_interactive_state(TileConstructionState.get_instance(location, this.interactive_state, this, activityReplayFile)); } /** @@ -1605,7 +1605,7 @@ public class BoardHandling extends BoardHandlingImpl } FloatPoint location = graphics_context.coordinate_transform.screen_to_board(p_point); set_interactive_state(PolygonShapeConstructionState.get_instance(location, this.interactive_state, - this, logfile)); + this, activityReplayFile)); } /** @@ -1621,7 +1621,7 @@ public class BoardHandling extends BoardHandlingImpl } FloatPoint location = graphics_context.coordinate_transform.screen_to_board(p_point); InteractiveState new_state = - HoleConstructionState.get_instance(location, this.interactive_state, this, logfile); + HoleConstructionState.get_instance(location, this.interactive_state, this, activityReplayFile); set_interactive_state(new_state); } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandlingImpl.java b/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandlingImpl.java index 3ffca66..728a4b8 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandlingImpl.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/BoardHandlingImpl.java @@ -21,7 +21,7 @@ public class BoardHandlingImpl implements IBoardHandling { * The file used for logging eu.mihosoft.freerouting.interactive action, * so that they can be replayed later */ - public final Logfile logfile = new Logfile(); + public final ActivityReplayFile activityReplayFile = new ActivityReplayFile(); /** The current settings for eu.mihosoft.freerouting.interactive actions on the eu.mihosoft.freerouting.board*/ public Settings settings = null; /** The eu.mihosoft.freerouting.board database used in this eu.mihosoft.freerouting.interactive handling. */ @@ -81,7 +81,7 @@ public class BoardHandlingImpl implements IBoardHandling { new RoutingBoard(p_bounding_box, p_layer_structure, p_outline_shapes, outline_cl_class_no, p_rules, p_board_communication, p_test_level); - this.settings = new Settings(this.board, this.logfile); + this.settings = new Settings(this.board, this.activityReplayFile); } @Override diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/CircleConstructionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/CircleConstructionState.java index bec3006..c5d5dc1 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/CircleConstructionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/CircleConstructionState.java @@ -46,28 +46,28 @@ public class CircleConstructionState extends InteractiveState * If p_logfile != null; the creation of this item is stored in a logfile */ public static CircleConstructionState get_instance(FloatPoint p_location, - InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { p_board_handling.remove_ratsnest(); // inserting a circle may change the connectivity. - return new CircleConstructionState(p_location, p_parent_state, p_board_handling, p_logfile); + return new CircleConstructionState(p_location, p_parent_state, p_board_handling, p_activityReplayFile); } /** Creates a new instance of CircleConstructionState */ - private CircleConstructionState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + private CircleConstructionState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); circle_center = p_location; - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.CREATING_CIRCLE, p_location); + activityReplayFile.start_scope(ActivityReplayFileScope.CREATING_CIRCLE, p_location); } } public InteractiveState left_button_clicked(FloatPoint p_location) { - if (logfile != null) + if (activityReplayFile != null) { - logfile.add_corner(p_location); + activityReplayFile.add_corner(p_location); } return this.complete(); } @@ -128,9 +128,9 @@ public class CircleConstructionState extends InteractiveState { hdlg.screen_messages.set_status_message(resources.getString("keepout_cancelled_because_of_overlaps")); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } hdlg.repaint(); return this.return_state; diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/CopyItemState.java b/src/main/java/eu/mihosoft/freerouting/interactive/CopyItemState.java index 4c1d499..6e97012 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/CopyItemState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/CopyItemState.java @@ -55,21 +55,21 @@ public class CopyItemState extends InteractiveState * Returns a new instance of CopyItemState or null, if p_item_list is empty. */ public static CopyItemState get_instance(FloatPoint p_location, Collection p_item_list, - InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { if (p_item_list.size() == 0) { return null; } p_board_handling.remove_ratsnest(); // copying an item may change the connectivity. - return new CopyItemState(p_location, p_item_list, p_parent_state, p_board_handling, p_logfile); + return new CopyItemState(p_location, p_item_list, p_parent_state, p_board_handling, p_activityReplayFile); } /** Creates a new instance of CopyItemState */ private CopyItemState(FloatPoint p_location, Collection p_item_list, - InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); item_list = new LinkedList(); start_position = p_location.round(); @@ -87,9 +87,9 @@ public class CopyItemState extends InteractiveState item_list.add(new_item); } } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.COPYING_ITEMS, p_location); + activityReplayFile.start_scope(ActivityReplayFileScope.COPYING_ITEMS, p_location); } } @@ -125,9 +125,9 @@ public class CopyItemState extends InteractiveState */ public boolean change_layer_action(int p_new_layer) { - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.CHANGE_LAYER, p_new_layer); + activityReplayFile.start_scope(ActivityReplayFileScope.CHANGE_LAYER, p_new_layer); } current_layer = p_new_layer; layer_changed = true; @@ -259,9 +259,9 @@ public class CopyItemState extends InteractiveState { hdlg.screen_messages.set_status_message(resources.getString("some_items_not_inserted_because_of_obstacles")); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.add_corner(this.current_position.to_float()); + activityReplayFile.add_corner(this.current_position.to_float()); } start_position = current_position; layer_changed = false; diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/CornerItemConstructionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/CornerItemConstructionState.java index 08f6ea3..7e7198a 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/CornerItemConstructionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/CornerItemConstructionState.java @@ -36,9 +36,9 @@ public class CornerItemConstructionState extends InteractiveState { /** Creates a new instance of CornerItemConstructionState */ - protected CornerItemConstructionState(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + protected CornerItemConstructionState(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); p_board_handling.remove_ratsnest(); // Constructing an item may change the connectivity. } @@ -59,9 +59,9 @@ public class CornerItemConstructionState extends InteractiveState // make shure that the coordinates are integer this.corner_list.add(location); hdlg.repaint(); - if (logfile != null) + if (activityReplayFile != null) { - logfile.add_corner(p_location); + activityReplayFile.add_corner(p_location); } return this; } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/CutoutRouteState.java b/src/main/java/eu/mihosoft/freerouting/interactive/CutoutRouteState.java index 0fc83f4..efe76af 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/CutoutRouteState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/CutoutRouteState.java @@ -47,16 +47,16 @@ public class CutoutRouteState extends SelectRegionState * Returns a new instance of this class. */ public static CutoutRouteState get_instance( Collection p_item_list, InteractiveState p_parent_state, - BoardHandling p_board_handling, Logfile p_logfile) + BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - return get_instance(p_item_list, null, p_parent_state, p_board_handling, p_logfile); + return get_instance(p_item_list, null, p_parent_state, p_board_handling, p_activityReplayFile); } /** * Returns a new instance of this class. */ public static CutoutRouteState get_instance( Collection p_item_list, FloatPoint p_location, InteractiveState p_parent_state, - BoardHandling p_board_handling, Logfile p_logfile) + BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { p_board_handling.display_layer_messsage(); // filter items, whichh cannnot be cutout @@ -70,23 +70,23 @@ public class CutoutRouteState extends SelectRegionState } } - CutoutRouteState new_instance = new CutoutRouteState(item_list, p_parent_state, p_board_handling, p_logfile); + CutoutRouteState new_instance = new CutoutRouteState(item_list, p_parent_state, p_board_handling, p_activityReplayFile); new_instance.corner1 = p_location; - if (p_location != null && new_instance.logfile != null) + if (p_location != null && new_instance.activityReplayFile != null) { - new_instance.logfile.add_corner(p_location); + new_instance.activityReplayFile.add_corner(p_location); } new_instance.hdlg.screen_messages.set_status_message(new_instance.resources.getString("drag_left_mouse_button_to_select_cutout_rectangle")); return new_instance; } /** Creates a new instance of CutoutRouteState */ - private CutoutRouteState(Collection p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + private CutoutRouteState(Collection p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); - if (logfile != null) + super(p_parent_state, p_board_handling, p_activityReplayFile); + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.CUTOUT_ROUTE); + activityReplayFile.start_scope(ActivityReplayFileScope.CUTOUT_ROUTE); } this.trace_list = p_item_list; } @@ -95,9 +95,9 @@ public class CutoutRouteState extends SelectRegionState { hdlg.screen_messages.set_status_message(""); corner2 = hdlg.get_current_mouse_position(); - if (logfile != null) + if (activityReplayFile != null) { - logfile.add_corner(corner2); + activityReplayFile.add_corner(corner2); } this.cutout_route(); return this.return_state; diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/DragItemState.java b/src/main/java/eu/mihosoft/freerouting/interactive/DragItemState.java index 152ba26..519d498 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/DragItemState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/DragItemState.java @@ -44,9 +44,9 @@ public class DragItemState extends DragState { /** Creates a new instance of MoveItemState */ - protected DragItemState(Item p_item_to_move, FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + protected DragItemState(Item p_item_to_move, FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_location, p_parent_state, p_board_handling, p_logfile); + super(p_location, p_parent_state, p_board_handling, p_activityReplayFile); item_to_move = p_item_to_move; } @@ -118,12 +118,12 @@ public class DragItemState extends DragState } // make the situation restorable by undo hdlg.get_routing_board().generate_snapshot(); - if (logfile != null) + if (activityReplayFile != null) { // Delayed till here because otherwise the mouse // might have been only clicked for selecting // and not pressed for moving. - logfile.start_scope(LogfileScope.DRAGGING_ITEMS, this.previous_location); + activityReplayFile.start_scope(ActivityReplayFileScope.DRAGGING_ITEMS, this.previous_location); } this.something_dragged = true; } @@ -146,9 +146,9 @@ public class DragItemState extends DragState hdlg.get_routing_board().end_notify_observers(); this.observers_activated = false; } - if (logfile != null && something_dragged) + if (activityReplayFile != null && something_dragged) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } if (something_dragged) { diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/DragMenuState.java b/src/main/java/eu/mihosoft/freerouting/interactive/DragMenuState.java index c003011..5016420 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/DragMenuState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/DragMenuState.java @@ -33,21 +33,21 @@ import eu.mihosoft.freerouting.geometry.planar.FloatPoint; public class DragMenuState extends MenuState { /** Returns a new instance of DragMenuState */ - public static DragMenuState get_instance(BoardHandling p_board_handling, Logfile p_logfile) + public static DragMenuState get_instance(BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - DragMenuState new_state = new DragMenuState(p_board_handling, p_logfile); + DragMenuState new_state = new DragMenuState(p_board_handling, p_activityReplayFile); return new_state; } /** Creates a new instance of DragMenuState */ - public DragMenuState(BoardHandling p_board_handling, Logfile p_logfile) + public DragMenuState(BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_board_handling, p_logfile); + super(p_board_handling, p_activityReplayFile); } public InteractiveState mouse_pressed(FloatPoint p_point) { - return DragState.get_instance(p_point, this, hdlg, logfile); + return DragState.get_instance(p_point, this, hdlg, activityReplayFile); } public String get_help_id() diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/DragState.java b/src/main/java/eu/mihosoft/freerouting/interactive/DragState.java index de06e01..6ba1be8 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/DragState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/DragState.java @@ -43,7 +43,7 @@ public abstract class DragState extends InteractiveState * location; null otherwise. */ public static DragState get_instance(FloatPoint p_location, InteractiveState p_parent_state, - BoardHandling p_board_handling, Logfile p_logfile) + BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { p_board_handling.display_layer_messsage(); Item item_to_move = null; @@ -94,11 +94,11 @@ public abstract class DragState extends InteractiveState DragState result; if (item_to_move != null) { - result = new DragItemState(item_to_move, p_location, p_parent_state, p_board_handling, p_logfile); + result = new DragItemState(item_to_move, p_location, p_parent_state, p_board_handling, p_activityReplayFile); } else if (!item_found) { - result = new MakeSpaceState(p_location, p_parent_state, p_board_handling, p_logfile); + result = new MakeSpaceState(p_location, p_parent_state, p_board_handling, p_activityReplayFile); } else { @@ -112,9 +112,9 @@ public abstract class DragState extends InteractiveState } /** Creates a new instance of DragState */ - protected DragState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + protected DragState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); previous_location = p_location; } @@ -136,9 +136,9 @@ public abstract class DragState extends InteractiveState } if (this.something_dragged) { - if (logfile != null ) + if (activityReplayFile != null ) { - logfile.add_corner(p_point); + activityReplayFile.add_corner(p_point); } } return result; diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/DynamicRouteState.java b/src/main/java/eu/mihosoft/freerouting/interactive/DynamicRouteState.java index 94c3dfc..1c66c9a 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/DynamicRouteState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/DynamicRouteState.java @@ -34,9 +34,9 @@ public class DynamicRouteState extends RouteState { /** Creates a new instance of DynamicRouteState */ - protected DynamicRouteState(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + protected DynamicRouteState(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); } public InteractiveState mouse_moved() @@ -55,9 +55,9 @@ public class DynamicRouteState extends RouteState hdlg.get_routing_board().end_notify_observers(); this.observers_activated = false; } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } for (int curr_net_no : this.route.net_no_arr) { diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/HoleConstructionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/HoleConstructionState.java index 846b131..2984253 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/HoleConstructionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/HoleConstructionState.java @@ -49,9 +49,9 @@ public class HoleConstructionState extends CornerItemConstructionState * if that was not possible with the input parameters. * If p_logfile != null, the construction of this hole is stored in a logfile. */ - public static HoleConstructionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public static HoleConstructionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - HoleConstructionState new_instance = new HoleConstructionState(p_parent_state, p_board_handling, p_logfile); + HoleConstructionState new_instance = new HoleConstructionState(p_parent_state, p_board_handling, p_activityReplayFile); if (!new_instance.start_ok(p_location)) { new_instance = null; @@ -60,9 +60,9 @@ public class HoleConstructionState extends CornerItemConstructionState } /** Creates a new instance of HoleConstructionState */ - private HoleConstructionState(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + private HoleConstructionState(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); } /** @@ -97,9 +97,9 @@ public class HoleConstructionState extends CornerItemConstructionState hdlg.screen_messages.set_status_message(resources.getString("adding_hole_to_circle_not_yet_implemented")); return false; } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.ADDING_HOLE); + activityReplayFile.start_scope(ActivityReplayFileScope.ADDING_HOLE); } this.add_corner(p_location); return true; @@ -202,9 +202,9 @@ public class HoleConstructionState extends CornerItemConstructionState { hdlg.screen_messages.set_status_message(resources.getString("adding_hole_failed")); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } return this.return_state; } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveActionThread.java b/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveActionThread.java index bb64ceb..bdc7927 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveActionThread.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveActionThread.java @@ -166,7 +166,7 @@ public abstract class InteractiveActionThread extends Thread implements eu.mihos hdlg.screen_messages.set_write_protected(true); boolean done = false; InteractiveState previous_state = hdlg.interactive_state; - if (!hdlg.logfile.start_read(this.input_stream)) + if (!hdlg.activityReplayFile.start_read(this.input_stream)) { done = true; } @@ -182,7 +182,7 @@ public abstract class InteractiveActionThread extends Thread implements eu.mihos done = true; } ++debug_counter; - LogfileScope logfile_scope = hdlg.logfile.start_read_scope(); + ActivityReplayFileScope logfile_scope = hdlg.activityReplayFile.start_read_scope(); if (logfile_scope == null) { done = true; // end of logfile @@ -192,7 +192,7 @@ public abstract class InteractiveActionThread extends Thread implements eu.mihos try { InteractiveState new_state = - logfile_scope.read_scope(hdlg.logfile, hdlg.interactive_state, hdlg); + logfile_scope.read_scope(hdlg.activityReplayFile, hdlg.interactive_state, hdlg); if (new_state == null) { System.out.println("BoardHandling:read_logfile: inconsistent logfile scope"); diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveState.java b/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveState.java index 2cfae32..a2caae4 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/InteractiveState.java @@ -36,11 +36,11 @@ import java.awt.Graphics; public class InteractiveState { /** Creates a new instance of InteractiveState */ - protected InteractiveState(InteractiveState p_return_state, BoardHandling p_board_handling, Logfile p_logfile) + protected InteractiveState(InteractiveState p_return_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { this.return_state = p_return_state; this.hdlg = p_board_handling; - this.logfile = p_logfile; + this.activityReplayFile = p_activityReplayFile; this.resources = java.util.ResourceBundle.getBundle("eu.mihosoft.freerouting.interactive.InteractiveState", p_board_handling.get_locale()); } @@ -139,7 +139,7 @@ public class InteractiveState } else if (p_key_char == 'f') { - result = ZoomRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, logfile); + result = ZoomRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, activityReplayFile); } else if (p_key_char =='h') { @@ -195,9 +195,9 @@ public class InteractiveState */ public InteractiveState complete() { - if (this.return_state != this &&logfile != null) + if (this.return_state != this && activityReplayFile != null) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } return this.return_state; } @@ -209,9 +209,9 @@ public class InteractiveState */ public InteractiveState cancel() { - if (this.return_state != this && logfile != null) + if (this.return_state != this && activityReplayFile != null) { - logfile.start_scope(LogfileScope.CANCEL_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.CANCEL_SCOPE); } return this.return_state; } @@ -274,7 +274,7 @@ public class InteractiveState protected InteractiveState return_state; /** if logfile != null, the eu.mihosoft.freerouting.interactive actions are stored in a logfile */ - protected final Logfile logfile; + protected final ActivityReplayFile activityReplayFile; /** Contains the files with the language dependent messages */ protected final java.util.ResourceBundle resources; diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/MakeSpaceState.java b/src/main/java/eu/mihosoft/freerouting/interactive/MakeSpaceState.java index c3267e5..0d86584 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/MakeSpaceState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/MakeSpaceState.java @@ -38,9 +38,9 @@ public class MakeSpaceState extends DragState { /** Creates a new instance of MakeSpaceState */ - public MakeSpaceState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public MakeSpaceState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_location, p_parent_state, p_board_handling, p_logfile); + super(p_location, p_parent_state, p_board_handling, p_activityReplayFile); int [] shove_trace_width_arr = new int[hdlg.get_routing_board().get_layer_count()]; boolean [] layer_active_arr = new boolean[shove_trace_width_arr.length]; int shove_trace_width = Math.min (100, hdlg.get_routing_board().get_min_trace_half_width() / 10); @@ -70,12 +70,12 @@ public class MakeSpaceState extends DragState } // make the situation restorable by undo hdlg.get_routing_board().generate_snapshot(); - if (logfile != null) + if (activityReplayFile != null) { // Delayed till here because otherwise the mouse // might have been only clicked for selecting // and not pressed for moving. - logfile.start_scope(LogfileScope.MAKING_SPACE, previous_location); + activityReplayFile.start_scope(ActivityReplayFileScope.MAKING_SPACE, previous_location); } something_dragged = true; } @@ -102,9 +102,9 @@ public class MakeSpaceState extends DragState hdlg.get_routing_board().end_notify_observers(); this.observers_activated = false; } - if (logfile != null && something_dragged) + if (activityReplayFile != null && something_dragged) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } hdlg.show_ratsnest(); return this.return_state; diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/MenuState.java b/src/main/java/eu/mihosoft/freerouting/interactive/MenuState.java index d6065c1..c07eba1 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/MenuState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/MenuState.java @@ -40,9 +40,9 @@ public class MenuState extends InteractiveState { /** Creates a new instance of MenuState */ - MenuState(BoardHandling p_board_handle, Logfile p_logfile) + MenuState(BoardHandling p_board_handle, ActivityReplayFile p_activityReplayFile) { - super(null, p_board_handle, p_logfile); + super(null, p_board_handle, p_activityReplayFile); this.return_state = this; } @@ -64,11 +64,11 @@ public class MenuState extends InteractiveState InteractiveState result; if (something_found) { - result = SelectedItemState.get_instance(picked_items, this, hdlg, this.logfile); + result = SelectedItemState.get_instance(picked_items, this, hdlg, this.activityReplayFile); hdlg.screen_messages.set_status_message(resources.getString("in_select_mode")); - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.START_SELECT, p_location); + activityReplayFile.start_scope(ActivityReplayFileScope.START_SELECT, p_location); } } else @@ -93,7 +93,7 @@ public class MenuState extends InteractiveState return this; } eu.mihosoft.freerouting.board.Pin selected_pin = (eu.mihosoft.freerouting.board.Pin) first_item; - result = PinSwapState.get_instance(selected_pin, this, hdlg, this.logfile); + result = PinSwapState.get_instance(selected_pin, this, hdlg, this.activityReplayFile); } else { @@ -115,7 +115,7 @@ public class MenuState extends InteractiveState } else if (p_key_char == 'd') { - curr_return_state = DragMenuState.get_instance(hdlg, logfile); + curr_return_state = DragMenuState.get_instance(hdlg, activityReplayFile); } else if (p_key_char == 'e') { @@ -139,15 +139,15 @@ public class MenuState extends InteractiveState } else if (p_key_char == 'r') { - curr_return_state = RouteMenuState.get_instance(hdlg, logfile); + curr_return_state = RouteMenuState.get_instance(hdlg, activityReplayFile); } else if (p_key_char == 's') { - curr_return_state = SelectMenuState.get_instance(hdlg, logfile); + curr_return_state = SelectMenuState.get_instance(hdlg, activityReplayFile); } else if (p_key_char == 't') { - curr_return_state = RouteState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, logfile); + curr_return_state = RouteState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, activityReplayFile); } else if (p_key_char == 'u') { diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/MoveItemState.java b/src/main/java/eu/mihosoft/freerouting/interactive/MoveItemState.java index e09854d..115442b 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/MoveItemState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/MoveItemState.java @@ -52,7 +52,7 @@ public class MoveItemState extends InteractiveState * to a single component. */ public static MoveItemState get_instance(FloatPoint p_location, Collection p_item_list, - InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { java.util.ResourceBundle resources = java.util.ResourceBundle.getBundle("eu.mihosoft.freerouting.interactive.InteractiveState", p_board_handling.get_locale()); if (p_item_list.isEmpty()) @@ -174,21 +174,21 @@ public class MoveItemState extends InteractiveState } item_list.addAll(add_items); return new MoveItemState(p_location, item_list, component_list, grid_snap_component, - p_parent_state.return_state, p_board_handling, p_logfile); + p_parent_state.return_state, p_board_handling, p_activityReplayFile); } /** Creates a new instance of MoveComponentState */ private MoveItemState(FloatPoint p_location, Set p_item_list, Set p_component_list, - Component p_first_component, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + Component p_first_component, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); this.component_list = p_component_list; this.grid_snap_component = p_first_component; this.current_position = p_location.round(); this.previous_position = current_position; - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.MOVE_ITEMS, p_location); + activityReplayFile.start_scope(ActivityReplayFileScope.MOVE_ITEMS, p_location); } eu.mihosoft.freerouting.board.BasicBoard routing_board = hdlg.get_routing_board(); this.observers_activated = !hdlg.get_routing_board().observers_active(); @@ -239,9 +239,9 @@ public class MoveItemState extends InteractiveState { super.mouse_moved(); move(hdlg.get_current_mouse_position()); - if (logfile != null) + if (activityReplayFile != null) { - logfile.add_corner(this.current_position.to_float()); + activityReplayFile.add_corner(this.current_position.to_float()); } return this; } @@ -284,9 +284,9 @@ public class MoveItemState extends InteractiveState this.hdlg.update_ratsnest(curr_net_items.net_no); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } hdlg.screen_messages.set_status_message(resources.getString("move_completed")); hdlg.repaint(); @@ -300,9 +300,9 @@ public class MoveItemState extends InteractiveState { this.hdlg.update_ratsnest(curr_net_items.net_no); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.CANCEL_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.CANCEL_SCOPE); } return this.return_state; } @@ -390,9 +390,9 @@ public class MoveItemState extends InteractiveState { this.hdlg.update_ratsnest(curr_net_items.net_no, curr_net_items.items); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.TURN_90_DEGREE, p_factor); + activityReplayFile.start_scope(ActivityReplayFileScope.TURN_90_DEGREE, p_factor); } hdlg.repaint(); } @@ -420,9 +420,9 @@ public class MoveItemState extends InteractiveState { this.hdlg.update_ratsnest(curr_net_items.net_no, curr_net_items.items); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.ROTATE, (int) p_angle_in_degree); + activityReplayFile.start_scope(ActivityReplayFileScope.ROTATE, (int) p_angle_in_degree); } hdlg.repaint(); } @@ -496,9 +496,9 @@ public class MoveItemState extends InteractiveState { this.hdlg.update_ratsnest(curr_net_items.net_no, curr_net_items.items); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.CHANGE_PLACEMENT_SIDE); + activityReplayFile.start_scope(ActivityReplayFileScope.CHANGE_PLACEMENT_SIDE); } hdlg.repaint(); } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/PinSwapState.java b/src/main/java/eu/mihosoft/freerouting/interactive/PinSwapState.java index 9153484..d55e9e5 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/PinSwapState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/PinSwapState.java @@ -35,9 +35,9 @@ import eu.mihosoft.freerouting.board.ItemSelectionFilter; */ public class PinSwapState extends InteractiveState { - public static InteractiveState get_instance(Pin p_pin_to_swap, InteractiveState p_return_state, BoardHandling p_board_handling, Logfile p_logfile) + public static InteractiveState get_instance(Pin p_pin_to_swap, InteractiveState p_return_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - PinSwapState new_state = new PinSwapState(p_pin_to_swap, p_return_state, p_board_handling, p_logfile); + PinSwapState new_state = new PinSwapState(p_pin_to_swap, p_return_state, p_board_handling, p_activityReplayFile); if (new_state.swappable_pins.isEmpty()) { new_state.hdlg.screen_messages.set_status_message(new_state.resources.getString("no_swappable_pin_found")); @@ -47,9 +47,9 @@ public class PinSwapState extends InteractiveState return new_state; } /** Creates a new instance of PinSwapState */ - private PinSwapState(Pin p_pin_to_swap, InteractiveState p_return_state, BoardHandling p_board_handling, Logfile p_logfile) + private PinSwapState(Pin p_pin_to_swap, InteractiveState p_return_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_return_state, p_board_handling, p_logfile); + super(p_return_state, p_board_handling, p_activityReplayFile); this.from_pin = p_pin_to_swap; this.swappable_pins = p_pin_to_swap.get_swappable_pins(); } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/PolygonShapeConstructionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/PolygonShapeConstructionState.java index 7b6c78c..9535ca7 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/PolygonShapeConstructionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/PolygonShapeConstructionState.java @@ -42,18 +42,18 @@ public class PolygonShapeConstructionState extends CornerItemConstructionState * Returns a new instance of this class * If p_logfile != null; the creation of this item is stored in a logfile */ - public static PolygonShapeConstructionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public static PolygonShapeConstructionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - return new PolygonShapeConstructionState(p_location, p_parent_state, p_board_handling, p_logfile); + return new PolygonShapeConstructionState(p_location, p_parent_state, p_board_handling, p_activityReplayFile); } /** Creates a new instance of PolygonShapeConstructionState */ - private PolygonShapeConstructionState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + private PolygonShapeConstructionState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); - if (this.logfile != null) + super(p_parent_state, p_board_handling, p_activityReplayFile); + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.CREATING_POLYGONSHAPE); + activityReplayFile.start_scope(ActivityReplayFileScope.CREATING_POLYGONSHAPE); } this.add_corner(p_location); } @@ -112,9 +112,9 @@ public class PolygonShapeConstructionState extends CornerItemConstructionState { hdlg.screen_messages.set_status_message(resources.getString("keepout_cancelled_because_of_overlaps")); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } return this.return_state; } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/RouteMenuState.java b/src/main/java/eu/mihosoft/freerouting/interactive/RouteMenuState.java index 69120a8..3f26b66 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/RouteMenuState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/RouteMenuState.java @@ -34,21 +34,21 @@ import eu.mihosoft.freerouting.geometry.planar.FloatPoint; public class RouteMenuState extends MenuState { /** Returns a new instance of RouteMenuState */ - public static RouteMenuState get_instance(BoardHandling p_board_handling, Logfile p_logfile) + public static RouteMenuState get_instance(BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - RouteMenuState new_state = new RouteMenuState(p_board_handling, p_logfile); + RouteMenuState new_state = new RouteMenuState(p_board_handling, p_activityReplayFile); return new_state; } /** Creates a new instance of RouteMenuState */ - private RouteMenuState(BoardHandling p_board_handling, Logfile p_logfile) + private RouteMenuState(BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_board_handling, p_logfile); + super(p_board_handling, p_activityReplayFile); } public InteractiveState left_button_clicked(FloatPoint p_location) { - return RouteState.get_instance(p_location, this, hdlg, logfile); + return RouteState.get_instance(p_location, this, hdlg, activityReplayFile); } public void display_default_message() diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/RouteState.java b/src/main/java/eu/mihosoft/freerouting/interactive/RouteState.java index a46e0a2..35271cf 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/RouteState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/RouteState.java @@ -51,7 +51,7 @@ public class RouteState extends InteractiveState * If p_logfile != null, the creation of the route is stored * in the logfile. **/ - public static RouteState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public static RouteState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { if (!(p_parent_state instanceof MenuState)) { @@ -164,11 +164,11 @@ public class RouteState extends InteractiveState RouteState new_instance; if (is_stitch_route) { - new_instance = new StitchRouteState(p_parent_state, p_board_handling, p_logfile); + new_instance = new StitchRouteState(p_parent_state, p_board_handling, p_activityReplayFile); } else { - new_instance = new DynamicRouteState(p_parent_state, p_board_handling, p_logfile); + new_instance = new DynamicRouteState(p_parent_state, p_board_handling, p_activityReplayFile); } new_instance.routing_target_set = picked_item.get_unconnected_set(-1); @@ -186,9 +186,9 @@ public class RouteState extends InteractiveState p_board_handling.repaint(); if (new_instance != null) { - if (new_instance.logfile != null) + if (new_instance.activityReplayFile != null) { - new_instance.logfile.start_scope(LogfileScope.CREATING_TRACE, p_location); + new_instance.activityReplayFile.start_scope(ActivityReplayFileScope.CREATING_TRACE, p_location); p_board_handling.hide_ratsnest(); } new_instance.display_default_message(); @@ -201,9 +201,9 @@ public class RouteState extends InteractiveState * If p_logfile != null, the creation of the route is stored * in the logfile. */ - protected RouteState(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + protected RouteState(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); } /** @@ -359,9 +359,9 @@ public class RouteState extends InteractiveState boolean route_completed = route.next_corner(p_location); String layer_string = hdlg.get_routing_board().layer_structure.arr[route.nearest_target_layer()].name; hdlg.screen_messages.set_target_layer(layer_string); - if (this.logfile != null) + if (this.activityReplayFile != null) { - this.logfile.add_corner(p_location); + this.activityReplayFile.add_corner(p_location); } if (route_completed) { @@ -411,9 +411,9 @@ public class RouteState extends InteractiveState hdlg.get_routing_board().end_notify_observers(); this.observers_activated = false; } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.CANCEL_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.CANCEL_SCOPE); } hdlg.screen_messages.clear(); for (int curr_net_no : this.route.net_no_arr) @@ -496,9 +496,9 @@ public class RouteState extends InteractiveState // make the current situation restorable by undo hdlg.get_routing_board().generate_snapshot(); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.CHANGE_LAYER, p_new_layer); + activityReplayFile.start_scope(ActivityReplayFileScope.CHANGE_LAYER, p_new_layer); } } else diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/SelectItemsInRegionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/SelectItemsInRegionState.java index f6e2e3e..82746bc 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/SelectItemsInRegionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/SelectItemsInRegionState.java @@ -44,24 +44,24 @@ public class SelectItemsInRegionState extends SelectRegionState * Returns a new instance of this class. */ public static SelectItemsInRegionState get_instance(InteractiveState p_parent_state, - BoardHandling p_board_handling, Logfile p_logfile) + BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - return get_instance(null, p_parent_state, p_board_handling, p_logfile); + return get_instance(null, p_parent_state, p_board_handling, p_activityReplayFile); } /** * Returns a new instance of this class with first point p_location. */ public static SelectItemsInRegionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, - BoardHandling p_board_handling, Logfile p_logfile) + BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { p_board_handling.display_layer_messsage(); SelectItemsInRegionState new_instance = - new SelectItemsInRegionState(p_parent_state, p_board_handling, p_logfile); + new SelectItemsInRegionState(p_parent_state, p_board_handling, p_activityReplayFile); new_instance.corner1 = p_location; - if (new_instance.logfile != null) + if (new_instance.activityReplayFile != null) { - new_instance.logfile.add_corner(p_location); + new_instance.activityReplayFile.add_corner(p_location); } new_instance.hdlg.screen_messages.set_status_message(new_instance.resources.getString("drag_left_mouse_button_to_selects_items_in_region")); return new_instance; @@ -69,12 +69,12 @@ public class SelectItemsInRegionState extends SelectRegionState /** Creates a new instance of SelectItemsInRegionState */ private SelectItemsInRegionState(InteractiveState p_parent_state, - BoardHandling p_board_handling, Logfile p_logfile) + BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); - if (logfile != null) + super(p_parent_state, p_board_handling, p_activityReplayFile); + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.SELECT_REGION); + activityReplayFile.start_scope(ActivityReplayFileScope.SELECT_REGION); } } @@ -84,9 +84,9 @@ public class SelectItemsInRegionState extends SelectRegionState { hdlg.screen_messages.set_status_message(""); corner2 = hdlg.get_current_mouse_position(); - if (logfile != null) + if (activityReplayFile != null) { - logfile.add_corner(corner2); + activityReplayFile.add_corner(corner2); } this.select_all_in_region(); } @@ -140,7 +140,7 @@ public class SelectItemsInRegionState extends SelectRegionState } else { - this.return_state = SelectedItemState.get_instance(found_items, this.return_state, hdlg, logfile); + this.return_state = SelectedItemState.get_instance(found_items, this.return_state, hdlg, activityReplayFile); } } else diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/SelectMenuState.java b/src/main/java/eu/mihosoft/freerouting/interactive/SelectMenuState.java index 1c1f08c..1df6d30 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/SelectMenuState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/SelectMenuState.java @@ -34,16 +34,16 @@ import eu.mihosoft.freerouting.geometry.planar.FloatPoint; public class SelectMenuState extends MenuState { /** Returns a new instance of SelectMenuState */ - public static SelectMenuState get_instance(BoardHandling p_board_handling, Logfile p_logfile) + public static SelectMenuState get_instance(BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - SelectMenuState new_state = new SelectMenuState(p_board_handling, p_logfile); + SelectMenuState new_state = new SelectMenuState(p_board_handling, p_activityReplayFile); return new_state; } /** Creates a new instance of SelectMenuState */ - private SelectMenuState(BoardHandling p_board_handling, Logfile p_logfile) + private SelectMenuState(BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_board_handling, p_logfile); + super(p_board_handling, p_activityReplayFile); } public InteractiveState left_button_clicked(FloatPoint p_location) @@ -54,7 +54,7 @@ public class SelectMenuState extends MenuState public InteractiveState mouse_dragged(FloatPoint p_point) { - return SelectItemsInRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, logfile); + return SelectItemsInRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, activityReplayFile); } public void display_default_message() diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/SelectRegionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/SelectRegionState.java index eb97829..f50983c 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/SelectRegionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/SelectRegionState.java @@ -34,9 +34,9 @@ public class SelectRegionState extends InteractiveState { /** Creates a new instance of SelectRegionState */ - protected SelectRegionState(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + protected SelectRegionState(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); } public InteractiveState button_released() @@ -50,9 +50,9 @@ public class SelectRegionState extends InteractiveState if (corner1 == null) { corner1 = p_point; - if (logfile != null) + if (activityReplayFile != null) { - logfile.add_corner(corner1); + activityReplayFile.add_corner(corner1); } } hdlg.repaint(); diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/SelectedItemState.java b/src/main/java/eu/mihosoft/freerouting/interactive/SelectedItemState.java index 4450bfd..5413577 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/SelectedItemState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/SelectedItemState.java @@ -66,20 +66,20 @@ public class SelectedItemState extends InteractiveState * Creates a new SelectedItemState with with the items in p_item_list selected. * Returns null, if p_item_list is empty. */ - public static SelectedItemState get_instance(Set p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public static SelectedItemState get_instance(Set p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { if (p_item_list.isEmpty()) { return null; } - SelectedItemState new_state = new SelectedItemState(p_item_list, p_parent_state, p_board_handling, p_logfile); + SelectedItemState new_state = new SelectedItemState(p_item_list, p_parent_state, p_board_handling, p_activityReplayFile); return new_state; } /** Creates a new instance of SelectedItemState */ - private SelectedItemState(Set p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + private SelectedItemState(Set p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); item_list = p_item_list; } @@ -98,7 +98,7 @@ public class SelectedItemState extends InteractiveState public InteractiveState mouse_dragged(FloatPoint p_point) { - return SelectItemsInRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, logfile); + return SelectItemsInRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, activityReplayFile); } /** @@ -135,7 +135,7 @@ public class SelectedItemState extends InteractiveState else if (p_key_char == 'm') { result = MoveItemState.get_instance(hdlg.get_current_mouse_position(), item_list, - this.return_state, hdlg, logfile); + this.return_state, hdlg, activityReplayFile); } else if (p_key_char == 'n') { @@ -147,7 +147,7 @@ public class SelectedItemState extends InteractiveState } else if (p_key_char == 'r') { - result = ZoomRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, logfile); + result = ZoomRegionState.get_instance(hdlg.get_current_mouse_position(), this, hdlg, activityReplayFile); } else if (p_key_char == 's') { @@ -190,9 +190,9 @@ public class SelectedItemState extends InteractiveState curr_ob.set_fixed_state(FixedState.USER_FIXED); } } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.FIX_SELECTED_ITEMS); + activityReplayFile.start_scope(ActivityReplayFileScope.FIX_SELECTED_ITEMS); } } @@ -207,9 +207,9 @@ public class SelectedItemState extends InteractiveState Item curr_ob = it.next(); curr_ob.unfix(); } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.UNFIX_SELECTED_ITEMS); + activityReplayFile.start_scope(ActivityReplayFileScope.UNFIX_SELECTED_ITEMS); } } @@ -253,9 +253,9 @@ public class SelectedItemState extends InteractiveState { hdlg.screen_messages.set_status_message(resources.getString("new_net_created_from_selected_items")); } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.ASSIGN_SELECTED_TO_NEW_NET); + activityReplayFile.start_scope(ActivityReplayFileScope.ASSIGN_SELECTED_TO_NEW_NET); } hdlg.update_ratsnest(); hdlg.repaint(); @@ -321,9 +321,9 @@ public class SelectedItemState extends InteractiveState } board.insert_pin(new_component.no, i, net_no_arr, curr_via.clearance_class_no(), curr_via.get_fixed_state()); } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.ASSIGN_SELECTED_TO_NEW_GROUP); + activityReplayFile.start_scope(ActivityReplayFileScope.ASSIGN_SELECTED_TO_NEW_GROUP); } hdlg.repaint(); return this.return_state; @@ -366,9 +366,9 @@ public class SelectedItemState extends InteractiveState { hdlg.screen_messages.set_status_message(resources.getString("some_items_are_fixed_and_could_therefore_not_be_removed")); } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.DELETE_SELECTED); + activityReplayFile.start_scope(ActivityReplayFileScope.DELETE_SELECTED); } for (Integer curr_net_no : changed_nets) @@ -384,7 +384,7 @@ public class SelectedItemState extends InteractiveState */ public InteractiveState cutout_items() { - return CutoutRouteState.get_instance(this.item_list, this.return_state, hdlg, logfile); + return CutoutRouteState.get_instance(this.item_list, this.return_state, hdlg, activityReplayFile); } /** @@ -485,9 +485,9 @@ public class SelectedItemState extends InteractiveState hdlg.screen_messages.set_status_message(end_message); } hdlg.set_board_read_only(saved_board_read_only); - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.AUTOROUTE_SELECTED); + activityReplayFile.start_scope(ActivityReplayFileScope.AUTOROUTE_SELECTED); } hdlg.update_ratsnest(); if (!ratsnest_hidden_before) @@ -572,9 +572,9 @@ public class SelectedItemState extends InteractiveState hdlg.screen_messages.set_status_message(end_message); } hdlg.set_board_read_only(saved_board_read_only); - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.FANOUT_SELECTED); + activityReplayFile.start_scope(ActivityReplayFileScope.FANOUT_SELECTED); } hdlg.update_ratsnest(); if (!ratsnest_hidden_before) @@ -649,9 +649,9 @@ public class SelectedItemState extends InteractiveState hdlg.screen_messages.set_status_message(end_message); } hdlg.set_board_read_only(saved_board_read_only); - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.OPTIMIZE_SELECTED); + activityReplayFile.start_scope(ActivityReplayFileScope.OPTIMIZE_SELECTED); } hdlg.update_ratsnest(); return this.return_state; @@ -667,10 +667,10 @@ public class SelectedItemState extends InteractiveState { return this.return_state; } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.ASSIGN_CLEARANCE_CLASS); - logfile.add_int(p_cl_class_index); + activityReplayFile.start_scope(ActivityReplayFileScope.ASSIGN_CLEARANCE_CLASS); + activityReplayFile.add_int(p_cl_class_index); } // make the situation restorable by undo routing_board.generate_snapshot(); @@ -717,9 +717,9 @@ public class SelectedItemState extends InteractiveState { return this.return_state; } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.EXTEND_TO_WHOLE_NETS); + activityReplayFile.start_scope(ActivityReplayFileScope.EXTEND_TO_WHOLE_NETS); } filter(); hdlg.repaint(); @@ -756,9 +756,9 @@ public class SelectedItemState extends InteractiveState return this.return_state; } this.item_list = new_selected_items; - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.EXTEND_TO_WHOLE_COMPONENTS); + activityReplayFile.start_scope(ActivityReplayFileScope.EXTEND_TO_WHOLE_COMPONENTS); } hdlg.repaint(); return this; @@ -784,9 +784,9 @@ public class SelectedItemState extends InteractiveState return this.return_state; } this.item_list = new_selected_items; - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.EXTEND_TO_WHOLE_CONNECTED_SETS); + activityReplayFile.start_scope(ActivityReplayFileScope.EXTEND_TO_WHOLE_CONNECTED_SETS); } filter(); hdlg.repaint(); @@ -813,9 +813,9 @@ public class SelectedItemState extends InteractiveState return this.return_state; } this.item_list = new_selected_items; - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.EXTEND_TO_WHOLE_CONNECTIONS); + activityReplayFile.start_scope(ActivityReplayFileScope.EXTEND_TO_WHOLE_CONNECTIONS); } filter(); hdlg.repaint(); @@ -858,9 +858,9 @@ public class SelectedItemState extends InteractiveState { result = this; } - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.TOGGLE_SELECT, p_point); + activityReplayFile.start_scope(ActivityReplayFileScope.TOGGLE_SELECT, p_point); } return result; } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/Settings.java b/src/main/java/eu/mihosoft/freerouting/interactive/Settings.java index 4602611..bc54293 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/Settings.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/Settings.java @@ -34,9 +34,9 @@ import eu.mihosoft.freerouting.board.RoutingBoard; public class Settings implements java.io.Serializable { /** Creates a new eu.mihosoft.freerouting.interactive settings variable. */ - public Settings(RoutingBoard p_board, Logfile p_logfile) + public Settings(RoutingBoard p_board, ActivityReplayFile p_activityReplayFile) { - this.logfile = p_logfile; + this.activityReplayFile = p_activityReplayFile; // Initialise with default values. layer = 0; push_enabled = true; @@ -69,7 +69,7 @@ public class Settings implements java.io.Serializable */ public Settings(Settings p_settings) { - this.logfile = p_settings.logfile; + this.activityReplayFile = p_settings.activityReplayFile; this.read_only = p_settings.read_only; this.layer = p_settings.layer; this.push_enabled = p_settings.push_enabled; @@ -304,7 +304,7 @@ public class Settings implements java.io.Serializable return; } push_enabled = p_value; - logfile.start_scope(LogfileScope.SET_PUSH_ENABLED, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_PUSH_ENABLED, p_value); } /** @@ -317,7 +317,7 @@ public class Settings implements java.io.Serializable return; } drag_components_enabled = p_value; - logfile.start_scope(LogfileScope.SET_DRAG_COMPONENTS_ENABLED, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_DRAG_COMPONENTS_ENABLED, p_value); } @@ -332,7 +332,7 @@ public class Settings implements java.io.Serializable return; } select_on_all_visible_layers = p_value; - logfile.start_scope(LogfileScope.SET_SELECT_ON_ALL_LAYER, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_SELECT_ON_ALL_LAYER, p_value); } /** Route mode: stitching or dynamic */ @@ -344,7 +344,7 @@ public class Settings implements java.io.Serializable } is_stitch_route = p_value; - logfile.start_scope(LogfileScope.SET_STITCH_ROUTE, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_STITCH_ROUTE, p_value); } /** @@ -357,7 +357,7 @@ public class Settings implements java.io.Serializable return; } trace_pull_tight_region_width = p_value; - logfile.start_scope(LogfileScope.SET_PULL_TIGHT_REGION_WIDTH, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_PULL_TIGHT_REGION_WIDTH, p_value); } /** @@ -370,7 +370,7 @@ public class Settings implements java.io.Serializable return; } trace_pull_tight_accuracy = p_value; - logfile.start_scope(LogfileScope.SET_PULL_TIGHT_ACCURACY, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_PULL_TIGHT_ACCURACY, p_value); } /** @@ -396,7 +396,7 @@ public class Settings implements java.io.Serializable return; } manual_rule_selection = p_value; - logfile.start_scope(LogfileScope.SET_MANUAL_TRACEWITH_SELECTION, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_MANUAL_TRACEWITH_SELECTION, p_value); } /** @@ -409,8 +409,8 @@ public class Settings implements java.io.Serializable return; } manual_trace_half_width_arr[p_layer_no] = p_value; - logfile.start_scope(LogfileScope.SET_MANUAL_TRACE_HALF_WIDTH, p_layer_no); - logfile.add_int(p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_MANUAL_TRACE_HALF_WIDTH, p_layer_no); + activityReplayFile.add_int(p_value); } @@ -425,7 +425,7 @@ public class Settings implements java.io.Serializable return; } manual_trace_clearance_class = p_index; - logfile.start_scope(LogfileScope.SET_MANUAL_TRACE_CLEARANCE_CLASS, p_index); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_MANUAL_TRACE_CLEARANCE_CLASS, p_index); } /** @@ -440,9 +440,9 @@ public class Settings implements java.io.Serializable if (zoom_with_wheel != p_value) { zoom_with_wheel = p_value; - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.SET_ZOOM_WITH_WHEEL, p_value); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_ZOOM_WITH_WHEEL, p_value); } } } @@ -458,7 +458,7 @@ public class Settings implements java.io.Serializable } item_selection_filter.set_selected(p_item_type, p_value); - logfile.start_scope(LogfileScope.SET_SELECTABLE, p_item_type.ordinal()); + activityReplayFile.start_scope(ActivityReplayFileScope.SET_SELECTABLE, p_item_type.ordinal()); int logged_value; if (p_value) { @@ -468,7 +468,7 @@ public class Settings implements java.io.Serializable { logged_value = 0; } - logfile.add_int(logged_value); + activityReplayFile.add_int(logged_value); } /** @@ -479,9 +479,9 @@ public class Settings implements java.io.Serializable this.read_only = p_value; } - void set_logfile(Logfile p_logfile) + void set_logfile(ActivityReplayFile p_activityReplayFile) { - this.logfile = p_logfile; + this.activityReplayFile = p_activityReplayFile; } /** Reads an instance of this class from a file */ @@ -583,5 +583,5 @@ public class Settings implements java.io.Serializable * The file used for logging eu.mihosoft.freerouting.interactive action, * so that they can be replayed later */ - private transient Logfile logfile; + private transient ActivityReplayFile activityReplayFile; } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/SnapShot.java b/src/main/java/eu/mihosoft/freerouting/interactive/SnapShot.java index 7a17c56..96b33f3 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/SnapShot.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/SnapShot.java @@ -91,7 +91,7 @@ public class SnapShot implements java.io.Serializable if (snapshot_attributes.interactive_state) { - p_board_handling.set_interactive_state(this.get_interactive_state(p_board_handling, p_board_handling.logfile)); + p_board_handling.set_interactive_state(this.get_interactive_state(p_board_handling, p_board_handling.activityReplayFile)); } if (snapshot_attributes.selection_layers) { @@ -143,20 +143,20 @@ public class SnapShot implements java.io.Serializable /** * Returns a new InterativeState from the data of this instance. */ - public InteractiveState get_interactive_state(BoardHandling p_board_handling, Logfile p_logfile) + public InteractiveState get_interactive_state(BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { InteractiveState result; if (this.interactive_state_no == 1) { - result = RouteMenuState.get_instance(p_board_handling, p_logfile); + result = RouteMenuState.get_instance(p_board_handling, p_activityReplayFile); } else if (this.interactive_state_no == 2) { - result = DragMenuState.get_instance(p_board_handling, p_logfile); + result = DragMenuState.get_instance(p_board_handling, p_activityReplayFile); } else { - result = SelectMenuState.get_instance(p_board_handling, p_logfile); + result = SelectMenuState.get_instance(p_board_handling, p_activityReplayFile); } return result; } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/StitchRouteState.java b/src/main/java/eu/mihosoft/freerouting/interactive/StitchRouteState.java index e98608a..6c8725e 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/StitchRouteState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/StitchRouteState.java @@ -35,9 +35,9 @@ public class StitchRouteState extends RouteState { /** Creates a new instance of StichRouteState */ - protected StitchRouteState(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + protected StitchRouteState(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); + super(p_parent_state, p_board_handling, p_activityReplayFile); } public InteractiveState left_button_clicked(FloatPoint p_location) diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/TileConstructionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/TileConstructionState.java index 75e1592..656de75 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/TileConstructionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/TileConstructionState.java @@ -49,18 +49,18 @@ public class TileConstructionState extends CornerItemConstructionState * Returns a new instance of this class * If p_logfile != null; the creation of this item is stored in a logfile */ - public static TileConstructionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public static TileConstructionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - return new TileConstructionState(p_location, p_parent_state, p_board_handling, p_logfile); + return new TileConstructionState(p_location, p_parent_state, p_board_handling, p_activityReplayFile); } /** Creates a new instance of TileConstructionState */ - private TileConstructionState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + private TileConstructionState(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); - if (this.logfile != null) + super(p_parent_state, p_board_handling, p_activityReplayFile); + if (this.activityReplayFile != null) { - logfile.start_scope(LogfileScope.CREATING_TILE); + activityReplayFile.start_scope(ActivityReplayFileScope.CREATING_TILE); } this.add_corner(p_location); } @@ -131,9 +131,9 @@ public class TileConstructionState extends CornerItemConstructionState { hdlg.screen_messages.set_status_message(resources.getString("keepout_cancelled_because_of_overlaps")); } - if (logfile != null) + if (activityReplayFile != null) { - logfile.start_scope(LogfileScope.COMPLETE_SCOPE); + activityReplayFile.start_scope(ActivityReplayFileScope.COMPLETE_SCOPE); } return this.return_state; } diff --git a/src/main/java/eu/mihosoft/freerouting/interactive/ZoomRegionState.java b/src/main/java/eu/mihosoft/freerouting/interactive/ZoomRegionState.java index dc14018..02eccc1 100644 --- a/src/main/java/eu/mihosoft/freerouting/interactive/ZoomRegionState.java +++ b/src/main/java/eu/mihosoft/freerouting/interactive/ZoomRegionState.java @@ -37,29 +37,29 @@ public class ZoomRegionState extends SelectRegionState /** * Returns a new instance of this class. */ - public static ZoomRegionState get_instance(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public static ZoomRegionState get_instance(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - return get_instance(null, p_parent_state, p_board_handling, p_logfile); + return get_instance(null, p_parent_state, p_board_handling, p_activityReplayFile); } /** * Returns a new instance of this class with first point p_location. */ - public static ZoomRegionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public static ZoomRegionState get_instance(FloatPoint p_location, InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - ZoomRegionState new_instance = new ZoomRegionState(p_parent_state, p_board_handling, p_logfile); + ZoomRegionState new_instance = new ZoomRegionState(p_parent_state, p_board_handling, p_activityReplayFile); new_instance.corner1 = p_location; new_instance.hdlg.screen_messages.set_status_message(new_instance.resources.getString("drag_left_mouse_button_to_create_region_to_display")); return new_instance; } /** Creates a new instance of ZoomRegionState */ - public ZoomRegionState(InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile) + public ZoomRegionState(InteractiveState p_parent_state, BoardHandling p_board_handling, ActivityReplayFile p_activityReplayFile) { - super(p_parent_state, p_board_handling, p_logfile); - if (this.logfile != null) + super(p_parent_state, p_board_handling, p_activityReplayFile); + if (this.activityReplayFile != null) { - logfile.start_scope(eu.mihosoft.freerouting.interactive.LogfileScope.ZOOM_FRAME); + activityReplayFile.start_scope(ActivityReplayFileScope.ZOOM_FRAME); } } @@ -67,9 +67,9 @@ public class ZoomRegionState extends SelectRegionState { corner2 = hdlg.get_current_mouse_position(); zoom_region(); - if (this.logfile != null) + if (this.activityReplayFile != null) { - logfile.add_corner(corner2); + activityReplayFile.add_corner(corner2); } return this.return_state; }