Initial import of KREngine

--HG--
extra : convert_revision : svn%3A7752d6cf-9f14-4ad2-affc-04f1e67b81a5/trunk%404
This commit is contained in:
kearwood
2011-10-25 05:03:10 +00:00
parent 5937288f78
commit cece608881
86 changed files with 12190 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
//
// KRSettings.h
// KREngine
//
// Created by Kearwood Gilbert on 11-10-02.
// Copyright 2011 Kearwood Software. All rights reserved.
//
#ifndef KRCAMERA_H
#define KRCAMERA_H
#import "KRMat4.h"
class KRCamera {
public:
KRCamera();
~KRCamera();
KRMat4 getProjectionMatrix();
bool bEnablePerPixel;
bool bEnableDiffuseMap;
bool bEnableNormalMap;
bool bEnableSpecMap;
bool bDebugPSSM;
bool bDebugSuperShiny;
bool bShowShadowBuffer;
bool bEnableAmbient;
bool bEnableDiffuse;
bool bEnableSpecular;
double dSunR;
double dSunG;
double dSunB;
double dAmbientR;
double dAmbientG;
double dAmbientB;
double perspective_fov;
double perspective_nearz;
double perspective_farz;
double perspective_aspect;
int dof_quality;
double dof_depth;
double dof_falloff;
bool bEnableFlash;
double flash_intensity;
double flash_depth;
double flash_falloff;
bool bEnableVignette;
double vignette_radius;
double vignette_falloff;
};
#endif