eldiron-creator 0.9.3

A game creator for classical RPGs.
Documentation
use rusterix::D3Camera;

use crate::editor::EDITCAMERA;
use crate::prelude::*;

pub struct IsoCamera {
    id: TheId,
    nodeui: TheNodeUI,
}

impl Action for IsoCamera {
    fn new() -> Self
    where
        Self: Sized,
    {
        let mut nodeui: TheNodeUI = TheNodeUI::default();

        let item = TheNodeUIItem::FloatEditSlider(
            "actionIsoAzimuth".into(),
            "".into(),
            "".into(),
            135.0,
            0.0..=360.0,
            true,
        );
        nodeui.add_item(item);

        let item = TheNodeUIItem::FloatEditSlider(
            "actionIsoElevation".into(),
            "".into(),
            "".into(),
            35.264,
            0.0..=90.0,
            true,
        );
        nodeui.add_item(item);

        let item = TheNodeUIItem::FloatEditSlider(
            "actionIsoScale".into(),
            "".into(),
            "".into(),
            6.0,
            2.0..=70.0,
            true,
        );
        nodeui.add_item(item);

        Self {
            id: TheId::named(&fl!("action_iso_camera")),
            nodeui,
        }
    }

    fn id(&self) -> TheId {
        self.id.clone()
    }

    fn info(&self) -> String {
        fl!("action_iso_camera_desc")
    }

    fn role(&self) -> ActionRole {
        ActionRole::Camera
    }

    fn accel(&self) -> Option<TheAccelerator> {
        Some(TheAccelerator::new(TheAcceleratorKey::CTRLCMD, '4'))
    }

    fn is_applicable(&self, _map: &Map, _ctx: &mut TheContext, server_ctx: &ServerContext) -> bool {
        // server_ctx.editor_view_mode != EditorViewMode::Iso &&
        server_ctx.get_map_context() == MapContext::Region
    }

    fn apply(
        &self,
        _map: &mut Map,
        ui: &mut TheUI,
        ctx: &mut TheContext,
        server_ctx: &mut ServerContext,
    ) -> Option<ProjectUndoAtom> {
        let azimuth = self.nodeui.get_f32_value("actionIsoAzimuth").unwrap_or(0.0);

        let elevation = self
            .nodeui
            .get_f32_value("actionIsoElevation")
            .unwrap_or(0.0);

        let scale = self.nodeui.get_f32_value("actionIsoScale").unwrap_or(4.0);

        EDITCAMERA
            .write()
            .unwrap()
            .iso_camera
            .set_parameter_f32("azimuth_deg", azimuth);

        EDITCAMERA
            .write()
            .unwrap()
            .iso_camera
            .set_parameter_f32("elevation_deg", elevation);

        EDITCAMERA
            .write()
            .unwrap()
            .iso_camera
            .set_parameter_f32("scale", scale);

        server_ctx.editing_surface = None;
        ui.set_widget_value("Editor View Switch", ctx, TheValue::Int(2));
        ctx.ui.send(TheEvent::IndexChanged(
            TheId::named("Editor View Switch"),
            2,
        ));

        None
    }

    fn apply_project(
        &self,
        project: &mut Project,
        _ui: &mut TheUI,
        _ctx: &mut TheContext,
        server_ctx: &mut ServerContext,
    ) {
        crate::editor::TOOLLIST
            .write()
            .unwrap()
            .update_geometry_overlay_3d(project, server_ctx);
    }

    fn params(&self) -> TheNodeUI {
        self.nodeui.clone()
    }

    fn handle_event(
        &mut self,
        event: &TheEvent,
        _project: &mut Project,
        _ui: &mut TheUI,
        _ctx: &mut TheContext,
        _server_ctx: &mut ServerContext,
    ) -> bool {
        self.nodeui.handle_event(event)
    }
}