Logfile is renamed to ActivityReplayFile
Logfile is renamed to ActivityReplayFile to better represent its purpose and separate it from the general logging done by log4j.
This commit is contained in:
parent
4ceee1a4ec
commit
526ce1393e
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,283 +1,283 @@
|
|||
/*
|
||||
* Copyright (C) 2014 Alfons Wirtz
|
||||
* website www.freerouting.net
|
||||
*
|
||||
* Copyright (C) 2017 Michael Hoffer <info@michaelhoffer.de>
|
||||
* 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 <http://www.gnu.org/licenses/>
|
||||
* 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 <info@michaelhoffer.de>
|
||||
* 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 <http://www.gnu.org/licenses/>
|
||||
* 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;
|
||||
}
|
|
@ -9,7 +9,7 @@ package eu.mihosoft.freerouting.interactive;
|
|||
* on 06.07.05 18:12 from the specification file
|
||||
* <tt>C:/Dokumente und Einstellungen/alfons/Eigene Dateien/freeroute/eu.mihosoft.freerouting.interactive/LogfileDescription.flex</tt>
|
||||
*/
|
||||
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));
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -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> 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> 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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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<Item> 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<Item> 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<Item>();
|
||||
|
||||
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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -47,16 +47,16 @@ public class CutoutRouteState extends SelectRegionState
|
|||
* Returns a new instance of this class.
|
||||
*/
|
||||
public static CutoutRouteState get_instance( Collection<Item> 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<Item> 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<PolylineTrace> p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile)
|
||||
private CutoutRouteState(Collection<PolylineTrace> 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;
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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')
|
||||
{
|
||||
|
|
|
@ -52,7 +52,7 @@ public class MoveItemState extends InteractiveState
|
|||
* to a single component.
|
||||
*/
|
||||
public static MoveItemState get_instance(FloatPoint p_location, Collection<Item> 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<Item> p_item_list, Set<Component> 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();
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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<Item> p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile)
|
||||
public static SelectedItemState get_instance(Set<Item> 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<Item> p_item_list, InteractiveState p_parent_state, BoardHandling p_board_handling, Logfile p_logfile)
|
||||
private SelectedItemState(Set<Item> 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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue