org.jtrfp.trcl.World.java Source code

Java tutorial

Introduction

Here is the source code for org.jtrfp.trcl.World.java

Source

/*******************************************************************************
 * This file is part of TERMINAL RECALL
 * Copyright (c) 2012-2014 Chuck Ritola
 * Part of the jTRFP.org project
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/gpl.html
 * 
 * Contributors:
 *     chuck - initial API and implementation
 ******************************************************************************/
package org.jtrfp.trcl;

import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.jtrfp.trcl.core.Renderer;
import org.jtrfp.trcl.core.TR;

public final class World {
    public double sizeX, sizeY, sizeZ, viewDepth, gridBlockSize, cameraViewDepth;
    private final TR tr;
    private static final int blockGranularity = 8;//Dim segs / diameter

    public World(double sizeX, double sizeY, double sizeZ, double cameraViewDepth, TR tr) {
        this.sizeX = sizeX;
        this.sizeY = sizeY;
        this.sizeZ = sizeZ;
        this.tr = tr;
        this.cameraViewDepth = cameraViewDepth;
        this.gridBlockSize = cameraViewDepth / (double) blockGranularity;
        this.viewDepth = cameraViewDepth;

    }// end constructor

    public RootGrid newRootGrid() {
        return new RootGrid(sizeX, sizeY, sizeZ, gridBlockSize, cameraViewDepth);
    }

    public Camera newCamera() {
        final Camera camera = new Camera(tr.gpu.get());
        camera.setViewDepth(cameraViewDepth);
        camera.setPosition(
                new Vector3D(camera.getCameraPosition().getX(), sizeY / 3.15, camera.getCameraPosition().getZ()));
        return camera;
    }
}// World