コード例 #1
0
        public static Chunk RealizeChunk(ChunkJobResult JobResult, GameObject ChunkPrefab, Transform ChunkParent)
        {
            //UnityEngine.Debug.Log("RealizeChunk called");

            Chunk chunk = new Chunk();

            chunk.Min        = JobResult.OriginalJob.Min;
            chunk.LOD        = JobResult.OriginalJob.LOD;
            chunk.Resolution = JobResult.OriginalJob.Resolution;
            chunk.CellSize   = JobResult.OriginalJob.CellSize;
            chunk.Key        = JobResult.OriginalJob.Key;

            UnityEngine.Mesh Mesh = new UnityEngine.Mesh();
            Mesh.vertices  = JobResult.Result.Vertices;
            Mesh.triangles = JobResult.Result.Triangles;

            //UnityEngine.Debug.Log("Vertex Count: " + JobResult.Result.Vertices.Length);
            //UnityEngine.Debug.Log("Chunk job debug print: " + JobResult.DebugPrint);

            chunk.Mesh = Mesh;

            GameObject ChunkObject = ObjectPool.Instance.PopFromPool(ChunkPrefab, false, true, ChunkParent);

            ChunkObject.GetComponent <Transform>().SetPositionAndRotation(JobResult.OriginalJob.Min, Quaternion.identity);

            Material     mat = ChunkObject.GetComponent <Renderer>().materials[0];
            MeshFilter   mf  = ChunkObject.GetComponent <MeshFilter>();
            MeshCollider mc  = ChunkObject.GetComponent <MeshCollider>();

            ChunkObject.GetComponent <MeshRenderer>().enabled = false;
            mc.enabled   = false;
            chunk.Object = ChunkObject;

            mf.mesh       = Mesh;
            mc.sharedMesh = mf.mesh;
            //if(m.normals != null) mf.mesh.normals = m.normals;
            mf.mesh.RecalculateNormals();

            if (JobResult.OriginalJob.CellSize <= 4)
            {
                //mf.mesh.RecalculateBounds();
            }


            return(chunk);
        }
コード例 #2
0
        public static ChunkJobResult CreateChunk(ChunkJob Job)
        {
            ChunkJobResult result = new ChunkJobResult();

            try {
                Stopwatch s = new Stopwatch();
                s.Start();
                SE.OpenSimplexNoise noise = new SE.OpenSimplexNoise(1);

                result.Error       = null;
                result.OriginalJob = Job;
                result.DebugPrint  = "";


                ExtractionInput input = new ExtractionInput();
                input.Isovalue   = 0;
                input.LODSides   = Job.LOD;
                input.Resolution = new Util.Vector3i(Job.Resolution, Job.Resolution, Job.Resolution);
                input.Size       = new Vector3(Job.CellSize, Job.CellSize, Job.CellSize);

                int numTimesSampled = 0;

                input.Sample = (float x, float y, float z) => {
                    numTimesSampled++;
                    float res = sample(noise, x + Job.Min.x, y + Job.Min.y, z + Job.Min.z);
                    return(res);
                };

                ExtractionResult ExResult = SurfaceExtractor.ExtractSurface(input);
                result.Result = ExResult;



                s.Stop();
                result.ProcessingTime = s.ElapsedMilliseconds;
            }
            catch (System.Exception exc) {
                result.Error = "Error in thread " + Job.ThreadID + ": " + exc.Message + ", Stacktrace: " + exc.StackTrace;
            }
            return(result);
        }