Add mouse mod change handel

This commit is contained in:
MrKBear 2022-03-03 15:09:27 +08:00
parent 6f8451ea9b
commit 76e292a0d3
4 changed files with 86 additions and 17 deletions

View File

@ -23,10 +23,6 @@ div.command-bar {
} }
} }
button.ms-Button.command-button.active {
color: aqua !important;
}
div.command-bar.dark button.ms-Button.command-button.active, div.command-bar.dark button.ms-Button.command-button.active,
div.command-bar.dark button.ms-Button.command-button:hover { div.command-bar.dark button.ms-Button.command-button:hover {
background-color: rgba($color: #FFFFFF, $alpha: .2); background-color: rgba($color: #FFFFFF, $alpha: .2);

View File

@ -2,18 +2,40 @@ import { BackgroundLevel, Theme } from "@Component/Theme/Theme";
import { DirectionalHint, IconButton } from "@fluentui/react"; import { DirectionalHint, IconButton } from "@fluentui/react";
import { LocalizationTooltipHost } from "../Localization/LocalizationTooltipHost"; import { LocalizationTooltipHost } from "../Localization/LocalizationTooltipHost";
import { useSetting, IMixinSettingProps } from "@Context/Setting"; import { useSetting, IMixinSettingProps } from "@Context/Setting";
import { useStatus, IMixinStatusProps } from "@Context/Status";
import { AllI18nKeys } from "../Localization/Localization"; import { AllI18nKeys } from "../Localization/Localization";
import { Component, ReactNode } from "react"; import { Component, ReactNode } from "react";
import { MouseMod } from "@GLRender/ClassicRenderer";
import "./CommandBar.scss"; import "./CommandBar.scss";
interface ICommandBarProps { interface ICommandBarProps {
width: number; width: number;
} }
@useStatus
@useSetting @useSetting
class CommandBar extends Component<ICommandBarProps & IMixinSettingProps> { class CommandBar extends Component<ICommandBarProps & IMixinSettingProps & IMixinStatusProps> {
private handelChange = () => {
this.forceUpdate();
}
componentDidMount() {
if (this.props.status) {
this.props.status.on("mouseModChange", this.handelChange)
}
}
componentWillUnmount() {
if (this.props.status) {
this.props.status.off("mouseModChange", this.handelChange)
}
}
render(): ReactNode { render(): ReactNode {
const mouseMod = this.props.status?.mouseMod ?? MouseMod.Drag;
return <Theme return <Theme
className="command-bar" className="command-bar"
backgroundLevel={BackgroundLevel.Level2} backgroundLevel={BackgroundLevel.Level2}
@ -27,8 +49,16 @@ class CommandBar extends Component<ICommandBarProps & IMixinSettingProps> {
<div> <div>
{this.getRenderButton({ iconName: "Save", i18NKey: "Command.Bar.Save.Info" })} {this.getRenderButton({ iconName: "Save", i18NKey: "Command.Bar.Save.Info" })}
{this.getRenderButton({ iconName: "Play", i18NKey: "Command.Bar.Play.Info" })} {this.getRenderButton({ iconName: "Play", i18NKey: "Command.Bar.Play.Info" })}
{this.getRenderButton({ iconName: "HandsFree", i18NKey: "Command.Bar.Drag.Info" })} {this.getRenderButton({
{this.getRenderButton({ iconName: "TouchPointer", i18NKey: "Command.Bar.Select.Info" })} iconName: "HandsFree", i18NKey: "Command.Bar.Drag.Info",
active: mouseMod === MouseMod.Drag,
click: () => this.props.status ? this.props.status.setMouseMod(MouseMod.Drag) : undefined
})}
{this.getRenderButton({
iconName: "TouchPointer", i18NKey: "Command.Bar.Select.Info",
active: mouseMod === MouseMod.click,
click: () => this.props.status ? this.props.status.setMouseMod(MouseMod.click) : undefined
})}
{this.getRenderButton({ iconName: "WebAppBuilderFragmentCreate", i18NKey: "Command.Bar.Add.Group.Info" })} {this.getRenderButton({ iconName: "WebAppBuilderFragmentCreate", i18NKey: "Command.Bar.Add.Group.Info" })}
{this.getRenderButton({ iconName: "CubeShape", i18NKey: "Command.Bar.Add.Range.Info" })} {this.getRenderButton({ iconName: "CubeShape", i18NKey: "Command.Bar.Add.Range.Info" })}
{this.getRenderButton({ iconName: "StepSharedAdd", i18NKey: "Command.Bar.Add.Behavior.Info" })} {this.getRenderButton({ iconName: "StepSharedAdd", i18NKey: "Command.Bar.Add.Behavior.Info" })}
@ -45,6 +75,7 @@ class CommandBar extends Component<ICommandBarProps & IMixinSettingProps> {
i18NKey: AllI18nKeys; i18NKey: AllI18nKeys;
iconName?: string; iconName?: string;
click?: () => void; click?: () => void;
active?: boolean;
}): ReactNode { }): ReactNode {
return <LocalizationTooltipHost return <LocalizationTooltipHost
i18nKey={param.i18NKey} i18nKey={param.i18NKey}
@ -54,7 +85,7 @@ class CommandBar extends Component<ICommandBarProps & IMixinSettingProps> {
style={{ height: this.props.width }} style={{ height: this.props.width }}
iconProps={{ iconName: param.iconName }} iconProps={{ iconName: param.iconName }}
onClick={ param.click } onClick={ param.click }
className="command-button on-end" className={"command-button on-end" + (param.active ? " active" : "")}
/> />
</LocalizationTooltipHost> </LocalizationTooltipHost>
} }

View File

@ -3,8 +3,11 @@ import { Emitter } from "@Model/Emitter";
import { Model } from "@Model/Model"; import { Model } from "@Model/Model";
import { Archive } from "@Model/Archive"; import { Archive } from "@Model/Archive";
import { AbstractRenderer } from "@Model/Renderer"; import { AbstractRenderer } from "@Model/Renderer";
import ClassicRenderer, { MouseMod } from "@GLRender/ClassicRenderer";
class Status extends Emitter<{}> { class Status extends Emitter<{
mouseModChange: MouseMod
}> {
/** /**
* *
@ -21,6 +24,20 @@ class Status extends Emitter<{}> {
*/ */
public model: Model = new Model(); public model: Model = new Model();
/**
*
*/
public mouseMod: MouseMod = MouseMod.Drag;
public setMouseMod(mod: MouseMod) {
this.mouseMod = mod;
if (this.renderer instanceof ClassicRenderer) {
this.renderer.mouseMod = mod;
this.renderer.setMouseIcon();
}
this.emit("mouseModChange", mod);
}
} }
interface IMixinStatusProps { interface IMixinStatusProps {

View File

@ -16,6 +16,11 @@ interface IClassicRendererParams {
} }
} }
enum MouseMod {
Drag = 1,
click = 2
}
class ClassicRenderer extends BasicRenderer<{}, IClassicRendererParams> { class ClassicRenderer extends BasicRenderer<{}, IClassicRendererParams> {
private basicShader: BasicsShader = undefined as any; private basicShader: BasicsShader = undefined as any;
@ -34,6 +39,17 @@ class ClassicRenderer extends BasicRenderer<{}, IClassicRendererParams> {
*/ */
private objectPool = new Map<ObjectID, DisplayObject>(); private objectPool = new Map<ObjectID, DisplayObject>();
public mouseMod: MouseMod = MouseMod.Drag;
public setMouseIcon() {
if (this.mouseMod === MouseMod.Drag) {
this.canvas.can.style.cursor = "grab";
}
if (this.mouseMod === MouseMod.click) {
this.canvas.can.style.cursor = "default";
}
}
public onLoad(): this { public onLoad(): this {
// 自动调节分辨率 // 自动调节分辨率
@ -44,27 +60,36 @@ class ClassicRenderer extends BasicRenderer<{}, IClassicRendererParams> {
this.axisObject = new Axis().bindRenderer(this).bindShader(this.basicShader); this.axisObject = new Axis().bindRenderer(this).bindShader(this.basicShader);
this.canvas.on("mousemove", () => { this.canvas.on("mousemove", () => {
if (this.mouseMod === MouseMod.Drag) {
// 相机旋转 // 相机旋转
if (this.canvas.mouseDown) if (this.canvas.mouseDown)
this.camera.ctrlInertia(this.canvas.mouseMotionX, this.canvas.mouseMotionY); this.camera.ctrlInertia(this.canvas.mouseMotionX, this.canvas.mouseMotionY);
}
}); });
this.canvas.on("mousedown", () => { this.canvas.on("mousedown", () => {
this.canvas.can.style.cursor = "grabbing" if (this.mouseMod === MouseMod.Drag) {
this.canvas.can.style.cursor = "grabbing"
}
}); });
this.canvas.on("mouseup", () => { this.canvas.on("mouseup", () => {
this.canvas.can.style.cursor = "grab" if (this.mouseMod === MouseMod.Drag) {
this.canvas.can.style.cursor = "grab"
}
}); });
this.canvas.on("mousewheel", () => { this.canvas.on("mousewheel", () => {
this.camera.eyeInertia(this.canvas.wheelDelta); if (this.mouseMod === MouseMod.Drag) {
this.camera.eyeInertia(this.canvas.wheelDelta);
}
}); });
// 运行 // 运行
this.run(); this.run();
this.setMouseIcon();
// 测试数据传递 // 测试数据传递
// setInterval(() => { // setInterval(() => {
// this.basicGroup.upLoadData(new Array(100 * 3).fill(0).map(() => (Math.random() - .5) * 2)); // this.basicGroup.upLoadData(new Array(100 * 3).fill(0).map(() => (Math.random() - .5) * 2));
@ -268,4 +293,4 @@ class ClassicRenderer extends BasicRenderer<{}, IClassicRendererParams> {
} }
export default ClassicRenderer; export default ClassicRenderer;
export { ClassicRenderer }; export { ClassicRenderer, MouseMod };