Skip to content

Commit

Permalink
devops
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Mar 10, 2020
1 parent e933d5d commit ad35260
Show file tree
Hide file tree
Showing 31 changed files with 71 additions and 79 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package org.woehlke.simulation.evolution;
package org.woehlke.computer.kurzweil.simulation.evolution;

import static org.woehlke.simulation.evolution.config.GuiConfigDefault.TITLE;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigDefault.TITLE;

import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.simulation.evolution.view.SimulatedEvolutionFrame;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.view.SimulatedEvolutionFrame;

/**
* Class with main Method for Starting the Desktop Application.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

import java.awt.Color;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

import org.woehlke.simulation.evolution.model.Point;
import org.woehlke.computer.kurzweil.simulation.evolution.model.Point;

import java.beans.Transient;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.config;
package org.woehlke.computer.kurzweil.simulation.evolution.config;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.woehlke.simulation.evolution.control;
package org.woehlke.computer.kurzweil.simulation.evolution.control;

import org.woehlke.simulation.evolution.config.GuiConfigDefault;
import org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigDefault;

import java.awt.Frame;
import java.awt.event.WindowEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package org.woehlke.simulation.evolution.control;

import org.woehlke.simulation.evolution.config.GuiConfig;
import org.woehlke.simulation.evolution.config.StatisticsConfig;
import org.woehlke.simulation.evolution.config.WorldConfig;
import org.woehlke.simulation.evolution.config.WorldMapFoodConfig;
import org.woehlke.simulation.evolution.model.LifeCycleCountContainer;
import org.woehlke.simulation.evolution.model.World;
import org.woehlke.simulation.evolution.model.WorldMapFood;
import org.woehlke.simulation.evolution.view.*;
package org.woehlke.computer.kurzweil.simulation.evolution.control;

import org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfig;
import org.woehlke.computer.kurzweil.simulation.evolution.config.StatisticsConfig;
import org.woehlke.computer.kurzweil.simulation.evolution.config.WorldConfig;
import org.woehlke.computer.kurzweil.simulation.evolution.config.WorldMapFoodConfig;
import org.woehlke.computer.kurzweil.simulation.evolution.model.LifeCycleCountContainer;
import org.woehlke.computer.kurzweil.simulation.evolution.model.World;
import org.woehlke.computer.kurzweil.simulation.evolution.model.WorldMapFood;
import org.woehlke.computer.kurzweil.simulation.evolution.view.*;

import java.util.Date;
import java.util.Random;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

import java.util.Random;

Expand All @@ -13,9 +13,9 @@
* @author Thomas Woehlke
* Date: 04.02.2006
* Time: 19:06:43
* @see org.woehlke.simulation.evolution.model.CellCore
* @see org.woehlke.simulation.evolution.model.LifeCycle
* @see org.woehlke.simulation.evolution.model.LifeCycleStatus
* @see org.woehlke.computer.kurzweil.simulation.evolution.model.CellCore
* @see org.woehlke.computer.kurzweil.simulation.evolution.model.LifeCycle
* @see org.woehlke.computer.kurzweil.simulation.evolution.model.LifeCycleStatus
* <p>
* &copy; 2006 - 2008 Thomas Woehlke.
* http://thomas-woehlke.de/p/simulated-evolution/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

import java.io.Serializable;
import java.util.List;
import java.util.Random;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

import org.woehlke.simulation.evolution.config.LifeCycleConfigDefault;

import java.io.Serializable;
import org.woehlke.computer.kurzweil.simulation.evolution.config.LifeCycleConfigDefault;

/**
* State of the Cell which monitors age and getting enough food.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package org.woehlke.simulation.evolution.model;

import org.woehlke.simulation.evolution.model.LifeCycleStatus;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;

import java.util.concurrent.ConcurrentLinkedQueue;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

import java.awt.Color;

import static org.woehlke.simulation.evolution.config.GuiConfigColors.*;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigColors.*;

/**
* The Status of the Cell's LifeCycle.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

/**
* Orientation defines the new position after next move.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

/**
* A Point is used to define the Position of Cell or as a Vector for defining Dimensions.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;


import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Random;

/**
* The World contains Water, Cells and Food.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.woehlke.simulation.evolution.model;
package org.woehlke.computer.kurzweil.simulation.evolution.model;

import org.woehlke.simulation.evolution.config.WorldMapFoodConfigDefault;
import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.config.WorldMapFoodConfigDefault;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;


/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.woehlke.simulation.evolution.view;
package org.woehlke.computer.kurzweil.simulation.evolution.view;

import org.woehlke.simulation.evolution.control.ControllerThreadDesktop;
import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;

import javax.swing.JButton;
import javax.swing.JCheckBox;
Expand All @@ -12,9 +11,9 @@
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import static org.woehlke.simulation.evolution.config.GuiConfigDefault.BUTTON_FOOD_DECREASE;
import static org.woehlke.simulation.evolution.config.GuiConfigDefault.BUTTON_FOOD_INCREASE;
import static org.woehlke.simulation.evolution.config.GuiConfigDefault.BUTTON_TOGGLE_GARDEN_OF_EDEN;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigDefault.BUTTON_FOOD_DECREASE;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigDefault.BUTTON_FOOD_INCREASE;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigDefault.BUTTON_TOGGLE_GARDEN_OF_EDEN;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.woehlke.simulation.evolution.view;
package org.woehlke.computer.kurzweil.simulation.evolution.view;

import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;

import javax.swing.JLabel;
import javax.swing.JPanel;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package org.woehlke.simulation.evolution.view;
package org.woehlke.computer.kurzweil.simulation.evolution.view;

import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.simulation.evolution.model.LifeCycleCount;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.model.LifeCycleCount;

import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import java.awt.*;

import static org.woehlke.simulation.evolution.config.GuiConfigColors.*;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigColors.*;

/**
* TODO write doc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.woehlke.simulation.evolution.view;
package org.woehlke.computer.kurzweil.simulation.evolution.view;

import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;

import javax.swing.JLabel;
import javax.swing.JPanel;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.woehlke.simulation.evolution.view;
package org.woehlke.computer.kurzweil.simulation.evolution.view;

import org.woehlke.simulation.evolution.config.GuiConfigDefault;
import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigDefault;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;

import javax.swing.BoxLayout;
import javax.swing.JFrame;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
package org.woehlke.simulation.evolution.view;
package org.woehlke.computer.kurzweil.simulation.evolution.view;

import org.woehlke.simulation.evolution.config.GuiConfigDefault;
import org.woehlke.simulation.evolution.control.ObjectRegistry;
import org.woehlke.simulation.evolution.model.Cell;
import org.woehlke.simulation.evolution.model.Point;
import org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigDefault;
import org.woehlke.computer.kurzweil.simulation.evolution.control.ObjectRegistry;
import org.woehlke.computer.kurzweil.simulation.evolution.model.Cell;
import org.woehlke.computer.kurzweil.simulation.evolution.model.Point;

import javax.swing.JComponent;
import java.awt.Dimension;
import java.awt.Graphics;
import java.io.Serializable;
import java.util.List;

import static org.woehlke.simulation.evolution.config.GuiConfigColors.COLOR_FOOD;
import static org.woehlke.simulation.evolution.config.GuiConfigColors.COLOR_WATER;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigColors.COLOR_FOOD;
import static org.woehlke.computer.kurzweil.simulation.evolution.config.GuiConfigColors.COLOR_WATER;


/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.woehlke.simulation.evolution;
package org.woehlke.computer.kurzweil.simulation.evolution;

import org.junit.Assert;
import org.junit.Test;
Expand Down

0 comments on commit ad35260

Please sign in to comment.