|
@@ -237,6 +237,12 @@ public class TemplateUtils {
|
|
|
public static void calcYizhiTemplatesAndDraw(List<TemplateConfig> templateConfigs,Graphics g){
|
|
|
List<Template> oneAlignWall = new ArrayList<>();
|
|
|
List<Template> twoAlignWall = new ArrayList<>();
|
|
|
+ getOneAndTwoAlignTemplate(templateConfigs, oneAlignWall, twoAlignWall);
|
|
|
+ drawTwoAlignWallTemplates(twoAlignWall,g);
|
|
|
+ drawOneAlignWallTemplates(oneAlignWall,g);
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void getOneAndTwoAlignTemplate(List<TemplateConfig> templateConfigs, List<Template> oneAlignWall, List<Template> twoAlignWall) {
|
|
|
for (TemplateConfig templateConfig : templateConfigs){
|
|
|
Template template = new Template(templateConfig);
|
|
|
List<Integer> alignWall = template.getAlignWall();
|
|
@@ -246,8 +252,6 @@ public class TemplateUtils {
|
|
|
twoAlignWall.add(template);
|
|
|
}
|
|
|
}
|
|
|
- drawTwoAlignWallTemplates(twoAlignWall,g);
|
|
|
- drawOneAlignWallTemplates(oneAlignWall,g);
|
|
|
}
|
|
|
|
|
|
private static void drawTwoAlignWallTemplates(List<Template> twoAlignWall, Graphics g) {
|
|
@@ -314,4 +318,119 @@ public class TemplateUtils {
|
|
|
public static void setTemplateIndex(int templateIndex) {
|
|
|
TemplateUtils.templateIndex = templateIndex;
|
|
|
}
|
|
|
+ /**
|
|
|
+ * posintion like [321, 312, 943]
|
|
|
+ * @param position
|
|
|
+ * @param templateConfigs
|
|
|
+ * @param g
|
|
|
+ */
|
|
|
+ public static void drawTemplateWithArray(List<Integer> position,List<TemplateConfig> templateConfigs,Graphics g){
|
|
|
+ List<Template> oneAlignWall = new ArrayList<>();
|
|
|
+ List<Template> twoAlignWall = new ArrayList<>();
|
|
|
+ getOneAndTwoAlignTemplate(templateConfigs, oneAlignWall, twoAlignWall);
|
|
|
+ int twoAlignPosition = position.get(2);
|
|
|
+ //画2边贴墙
|
|
|
+ drawAlignTwoTemplateWithArrayPosition(g, twoAlignWall, twoAlignPosition);
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void drawAlignTwoTemplateWithArrayPosition(Graphics g, List<Template> twoAlignWall, int twoAlignPosition) {
|
|
|
+ int wallPointIndex = twoAlignPosition%100/10;
|
|
|
+ int alignIndex = twoAlignPosition%10;
|
|
|
+ Template twoAlignWallTemplate = twoAlignWall.get(0);
|
|
|
+ int templateX = twoAlignWallTemplate.getX();
|
|
|
+ int templateY = twoAlignWallTemplate.getY();
|
|
|
+ System.out.println("drawAlignTwoTemplateWithArrayPosition 1 ="+templateX+","+templateY);
|
|
|
+ switch (wallPointIndex){
|
|
|
+ case 2:
|
|
|
+ twoAlignWallTemplate.setX(templateX+room.getLength());
|
|
|
+ break;
|
|
|
+ case 3:
|
|
|
+ twoAlignWallTemplate.setX(templateX+room.getLength());
|
|
|
+ twoAlignWallTemplate.setY(templateY-room.getWidth());
|
|
|
+ break;
|
|
|
+ case 4:
|
|
|
+ twoAlignWallTemplate.setY(templateY-room.getWidth());
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ System.out.println("drawAlignTwoTemplateWithArrayPosition 2 ="+twoAlignWallTemplate.getX()+","+twoAlignWallTemplate.getY());
|
|
|
+ if(alignIndex!=4){
|
|
|
+ routeTemplate(twoAlignWallTemplate,alignIndex);
|
|
|
+ }
|
|
|
+ saveTemplate(twoAlignWallTemplate,g);
|
|
|
+ }
|
|
|
+ public static void saveTemplate(Template template, Graphics g){
|
|
|
+ if(null == room){
|
|
|
+ System.out.println("--------------room is not exist !!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ saveTemplateName(template,g);
|
|
|
+ saveTemplateSelf(template,g);
|
|
|
+ saveShadow(template,g);
|
|
|
+ }
|
|
|
+ private static void saveTemplateName(Template template, Graphics g) {
|
|
|
+ int x1 = room.getX()+template.getX()+template.getLength()/2;
|
|
|
+ int y1 = room.getY()+template.getY()+template.getWidth()/2;
|
|
|
+ g.drawString(template.getName(), x1, y1);
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void saveTemplateSelf(Template template, Graphics g){
|
|
|
+ int length = template.getLength();
|
|
|
+ int width = template.getWidth();
|
|
|
+ int x1 = room.getX()+template.getX();
|
|
|
+ int y1 = room.getY()+template.getY();
|
|
|
+
|
|
|
+ Graphics2D g2d = (Graphics2D) g.create();
|
|
|
+ g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
|
|
+ g2d.setColor(templateColors[templateIndex++%templateColors.length]);
|
|
|
+ if(length < 0){
|
|
|
+ length=-length;
|
|
|
+ x1 = x1-length;
|
|
|
+ }
|
|
|
+ if(width < 0){
|
|
|
+ width=-width;
|
|
|
+ y1=y1-width;
|
|
|
+ }
|
|
|
+ g2d.drawRect(x1,y1,length,width);
|
|
|
+ drawAlignWall(template, length, width, x1, y1, g2d);
|
|
|
+
|
|
|
+ g2d.dispose();
|
|
|
+ }
|
|
|
+ private static void saveShadow(Template template, Graphics g){
|
|
|
+ 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);
|
|
|
+ int x1,y1,x2,y2;
|
|
|
+ Graphics2D g2d = (Graphics2D) g.create();
|
|
|
+ g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
|
|
+ g2d.setColor(Color.GRAY);
|
|
|
+ int shadowWidth = shadow.getWidth();
|
|
|
+ if(shadowWidth < 0){
|
|
|
+ shadowWidth = -shadowWidth;
|
|
|
+ }
|
|
|
+ switch (shadow.getDirect()){
|
|
|
+ case 1:
|
|
|
+ x1 = cx-shadow.getWidth()/2;
|
|
|
+ y1 = cy;
|
|
|
+ g2d.drawRect(x1,y1,shadowWidth,shadow.getRadis());
|
|
|
+ break;
|
|
|
+ case 2:
|
|
|
+ x1 = cx;
|
|
|
+ y1 = cy - shadowWidth/2;
|
|
|
+ g2d.drawRect(x1,y1,shadow.getRadis(),shadowWidth);
|
|
|
+ break;
|
|
|
+ case 3:
|
|
|
+ x1 = cx-shadow.getRadis()/2;
|
|
|
+ y1 = cy-shadowWidth;
|
|
|
+ g2d.drawRect(x1,y1,shadowWidth,shadow.getRadis());
|
|
|
+ break;
|
|
|
+ case 4:
|
|
|
+ x1 = cx-shadow.getRadis();
|
|
|
+ y1 = cy-shadowWidth/2;
|
|
|
+ g2d.drawRect(x1,y1,shadow.getRadis(),shadowWidth);
|
|
|
+ break;
|
|
|
+ default:break;
|
|
|
+ }
|
|
|
+ g2d.dispose();
|
|
|
+ }
|
|
|
}
|