Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 48 additions & 69 deletions src/framework/components/camera/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,40 @@ import { CameraComponent } from './component.js';
* @import { AppBase } from '../../app-base.js'
*/

const _properties = [
'aspectRatio',
'aspectRatioMode',
'calculateProjection',
'calculateTransform',
'clearColor',
'clearColorBuffer',
'clearDepth',
'clearDepthBuffer',
'clearStencilBuffer',
'renderSceneColorMap',
'renderSceneDepthMap',
'cullFaces',
'farClip',
'flipFaces',
'fog',
'fov',
'frustumCulling',
'horizontalFov',
'layers',
'renderTarget',
'nearClip',
'orthoHeight',
'projection',
'priority',
'rect',
'scissorRect',
'aperture',
'shutter',
'sensitivity',
'gammaCorrection',
'toneMapping'
];

/**
* Used to add and remove {@link CameraComponent}s from Entities. It also holds an array of all
* active cameras.
Expand Down Expand Up @@ -39,43 +73,9 @@ class CameraComponentSystem extends ComponentSystem {
this.app.on('prerender', this.onAppPrerender, this);
}

initializeComponentData(component, data, properties) {
properties = [
'aspectRatio',
'aspectRatioMode',
'calculateProjection',
'calculateTransform',
'clearColor',
'clearColorBuffer',
'clearDepth',
'clearDepthBuffer',
'clearStencilBuffer',
'renderSceneColorMap',
'renderSceneDepthMap',
'cullFaces',
'farClip',
'flipFaces',
'fog',
'fov',
'frustumCulling',
'horizontalFov',
'layers',
'renderTarget',
'nearClip',
'orthoHeight',
'projection',
'priority',
'rect',
'scissorRect',
'aperture',
'shutter',
'sensitivity',
'gammaCorrection',
'toneMapping'
];

for (let i = 0; i < properties.length; i++) {
const property = properties[i];
initializeComponentData(component, data) {
for (let i = 0; i < _properties.length; i++) {
const property = _properties[i];
if (data.hasOwnProperty(property)) {
const value = data[property];
switch (property) {
Expand Down Expand Up @@ -106,38 +106,17 @@ class CameraComponentSystem extends ComponentSystem {

cloneComponent(entity, clone) {
const c = entity.camera;
return this.addComponent(clone, {
aspectRatio: c.aspectRatio,
aspectRatioMode: c.aspectRatioMode,
calculateProjection: c.calculateProjection,
calculateTransform: c.calculateTransform,
clearColor: c.clearColor,
clearColorBuffer: c.clearColorBuffer,
clearDepthBuffer: c.clearDepthBuffer,
clearStencilBuffer: c.clearStencilBuffer,
renderSceneDepthMap: c.renderSceneDepthMap,
renderSceneColorMap: c.renderSceneColorMap,
cullFaces: c.cullFaces,
enabled: c.enabled,
farClip: c.farClip,
flipFaces: c.flipFaces,
fov: c.fov,
frustumCulling: c.frustumCulling,
horizontalFov: c.horizontalFov,
layers: c.layers,
renderTarget: c.renderTarget,
nearClip: c.nearClip,
orthoHeight: c.orthoHeight,
projection: c.projection,
priority: c.priority,
rect: c.rect,
scissorRect: c.scissorRect,
aperture: c.aperture,
sensitivity: c.sensitivity,
shutter: c.shutter,
gammaCorrection: c.gammaCorrection,
toneMapping: c.toneMapping
});

const data = {
enabled: c.enabled
};

for (let i = 0; i < _properties.length; i++) {
const property = _properties[i];
data[property] = c[property];
}

return this.addComponent(clone, data);
}

onBeforeRemove(entity, component) {
Expand Down
142 changes: 142 additions & 0 deletions test/framework/components/camera/component.test.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
import { expect } from 'chai';

import { Color } from '../../../../src/core/math/color.js';
import { Vec4 } from '../../../../src/core/math/vec4.js';
import { Entity } from '../../../../src/framework/entity.js';
import {
ASPECT_MANUAL,
FOG_LINEAR,
GAMMA_NONE,
LAYERID_UI,
PROJECTION_ORTHOGRAPHIC,
PROJECTION_PERSPECTIVE,
TONEMAP_ACES
} from '../../../../src/scene/constants.js';
import { FogParams } from '../../../../src/scene/fog-params.js';
import { createApp } from '../../../app.mjs';
import { jsdomSetup, jsdomTeardown } from '../../../jsdom.mjs';

describe('CameraComponent', function () {
let app;

beforeEach(function () {
jsdomSetup();
app = createApp();
});

afterEach(function () {
app?.destroy();
app = null;
jsdomTeardown();
});

describe('#addComponent', function () {

it('creates a component with sensible defaults', function () {
const e = new Entity();
e.addComponent('camera');

expect(e.camera).to.exist;
expect(e.camera.enabled).to.equal(true);
expect(e.camera.fov).to.equal(45);
expect(e.camera.nearClip).to.equal(0.1);
expect(e.camera.farClip).to.equal(1000);
expect(e.camera.clearColor.equals(new Color(0.75, 0.75, 0.75, 1))).to.equal(true);
expect(e.camera.clearDepth).to.equal(1);
expect(e.camera.fog).to.equal(null);
expect(e.camera.orthoHeight).to.equal(10);
expect(e.camera.priority).to.equal(0);
expect(e.camera.projection).to.equal(PROJECTION_PERSPECTIVE);
});

});

describe('#cloneComponent', function () {

it('copies every property to the clone', function () {
const fog = new FogParams();
fog.type = FOG_LINEAR;
fog.start = 10;
fog.end = 100;

const calculateProjection = () => {};
const calculateTransform = () => {};

const e = new Entity();
Comment thread
willeastcott marked this conversation as resolved.
e.addComponent('camera', {
aspectRatioMode: ASPECT_MANUAL,
aspectRatio: 2,
calculateProjection: calculateProjection,
calculateTransform: calculateTransform,
clearColor: new Color(0.1, 0.2, 0.3, 0.4),
clearColorBuffer: false,
clearDepth: 0.5,
clearDepthBuffer: false,
clearStencilBuffer: false,
cullFaces: false,
farClip: 500,
flipFaces: true,
fog: fog,
fov: 60,
frustumCulling: false,
horizontalFov: true,
layers: [LAYERID_UI],
nearClip: 2,
orthoHeight: 7,
priority: 3,
projection: PROJECTION_ORTHOGRAPHIC,
rect: new Vec4(0.1, 0.1, 0.5, 0.5),
scissorRect: new Vec4(0.2, 0.2, 0.6, 0.6),
aperture: 8,
shutter: 1 / 500,
sensitivity: 400,
gammaCorrection: GAMMA_NONE,
toneMapping: TONEMAP_ACES
});

const clone = e.clone();
const c = clone.camera;

expect(c).to.exist;
expect(c.enabled).to.equal(true);
expect(c.aspectRatioMode).to.equal(ASPECT_MANUAL);
expect(c.aspectRatio).to.equal(2);
expect(c.calculateProjection).to.equal(calculateProjection);
expect(c.calculateTransform).to.equal(calculateTransform);
expect(c.clearColor.equals(new Color(0.1, 0.2, 0.3, 0.4))).to.equal(true);
expect(c.clearColorBuffer).to.equal(false);
expect(c.clearDepth).to.equal(0.5);
expect(c.clearDepthBuffer).to.equal(false);
expect(c.clearStencilBuffer).to.equal(false);
expect(c.cullFaces).to.equal(false);
expect(c.farClip).to.equal(500);
expect(c.flipFaces).to.equal(true);
expect(c.fog).to.equal(fog);
expect(c.fov).to.equal(60);
expect(c.frustumCulling).to.equal(false);
expect(c.horizontalFov).to.equal(true);
expect(c.layers).to.deep.equal([LAYERID_UI]);
expect(c.nearClip).to.equal(2);
expect(c.orthoHeight).to.equal(7);
expect(c.priority).to.equal(3);
expect(c.projection).to.equal(PROJECTION_ORTHOGRAPHIC);
expect(c.rect.equals(new Vec4(0.1, 0.1, 0.5, 0.5))).to.equal(true);
expect(c.scissorRect.equals(new Vec4(0.2, 0.2, 0.6, 0.6))).to.equal(true);
expect(c.aperture).to.equal(8);
expect(c.shutter).to.equal(1 / 500);
expect(c.sensitivity).to.equal(400);
expect(c.gammaCorrection).to.equal(GAMMA_NONE);
expect(c.toneMapping).to.equal(TONEMAP_ACES);
});

it('copies the enabled state to the clone', function () {
const e = new Entity();
e.addComponent('camera', { enabled: false });

const clone = e.clone();

expect(clone.camera.enabled).to.equal(false);
});

});
});