X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Frenderer%2Foctree%2Fraytracer%2FRayTracer.java;h=52bec7d6c677f780a92ae820b2a18f8c344c7f21;hb=808c8b3933337ee78f92903e281b8f452130ab72;hp=8f7923fe6c1e7487f84deead715fd602c2836bce;hpb=cad5276b56cfbd0b194dbacb894fea20b9dd5b15;p=sixth-3d.git diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/octree/raytracer/RayTracer.java b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/octree/raytracer/RayTracer.java index 8f7923f..52bec7d 100755 --- a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/octree/raytracer/RayTracer.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/octree/raytracer/RayTracer.java @@ -1,9 +1,10 @@ /* - * Sixth 3D engine. Author: Svjatoslav Agejenko. + * Sixth 3D engine. Author: Svjatoslav Agejenko. * This project is released under Creative Commons Zero (CC0) license. */ package eu.svjatoslav.sixth.e3d.renderer.octree.raytracer; +import eu.svjatoslav.sixth.e3d.geometry.Point3D; import eu.svjatoslav.sixth.e3d.gui.ViewPanel; import eu.svjatoslav.sixth.e3d.renderer.octree.OctreeVolume; import eu.svjatoslav.sixth.e3d.renderer.raster.Color; @@ -81,11 +82,15 @@ public class RayTracer implements Runnable { final double cy3 = cy1 + ((y3p * x) / width); final double cz3 = cz1 + ((z3p * x) / width); - final Ray r = new Ray(cameraView.cameraCenter.x, - cameraView.cameraCenter.y, cameraView.cameraCenter.z, cx3 - - cameraView.cameraCenter.x, cy3 - - cameraView.cameraCenter.y, cz3 - - cameraView.cameraCenter.z); + final Ray r = new Ray( + new Point3D(cameraView.cameraCenter.x, + cameraView.cameraCenter.y, + cameraView.cameraCenter.z), + new Point3D( + cx3 - cameraView.cameraCenter.x, cy3 + - cameraView.cameraCenter.y, cz3 + - cameraView.cameraCenter.z) + ); final int c = traceRay(r); final Color color = new Color(c); @@ -111,7 +116,7 @@ public class RayTracer implements Runnable { if (intersectingCell != -1) { // if lightening not computed, compute it - if (octreeVolume.ce3[intersectingCell] == -1) + if (octreeVolume.cell3[intersectingCell] == -1) // if cell is larger than 1 if (ray.hitCellSize > 1) { // break it up @@ -133,12 +138,16 @@ public class RayTracer implements Runnable { + (yDist * yDist) + (zDist * zDist)); distance = (distance / 3) + 1; - final Ray r1 = new Ray(ray.hitCellX, ray.hitCellY - - (float) 1.5, ray.hitCellZ, + final Ray r1 = new Ray( + new Point3D( + ray.hitCellX, + ray.hitCellY - (float) 1.5, + ray.hitCellZ), - (float) l.location.x - (float) ray.hitCellX, l.location.y - - (ray.hitCellY - (float) 1.5), (float) l.location.z - - (float) ray.hitCellZ); + new Point3D((float) l.location.x - (float) ray.hitCellX, l.location.y + - (ray.hitCellY - (float) 1.5), (float) l.location.z + - (float) ray.hitCellZ) + ); final int rt1 = octreeVolume.traceCell(0, 0, 0, octreeVolume.masterCellSize, 0, r1); @@ -149,12 +158,16 @@ public class RayTracer implements Runnable { newBlue = (l.color.b * l.brightness) / distance; } - final Ray r2 = new Ray(ray.hitCellX - (float) 1.5, - ray.hitCellY, ray.hitCellZ, + final Ray r2 = new Ray( + new Point3D( + ray.hitCellX - (float) 1.5, + ray.hitCellY, ray.hitCellZ), - l.location.x - (ray.hitCellX - (float) 1.5), (float) l.location.y - - (float) ray.hitCellY, (float) l.location.z - - (float) ray.hitCellZ); + new Point3D( + l.location.x - (ray.hitCellX - (float) 1.5), (float) l.location.y + - (float) ray.hitCellY, (float) l.location.z + - (float) ray.hitCellZ) + ); final int rt2 = octreeVolume.traceCell(0, 0, 0, octreeVolume.masterCellSize, 0, r2); @@ -172,12 +185,15 @@ public class RayTracer implements Runnable { newBlue = tempBlue; } - final Ray r3 = new Ray(ray.hitCellX, ray.hitCellY, - ray.hitCellZ - (float) 1.5, - - (float) l.location.x - (float) ray.hitCellX, (float) l.location.y - - (float) ray.hitCellY, l.location.z - - (ray.hitCellZ - (float) 1.5)); + final Ray r3 = new Ray( + new Point3D( + ray.hitCellX, ray.hitCellY, + ray.hitCellZ - (float) 1.5), + new Point3D( + (float) l.location.x - (float) ray.hitCellX, (float) l.location.y + - (float) ray.hitCellY, l.location.z + - (ray.hitCellZ - (float) 1.5)) + ); final int rt3 = octreeVolume.traceCell(0, 0, 0, octreeVolume.masterCellSize, 0, r3); @@ -194,12 +210,17 @@ public class RayTracer implements Runnable { newBlue = tempBlue; } - final Ray r4 = new Ray(ray.hitCellX, ray.hitCellY - + (float) 1.5, ray.hitCellZ, + final Ray r4 = new Ray( + new Point3D( + ray.hitCellX, + ray.hitCellY + (float) 1.5, + ray.hitCellZ), - (float) l.location.x - (float) ray.hitCellX, l.location.y - - (ray.hitCellY + (float) 1.5), (float) l.location.z - - (float) ray.hitCellZ); + new Point3D( + (float) l.location.x - (float) ray.hitCellX, l.location.y + - (ray.hitCellY + (float) 1.5), (float) l.location.z + - (float) ray.hitCellZ) + ); final int rt4 = octreeVolume.traceCell(0, 0, 0, octreeVolume.masterCellSize, 0, r4); @@ -216,12 +237,16 @@ public class RayTracer implements Runnable { newBlue = tempBlue; } - final Ray r5 = new Ray(ray.hitCellX + (float) 1.5, - ray.hitCellY, ray.hitCellZ, + final Ray r5 = new Ray( + new Point3D( + ray.hitCellX + (float) 1.5, + ray.hitCellY, ray.hitCellZ), - l.location.x - (ray.hitCellX + (float) 1.5), (float) l.location.y - - (float) ray.hitCellY, (float) l.location.z - - (float) ray.hitCellZ); + new Point3D( + l.location.x - (ray.hitCellX + (float) 1.5), (float) l.location.y + - (float) ray.hitCellY, (float) l.location.z + - (float) ray.hitCellZ) + ); final int rt5 = octreeVolume.traceCell(0, 0, 0, octreeVolume.masterCellSize, 0, r5); @@ -238,12 +263,16 @@ public class RayTracer implements Runnable { newBlue = tempBlue; } - final Ray r6 = new Ray(ray.hitCellX, ray.hitCellY, - ray.hitCellZ + (float) 1.5, + final Ray r6 = new Ray( + new Point3D( + ray.hitCellX, ray.hitCellY, + ray.hitCellZ + (float) 1.5), + + new Point3D( - (float) l.location.x - (float) ray.hitCellX, (float) l.location.y - - (float) ray.hitCellY, l.location.z - - (ray.hitCellZ + (float) 1.5)); + (float) l.location.x - (float) ray.hitCellX, (float) l.location.y + - (float) ray.hitCellY, l.location.z + - (ray.hitCellZ + (float) 1.5))); final int rt6 = octreeVolume.traceCell(0, 0, 0, octreeVolume.masterCellSize, 0, r6); @@ -265,7 +294,7 @@ public class RayTracer implements Runnable { } - final int cellColor = octreeVolume.ce2[intersectingCell]; + final int cellColor = octreeVolume.cell2[intersectingCell]; red = (red * ((cellColor & 0xFF0000) >> 16)) / 255; green = (green * ((cellColor & 0xFF00) >> 8)) / 255; @@ -278,13 +307,13 @@ public class RayTracer implements Runnable { if (blue > 255) blue = 255; - octreeVolume.ce3[intersectingCell] = (((int) red) << 16) + octreeVolume.cell3[intersectingCell] = (((int) red) << 16) + (((int) green) << 8) + ((int) blue); } - if (octreeVolume.ce3[intersectingCell] == 0) - return octreeVolume.ce2[intersectingCell]; - return octreeVolume.ce3[intersectingCell]; + if (octreeVolume.cell3[intersectingCell] == 0) + return octreeVolume.cell2[intersectingCell]; + return octreeVolume.cell3[intersectingCell]; } // return (200 << 16) + (200 << 8) + 255;