From 24a2a946b35279605e645349bd6b82e9e60aac88 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Wed, 14 Aug 2019 23:35:34 -0400
Subject: [PATCH] Fix textures in jar.

---
 Object3D.java |   94 +++++++++++++++++++++++++++++------------------
 1 files changed, 58 insertions(+), 36 deletions(-)

diff --git a/Object3D.java b/Object3D.java
index adb076e..3772174 100644
--- a/Object3D.java
+++ b/Object3D.java
@@ -2468,7 +2468,11 @@
         else
         {
             //((ObjEditor)editWindow).SetupUI2(null);
-            ((ObjEditor)objectUI).pinButton.setSelected(pinned);
+            if (objectUI != null)
+                ((ObjEditor)objectUI).pinButton.setSelected(pinned);
+            else
+                //new Exception().printStackTrace();
+                System.err.println("objectUI is null");
         }
     }
 
@@ -5570,6 +5574,11 @@
         if (fullname == null)
             return "";
         
+        if (fullname.pigment != null)
+        {
+            return fullname.pigment;
+        }
+        
    //     System.out.println("Fullname = " + fullname);
         
         // Does not work on Windows due to C:
@@ -5582,7 +5591,7 @@
         
         if (split.length == 0)
         {
-                return "";
+                return fullname.pigment = "";
         }
         
         if (split.length <= 2)
@@ -5590,22 +5599,27 @@
                 if (fullname.name.endsWith(":"))
                 {
                         // Windows
-                        return fullname.name.substring(0, fullname.name.length()-1);
+                        return fullname.pigment = fullname.name.substring(0, fullname.name.length()-1);
                 }
                 
-                return split[0];
+                return fullname.pigment = split[0];
         }
         
         // Windows
         assert(split.length == 4);
         
-        return split[0] + ":" + split[1];
+        return fullname.pigment = split[0] + ":" + split[1];
     }
     
     static String GetBump(cTexture fullname)
     {
         if (fullname == null)
             return "";
+        
+        if (fullname.bump != null)
+        {
+            return fullname.bump;
+        }
         
   //      System.out.println("Fullname = " + fullname);
         // Does not work on Windows due to C:
@@ -5617,12 +5631,12 @@
         
         if (split.length == 0)
         {
-                return "";
+                return fullname.bump = "";
         }
         
         if (split.length == 1)
         {
-                return "";
+                return fullname.bump = "";
         }
         
         if (split.length == 2)
@@ -5630,16 +5644,16 @@
                 if (fullname.name.endsWith(":"))
                 {
                         // Windows
-                        return "";
+                        return fullname.bump = "";
                 }
                 
-                return split[1];
+                return fullname.bump = split[1];
         }
         
         // Windows
         assert(split.length == 4);
         
-        return split[2] + ":" + split[3];
+        return fullname.bump = split[2] + ":" + split[3];
     }
     
     String GetPigmentTexture()
@@ -5722,6 +5736,9 @@
             texname = "";
         
         GetTextures().name = texname + ":" + GetBump(GetTextures());
+
+        GetTextures().pigment = null;
+        
         Touch();
     }
 
@@ -5794,6 +5811,8 @@
             texname = "";
         
         GetTextures().name = Object3D.GetPigment(GetTextures()) + ":" + texname;
+        
+        GetTextures().bump = null;
         
         Touch();
     }
@@ -7418,7 +7437,29 @@
 //            {
 //                CameraPane.Ymax = spoth;
 //            }
-            spot.translate(32, 32);
+//            if (CameraPane.Xmin > spot.x)
+//            {
+//                CameraPane.Xmin = spot.x;
+//            }
+//            if (CameraPane.Xmax < spotw)
+//            {
+//                CameraPane.Xmax = spotw;
+//            }
+//            if (CameraPane.Ymin > spot.y)
+//            {
+//                CameraPane.Ymin = spot.y;
+//            }
+//            if (CameraPane.Ymax < spoth)
+//            {
+//                CameraPane.Ymax = spoth;
+//            }
+            // bonhommes info.g.drawLine(spotw, spoth, spotw, spoth - boundary.height/2); // 15
+            //info.g.drawLine(spotw, spoth, spotw - boundary.width/2, spoth); // 15
+            spot.translate(32, 0);
+            clickInfo.g.setColor(Color.yellow);
+            clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
+            
+            spot.translate(32, 64);
             spotw = spot.x + spot.width;
             spoth = spot.y + spot.height;
             clickInfo.g.setColor(Color.cyan);
@@ -7439,28 +7480,7 @@
 //            {
 //                CameraPane.Ymax = spoth;
 //            }
-            // bonhommes info.g.drawLine(spotw, spoth, spotw, spoth - boundary.height/2); // 15
-            //info.g.drawLine(spotw, spoth, spotw - boundary.width/2, spoth); // 15
-            spot.translate(0, -32);
-            clickInfo.g.setColor(Color.yellow);
-            clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
             clickInfo.g.setColor(Color.green);
-//            if (CameraPane.Xmin > spot.x)
-//            {
-//                CameraPane.Xmin = spot.x;
-//            }
-//            if (CameraPane.Xmax < spotw)
-//            {
-//                CameraPane.Xmax = spotw;
-//            }
-//            if (CameraPane.Ymin > spot.y)
-//            {
-//                CameraPane.Ymin = spot.y;
-//            }
-//            if (CameraPane.Ymax < spoth)
-//            {
-//                CameraPane.Ymax = spoth;
-//            }
             clickInfo.g.drawArc(boundary.x + clickInfo.DX, boundary.y + clickInfo.DY,
                     (int)(boundary.width * clickInfo.W), (int)(boundary.height * clickInfo.W), 0, 360);
             //info.g.drawArc(spot.x, spotw, spot.width/2, boundary.height/2, 0, 360);
@@ -7519,12 +7539,14 @@
             retval = true;
         }
         spot.translate(0, 32);
+        spot.translate(32, 0);
+        spot.translate(0, 32);
         if (spot.contains(clickInfo.x, clickInfo.y))
         {
             hitSomething = hitScale;
             
         double scale = 0.005f * clickInfo.camera.Distance();
-                double hScale = (double) (clickInfo.x - centerPt.x) / 32;
+                double hScale = (double) (clickInfo.x - centerPt.x) / 64;
                 double sign = 1;
                 if (hScale < 0)
                 {
@@ -7536,7 +7558,7 @@
                     //hScale = 0.01;
                 }
                 
-                double vScale = (double) (clickInfo.y - centerPt.y) / 32;
+                double vScale = (double) (clickInfo.y - centerPt.y) / 64;
                 sign = 1;
                 if (vScale < 0)
                 {
@@ -7751,7 +7773,7 @@
                 break;
 
             case hitScale: // scale
-                double hScale = (double) (clickInfo.x - centerPt.x) / 32;
+                double hScale = (double) (clickInfo.x - centerPt.x) / 64;
                 double sign = 1;
                 if (hScale < 0)
                 {
@@ -7763,7 +7785,7 @@
                     //hScale = 0.01;
                 }
                 
-                double vScale = (double) (clickInfo.y - centerPt.y) / 32;
+                double vScale = (double) (clickInfo.y - centerPt.y) / 64;
                 sign = 1;
                 if (vScale < 0)
                 {

--
Gitblit v1.6.2