123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- import * as React from "react";
- import { Nullable } from "babylonjs/types";
- import { Tools } from "babylonjs/Misc/tools";
- import { Observable } from "babylonjs/Misc/observable";
- import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
- import { Texture } from "babylonjs/Materials/Textures/texture";
- import { CubeTexture } from "babylonjs/Materials/Textures/cubeTexture";
- import { PropertyChangedEvent } from "../../../../propertyChangedEvent";
- import { LineContainerComponent } from "../../../lineContainerComponent";
- import { SliderLineComponent } from "../../../lines/sliderLineComponent";
- import { TextLineComponent } from "../../../../../sharedUiComponents/lines/textLineComponent";
- import { CheckBoxLineComponent } from "../../../lines/checkBoxLineComponent";
- import { TextureLineComponent } from "../../../lines/textureLineComponent";
- import { FloatLineComponent } from "../../../lines/floatLineComponent";
- import { OptionsLineComponent } from "../../../lines/optionsLineComponent";
- import { FileButtonLineComponent } from "../../../../../sharedUiComponents/lines/fileButtonLineComponent";
- import { LockObject } from "../lockObject";
- import { ValueLineComponent } from "../../../../../sharedUiComponents/lines/valueLineComponent";
- import { GlobalState } from "../../../../../components/globalState";
- import { AdvancedDynamicTextureInstrumentation } from "babylonjs-gui/2D/adtInstrumentation";
- import { AdvancedDynamicTexture } from "babylonjs-gui/2D/advancedDynamicTexture";
- import { CustomPropertyGridComponent } from '../customPropertyGridComponent';
- import { ButtonLineComponent } from '../../../../../sharedUiComponents/lines/buttonLineComponent';
- import { TextInputLineComponent } from '../../../lines/textInputLineComponent';
- import { AnimationGridComponent } from '../animations/animationPropertyGridComponent';
- import { PopupComponent } from '../../../../popupComponent';
- import { TextureEditorComponent } from './textures/textureEditorComponent';
- interface ITexturePropertyGridComponentProps {
- texture: BaseTexture,
- lockObject: LockObject,
- globalState: GlobalState,
- onPropertyChangedObservable?: Observable<PropertyChangedEvent>
- }
- interface ITexturePropertyGridComponentState {
- isTextureEditorOpen : boolean,
- textureEditing : Nullable<BaseTexture>
- }
- export class TexturePropertyGridComponent extends React.Component<ITexturePropertyGridComponentProps,ITexturePropertyGridComponentState> {
- private _adtInstrumentation: Nullable<AdvancedDynamicTextureInstrumentation>;
- private popoutWindowRef : React.RefObject<PopupComponent>;
- private textureLineRef: React.RefObject<TextureLineComponent>;
- private _textureInspectorSize = {width: 1024, height: 490};
- constructor(props: ITexturePropertyGridComponentProps) {
- super(props);
- this.state = {
- isTextureEditorOpen: false,
- textureEditing: null
- }
- const texture = this.props.texture;
- this.textureLineRef = React.createRef();
- this.popoutWindowRef = React.createRef();
- if (!texture || !(texture as any).rootContainer) {
- return;
- }
- const adt = texture as AdvancedDynamicTexture;
- this._adtInstrumentation = new AdvancedDynamicTextureInstrumentation(adt);
- this._adtInstrumentation!.captureRenderTime = true;
- this._adtInstrumentation!.captureLayoutTime = true;
-
- this.onOpenTextureEditor.bind(this);
- this.onCloseTextureEditor.bind(this);
- this.openTextureEditor.bind(this);
- }
- componentWillUnmount() {
- if (this._adtInstrumentation) {
- this._adtInstrumentation.dispose();
- this._adtInstrumentation = null;
- }
- }
- updateTexture(file: File) {
- const texture = this.props.texture;
- Tools.ReadFile(file, (data) => {
- var blob = new Blob([data], { type: "octet/stream" });
- var reader = new FileReader();
- reader.readAsDataURL(blob);
- reader.onloadend = () => {
- let base64data = reader.result as string;
- if (texture.isCube) {
- let extension: string | undefined = undefined;
- if (file.name.toLowerCase().indexOf(".dds") > 0) {
- extension = ".dds";
- } else if (file.name.toLowerCase().indexOf(".env") > 0) {
- extension = ".env";
- }
- (texture as CubeTexture).updateURL(base64data, extension, () => this.forceRefresh());
- } else {
- (texture as Texture).updateURL(base64data, null, () => this.forceRefresh());
- }
- };
- }, undefined, true);
- }
- openTextureEditor() {
- if (this.state.isTextureEditorOpen) {
- this.onCloseTextureEditor(() => this.openTextureEditor());
- return;
- }
- this.setState({
- isTextureEditorOpen: true,
- textureEditing: this.props.texture
- });
- }
- onOpenTextureEditor(window: Window) {}
-
- onCloseTextureEditor(callback?: {() : void}) {
- this.setState({
- isTextureEditorOpen: false,
- textureEditing: null
- }, callback);
- }
- forceRefresh() {
- this.forceUpdate();
- (this.textureLineRef.current as TextureLineComponent).updatePreview();
- }
- render() {
- const texture = this.props.texture;
- var samplingMode = [
- { label: "Nearest", value: Texture.NEAREST_NEAREST }, // 1
- { label: "Linear", value: Texture.LINEAR_LINEAR }, // 2
- { label: "Linear & linear mip", value: Texture.LINEAR_LINEAR_MIPLINEAR }, // 3
- { label: "Linear & nearest mip", value: Texture.LINEAR_LINEAR_MIPNEAREST }, // 11
- { label: "Nearest & linear mip", value: Texture.NEAREST_NEAREST_MIPLINEAR }, // 8
- { label: "Nearest & nearest mip", value: Texture.NEAREST_NEAREST_MIPNEAREST }, // 4
- { label: "Nearest/Linear", value: Texture.NEAREST_LINEAR }, // 7
- { label: "Nearest/Linear & linear mip", value: Texture.NEAREST_LINEAR_MIPLINEAR }, // 6
- { label: "Nearest/Linear & nearest mip", value: Texture.NEAREST_LINEAR_MIPNEAREST }, // 5
- { label: "Linear/Nearest", value: Texture.LINEAR_NEAREST }, // 12
- { label: "Linear/Nearest & linear mip", value: Texture.LINEAR_NEAREST_MIPLINEAR }, // 10
- { label: "Linear/Nearest & nearest mip", value: Texture.LINEAR_NEAREST_MIPNEAREST }, // 9
- ];
- var coordinatesMode = [
- { label: "Explicit", value: Texture.EXPLICIT_MODE },
- { label: "Cubic", value: Texture.CUBIC_MODE },
- { label: "Inverse cubic", value: Texture.INVCUBIC_MODE },
- { label: "Equirectangular", value: Texture.EQUIRECTANGULAR_MODE },
- { label: "Fixed equirectangular", value: Texture.FIXED_EQUIRECTANGULAR_MODE },
- { label: "Fixed equirectangular mirrored", value: Texture.FIXED_EQUIRECTANGULAR_MIRRORED_MODE },
- { label: "Planar", value: Texture.PLANAR_MODE },
- { label: "Projection", value: Texture.PROJECTION_MODE },
- { label: "Skybox", value: Texture.SKYBOX_MODE },
- { label: "Spherical", value: Texture.SPHERICAL_MODE },
- ];
- let extension = "";
- let url = (texture as Texture).url;
- let textureUrl = (!url || url.substring(0, 4) === "data" || url.substring(0, 4) === "blob") ? "" : url;
- if (textureUrl) {
- for (var index = textureUrl.length - 1; index >= 0; index--) {
- if (textureUrl[index] === ".") {
- break;
- }
- extension = textureUrl[index] + extension;
- }
- }
- return (
- <div className="pane">
- <LineContainerComponent globalState={this.props.globalState} title="PREVIEW">
- <TextureLineComponent ref={this.textureLineRef} texture={texture} width={256} height={256} globalState={this.props.globalState} />
- <FileButtonLineComponent label="Load texture from file" onClick={(file) => this.updateTexture(file)} accept=".jpg, .png, .tga, .dds, .env" />
- <ButtonLineComponent label="Edit" onClick={() => this.openTextureEditor()} />
- <TextInputLineComponent label="URL" value={textureUrl} lockObject={this.props.lockObject} onChange={url => {
- (texture as Texture).updateURL(url);
- this.forceRefresh();
- }} />
- </LineContainerComponent>
- {this.state.isTextureEditorOpen && (
- <PopupComponent
- id='texture-editor'
- title='Texture Inspector'
- size={this._textureInspectorSize}
- onOpen={this.onOpenTextureEditor}
- onClose={() => this.onCloseTextureEditor}
- ref={this.popoutWindowRef}
- >
- <TextureEditorComponent
- texture={this.props.texture}
- url={textureUrl}
- window={this.popoutWindowRef}
- onUpdate={() => this.forceRefresh()}
- />
- </PopupComponent>)}
- <CustomPropertyGridComponent globalState={this.props.globalState} target={texture}
- lockObject={this.props.lockObject}
- onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <LineContainerComponent globalState={this.props.globalState} title="GENERAL">
- <TextLineComponent label="Width" value={texture.getSize().width.toString()} />
- <TextLineComponent label="Height" value={texture.getSize().height.toString()} />
- {
- texture.isRenderTarget &&
- <ButtonLineComponent label="Scale up" onClick={() => {
- let scene = texture.getScene()!;
- texture.scale(2);
- setTimeout(() => {
- this.props.globalState.onSelectionChangedObservable.notifyObservers(scene.getTextureByUniqueID(texture.uniqueId));
- });
- }} />
- }
- {
- texture.isRenderTarget &&
- <ButtonLineComponent label="Scale down" onClick={() => {
- let scene = texture.getScene()!;
- texture.scale(0.5);
- setTimeout(() => {
- this.props.globalState.onSelectionChangedObservable.notifyObservers(scene.getTextureByUniqueID(texture.uniqueId));
- });
- }} />
- }
- {
- extension &&
- <TextLineComponent label="File format" value={extension} />
- }
- <TextLineComponent label="Unique ID" value={texture.uniqueId.toString()} />
- <TextLineComponent label="Class" value={texture.getClassName()} />
- <TextLineComponent label="Has alpha" value={texture.hasAlpha ? "Yes" : "No"} />
- <TextLineComponent label="Is 3D" value={texture.is3D ? "Yes" : "No"} />
- <TextLineComponent label="Is 2D array" value={texture.is2DArray ? "Yes" : "No"} />
- <TextLineComponent label="Is cube" value={texture.isCube ? "Yes" : "No"} />
- <TextLineComponent label="Is render target" value={texture.isRenderTarget ? "Yes" : "No"} />
- {
- (texture instanceof Texture) &&
- <TextLineComponent label="Stored as inverted on Y" value={texture.invertY ? "Yes" : "No"} />
- }
- <TextLineComponent label="Has mipmaps" value={!texture.noMipmap ? "Yes" : "No"} />
- <SliderLineComponent label="UV set" target={texture} propertyName="coordinatesIndex" minimum={0} maximum={3} step={1} onPropertyChangedObservable={this.props.onPropertyChangedObservable} decimalCount={0} />
- <OptionsLineComponent label="Mode" options={coordinatesMode} target={texture} propertyName="coordinatesMode" onPropertyChangedObservable={this.props.onPropertyChangedObservable} onSelect={(value) => texture.coordinatesMode = value} />
- <SliderLineComponent label="Level" target={texture} propertyName="level" minimum={0} maximum={2} step={0.01} onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- {
- texture.updateSamplingMode &&
- <OptionsLineComponent label="Sampling" options={samplingMode} target={texture} noDirectUpdate={true} propertyName="samplingMode" onPropertyChangedObservable={this.props.onPropertyChangedObservable} onSelect={(value) => texture.updateSamplingMode(value)} />
- }
- </LineContainerComponent>
- {
- texture.getScene() &&
- <AnimationGridComponent globalState={this.props.globalState} animatable={texture} scene={texture.getScene()!} lockObject={this.props.lockObject} />
- }
- {
- (texture as any).rootContainer && this._adtInstrumentation &&
- <LineContainerComponent globalState={this.props.globalState} title="ADVANCED TEXTURE PROPERTIES">
- <ValueLineComponent label="Last layout time" value={this._adtInstrumentation!.renderTimeCounter.current} units="ms" />
- <ValueLineComponent label="Last render time" value={this._adtInstrumentation!.layoutTimeCounter.current} units="ms" />
- <SliderLineComponent label="Render scale" minimum={0.1} maximum={5} step={0.1} target={texture} propertyName="renderScale" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Premultiply alpha" target={texture} propertyName="premulAlpha" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="Ideal width" target={texture} propertyName="idealWidth" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="Ideal height" target={texture} propertyName="idealHeight" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Use smallest ideal" target={texture} propertyName="useSmallestIdeal" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Render at ideal size" target={texture} propertyName="renderAtIdealSize" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Invalidate Rect optimization" target={texture} propertyName="useInvalidateRectOptimization" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- </LineContainerComponent>
- }
- <LineContainerComponent globalState={this.props.globalState} title="TRANSFORM">
- {
- !texture.isCube &&
- <div>
- <FloatLineComponent lockObject={this.props.lockObject} label="U offset" target={texture} propertyName="uOffset" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="V offset" target={texture} propertyName="vOffset" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="U scale" target={texture} propertyName="uScale" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="V scale" target={texture} propertyName="vScale" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="U angle" useEuler={this.props.globalState.onlyUseEulers} target={texture} propertyName="uAng" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="V angle" useEuler={this.props.globalState.onlyUseEulers} target={texture} propertyName="vAng" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <FloatLineComponent lockObject={this.props.lockObject} label="W angle" useEuler={this.props.globalState.onlyUseEulers} target={texture} propertyName="wAng" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Clamp U" isSelected={() => texture.wrapU === Texture.CLAMP_ADDRESSMODE} onSelect={(value) => texture.wrapU = value ? Texture.CLAMP_ADDRESSMODE : Texture.WRAP_ADDRESSMODE} />
- <CheckBoxLineComponent label="Clamp V" isSelected={() => texture.wrapV === Texture.CLAMP_ADDRESSMODE} onSelect={(value) => texture.wrapV = value ? Texture.CLAMP_ADDRESSMODE : Texture.WRAP_ADDRESSMODE} />
- </div>
- }
- {
- texture.isCube &&
- <div>
- <SliderLineComponent label="Rotation Y" useEuler={this.props.globalState.onlyUseEulers} minimum={0} maximum={2 * Math.PI} step={0.1} target={texture} propertyName="rotationY" />
- </div>
- }
- </LineContainerComponent>
- </div>
- );
- }
- }
|