|
@@ -5,7 +5,7 @@ import config.subConfig.TemplateConfig;
|
|
|
import constant.Constant;
|
|
|
import model.Room;
|
|
|
import model.template.Template;
|
|
|
-import model.template.TemplateShadow;
|
|
|
+import model.template.TemplateClearance;
|
|
|
|
|
|
import java.awt.*;
|
|
|
import java.util.ArrayList;
|
|
@@ -19,6 +19,8 @@ import java.util.List;
|
|
|
public class TemplateUtils {
|
|
|
private static Room room;
|
|
|
private static AxisConfig axisPointConfig;
|
|
|
+ private static Color[] templateColors = {Color.RED,Color.GREEN,Color.blue,Color.CYAN};
|
|
|
+ private static int templateIndex = 0;
|
|
|
public static void drawTemplate(Template template, Graphics g){
|
|
|
if(null == room){
|
|
|
System.out.println("--------------room is not exist !!");
|
|
@@ -43,7 +45,7 @@ public class TemplateUtils {
|
|
|
|
|
|
Graphics2D g2d = (Graphics2D) g.create();
|
|
|
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
|
|
- g2d.setColor(Color.RED);
|
|
|
+ g2d.setColor(templateColors[templateIndex++%templateColors.length]);
|
|
|
if(length < 0){
|
|
|
length=-length;
|
|
|
x1 = x1-length;
|
|
@@ -125,7 +127,7 @@ public class TemplateUtils {
|
|
|
}
|
|
|
|
|
|
public static void routeTemplateShadow(Template template, int rotateRange) {
|
|
|
- TemplateShadow shadow = template.getShadow();
|
|
|
+ TemplateClearance shadow = template.getShadow();
|
|
|
int routeX = template.getX();
|
|
|
int routeY = template.getY();
|
|
|
int shadowX = shadow.getX();
|
|
@@ -169,7 +171,7 @@ public class TemplateUtils {
|
|
|
template.setY(template.getY()+y);
|
|
|
}
|
|
|
private static void drawShadow(Template template, Graphics g){
|
|
|
- TemplateShadow shadow = template.getShadow();
|
|
|
+ TemplateClearance shadow = template.getShadow();
|
|
|
int cx = room.getX()+template.getX()+shadow.getX();
|
|
|
int cy = room.getY()+template.getY()+shadow.getY();
|
|
|
System.out.println(template.getName()+"阴影接入点:"+cx+","+cy);
|
|
@@ -189,22 +191,22 @@ public class TemplateUtils {
|
|
|
case 1:
|
|
|
x1 = cx-shadow.getWidth()/2;
|
|
|
y1 = cy;
|
|
|
- g2d.fillRect(x1,y1,shadowWidth,shadow.getRadis());
|
|
|
+ g2d.drawRect(x1,y1,shadowWidth,shadow.getRadis());
|
|
|
break;
|
|
|
case 2:
|
|
|
x1 = cx;
|
|
|
y1 = cy - shadowWidth/2;
|
|
|
- g2d.fillRect(x1,y1,shadow.getRadis(),shadowWidth);
|
|
|
+ g2d.drawRect(x1,y1,shadow.getRadis(),shadowWidth);
|
|
|
break;
|
|
|
case 3:
|
|
|
x1 = cx-shadow.getRadis()/2;
|
|
|
y1 = cy-shadowWidth;
|
|
|
- g2d.fillRect(x1,y1,shadowWidth,shadow.getRadis());
|
|
|
+ g2d.drawRect(x1,y1,shadowWidth,shadow.getRadis());
|
|
|
break;
|
|
|
case 4:
|
|
|
x1 = cx-shadow.getRadis();
|
|
|
y1 = cy-shadowWidth/2;
|
|
|
- g2d.fillRect(x1,y1,shadow.getRadis(),shadowWidth);
|
|
|
+ g2d.drawRect(x1,y1,shadow.getRadis(),shadowWidth);
|
|
|
break;
|
|
|
default:break;
|
|
|
}
|
|
@@ -270,6 +272,8 @@ public class TemplateUtils {
|
|
|
int roomAlign = 3;
|
|
|
int positionOff = 0;
|
|
|
for (Template template : templates){
|
|
|
+ template.setX(0);
|
|
|
+ template.setY(0);
|
|
|
List<Integer> alignWall = template.getAlignWall();
|
|
|
int templateAlignWall = alignWall.get(0);
|
|
|
int routeTimes = roomAlign-templateAlignWall%4;
|
|
@@ -306,4 +310,8 @@ public class TemplateUtils {
|
|
|
public static void setAxisPointConfig(AxisConfig axisPointConfig) {
|
|
|
TemplateUtils.axisPointConfig = axisPointConfig;
|
|
|
}
|
|
|
+
|
|
|
+ public static void setTemplateIndex(int templateIndex) {
|
|
|
+ TemplateUtils.templateIndex = templateIndex;
|
|
|
+ }
|
|
|
}
|