2019-08-27 22:38:06 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
2019-08-28 01:03:01 +02:00
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
using OpenTK;
|
2019-10-06 00:37:28 +02:00
|
|
|
|
using Toolbox.Library.Forms;
|
2019-08-28 01:03:01 +02:00
|
|
|
|
using Toolbox.Library;
|
|
|
|
|
using Toolbox.Library.Rendering;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
using Toolbox.Library.IO;
|
2019-08-27 22:38:06 +02:00
|
|
|
|
|
2019-08-29 22:33:23 +02:00
|
|
|
|
namespace LayoutBXLYT
|
2019-08-27 22:38:06 +02:00
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
public partial class LayoutViewer : LayoutControlDocked
|
2019-08-27 22:38:06 +02:00
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
public LayoutUndoManager UndoManger = new LayoutUndoManager();
|
|
|
|
|
|
2019-08-29 22:33:23 +02:00
|
|
|
|
public List<BasePane> SelectedPanes = new List<BasePane>();
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
|
|
|
|
public Camera2D Camera = new Camera2D();
|
|
|
|
|
|
|
|
|
|
public class Camera2D
|
|
|
|
|
{
|
2020-01-19 02:59:49 +01:00
|
|
|
|
public Matrix4 ModelViewMatrix => ModelMatrix * ViewMatrix * ProjectionMatrix;
|
|
|
|
|
|
|
|
|
|
public Matrix4 ProjectionMatrix = Matrix4.Identity;
|
|
|
|
|
public Matrix4 ViewMatrix = Matrix4.Identity;
|
|
|
|
|
public Matrix4 ModelMatrix = Matrix4.Identity;
|
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
public float Zoom = 1;
|
|
|
|
|
public Vector2 Position;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
private LayoutEditor ParentEditor;
|
|
|
|
|
|
2019-10-17 02:15:36 +02:00
|
|
|
|
private List<BasePane> CopiedPanes = new List<BasePane>();
|
|
|
|
|
|
2019-08-28 01:03:01 +02:00
|
|
|
|
private RenderableTex backgroundTex;
|
2019-08-29 23:17:24 +02:00
|
|
|
|
public BxlytHeader LayoutFile;
|
2019-09-28 23:27:48 +02:00
|
|
|
|
public List<BxlytHeader> LayoutFiles = new List<BxlytHeader>();
|
2019-08-31 00:53:45 +02:00
|
|
|
|
private Dictionary<string, STGenericTexture> Textures;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-09-08 21:15:42 +02:00
|
|
|
|
private void glControl1_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-07 01:12:39 +02:00
|
|
|
|
public void ResetCamera()
|
|
|
|
|
{
|
|
|
|
|
Camera = new Camera2D();
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-04 20:10:17 +02:00
|
|
|
|
public void ResetLayout(BxlytHeader bxlyt)
|
|
|
|
|
{
|
|
|
|
|
LayoutFile = bxlyt;
|
|
|
|
|
UpdateViewport();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
public Dictionary<string, STGenericTexture> GetTextures()
|
|
|
|
|
{
|
2019-10-09 23:39:54 +02:00
|
|
|
|
return Textures;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
public GLControl GetGLControl() => glControl1;
|
|
|
|
|
|
|
|
|
|
public LayoutViewer(LayoutEditor editor, BxlytHeader bxlyt, Dictionary<string, STGenericTexture> textures)
|
2019-08-27 22:38:06 +02:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2019-09-28 23:27:48 +02:00
|
|
|
|
|
|
|
|
|
ParentEditor = editor;
|
|
|
|
|
|
2019-08-31 00:53:45 +02:00
|
|
|
|
Text = bxlyt.FileName;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-08-31 00:53:45 +02:00
|
|
|
|
Textures = textures;
|
2019-09-28 23:27:48 +02:00
|
|
|
|
LoadLayout(bxlyt);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void LoadLayout(BxlytHeader bxlyt)
|
|
|
|
|
{
|
|
|
|
|
LayoutFile = bxlyt;
|
|
|
|
|
LayoutFiles.Add(bxlyt);
|
|
|
|
|
|
2019-08-31 00:53:45 +02:00
|
|
|
|
if (bxlyt.Textures.Count > 0)
|
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
var textures = bxlyt.GetTextures;
|
2020-09-18 23:59:55 +02:00
|
|
|
|
foreach (var tex in bxlyt.Textures)
|
|
|
|
|
{
|
|
|
|
|
//Some games use different cases for archives
|
|
|
|
|
string lowerCase = tex.ToLower();
|
|
|
|
|
if (textures.ContainsKey(tex))
|
|
|
|
|
AddTexture(tex, textures[tex]);
|
|
|
|
|
else if (textures.ContainsKey(lowerCase))
|
|
|
|
|
AddTexture(tex, textures[lowerCase]);
|
|
|
|
|
}
|
2019-08-31 00:53:45 +02:00
|
|
|
|
}
|
2019-08-30 01:01:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-18 23:59:55 +02:00
|
|
|
|
private void AddTexture(string name, STGenericTexture tex) {
|
|
|
|
|
if (!Textures.ContainsKey(name))
|
|
|
|
|
Textures.Add(name, tex);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
public override void OnControlClosing()
|
2019-08-30 01:01:47 +02:00
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
foreach (var tex in LayoutFile.Textures)
|
|
|
|
|
{
|
|
|
|
|
if (Textures.ContainsKey(tex))
|
|
|
|
|
{
|
|
|
|
|
Textures[tex].DisposeRenderable();
|
|
|
|
|
Textures.Remove(tex);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateViewport()
|
|
|
|
|
{
|
|
|
|
|
glControl1.Invalidate();
|
2019-08-27 22:38:06 +02:00
|
|
|
|
}
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
|
|
|
|
private void glControl1_Paint(object sender, PaintEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!Runtime.OpenTKInitialized)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
glControl1.Context.MakeCurrent(glControl1.WindowInfo);
|
|
|
|
|
OnRender();
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
private BxlytShader GlobalShader;
|
|
|
|
|
public bool GameWindow = false;
|
|
|
|
|
public bool UseOrtho => Runtime.LayoutEditor.UseOrthographicView;
|
2019-08-30 02:51:41 +02:00
|
|
|
|
private Color BackgroundColor => Runtime.LayoutEditor.BackgroundColor;
|
2019-08-28 01:03:01 +02:00
|
|
|
|
private void OnRender()
|
|
|
|
|
{
|
2019-08-29 21:45:32 +02:00
|
|
|
|
if (LayoutFile == null) return;
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
if (!GameWindow)
|
|
|
|
|
{
|
|
|
|
|
if (ParentEditor != null)
|
|
|
|
|
ParentEditor.GamePreviewWindow?.UpdateViewport();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (GameWindow)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
RenderGameWindow();
|
2019-10-05 19:25:28 +02:00
|
|
|
|
RenderScene();
|
|
|
|
|
}
|
2019-09-28 23:27:48 +02:00
|
|
|
|
else
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
RenderEditor();
|
2019-10-05 19:25:28 +02:00
|
|
|
|
RenderScene();
|
|
|
|
|
}
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RenderGameWindow()
|
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
glControl1.MakeCurrent();
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
int WindowWidth = (int)LayoutFile.RootPane.Width;
|
|
|
|
|
int WindowHeight = (int)LayoutFile.RootPane.Height;
|
|
|
|
|
|
|
|
|
|
GL.Viewport(0, 0, glControl1.Width, glControl1.Height);
|
|
|
|
|
GL.MatrixMode(MatrixMode.Projection);
|
|
|
|
|
GL.LoadIdentity();
|
|
|
|
|
if (UseOrtho)
|
|
|
|
|
{
|
|
|
|
|
float halfW = WindowWidth, halfH = WindowHeight;
|
|
|
|
|
var orthoMatrix = Matrix4.CreateOrthographic(halfW, halfH, -10000, 10000);
|
|
|
|
|
GL.LoadMatrix(ref orthoMatrix);
|
|
|
|
|
GL.MatrixMode(MatrixMode.Modelview);
|
2020-01-19 02:59:49 +01:00
|
|
|
|
Camera.ProjectionMatrix = orthoMatrix;
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var cameraPosition = new Vector3(0, 0, -600);
|
2019-10-19 23:36:16 +02:00
|
|
|
|
var perspectiveMatrix = Matrix4.CreateTranslation(cameraPosition) * Matrix4.CreatePerspectiveFieldOfView(0.785398f, WindowWidth / WindowHeight, 0.01f, 100000);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
GL.LoadMatrix(ref perspectiveMatrix);
|
|
|
|
|
GL.MatrixMode(MatrixMode.Modelview);
|
2020-01-19 02:59:49 +01:00
|
|
|
|
Camera.ProjectionMatrix = perspectiveMatrix;
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
GL.ClearColor(BackgroundColor);
|
|
|
|
|
GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RenderEditor()
|
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
glControl1.MakeCurrent();
|
|
|
|
|
|
2019-08-28 01:03:01 +02:00
|
|
|
|
GL.Viewport(0, 0, glControl1.Width, glControl1.Height);
|
|
|
|
|
GL.MatrixMode(MatrixMode.Projection);
|
|
|
|
|
GL.LoadIdentity();
|
2019-09-07 01:12:39 +02:00
|
|
|
|
if (UseOrtho)
|
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
float halfW = glControl1.Width / 2.0f, halfH = glControl1.Height / 2.0f;
|
|
|
|
|
var orthoMatrix = Matrix4.CreateOrthographic(halfW, halfH, -10000, 10000);
|
|
|
|
|
GL.LoadMatrix(ref orthoMatrix);
|
2019-09-07 01:12:39 +02:00
|
|
|
|
GL.MatrixMode(MatrixMode.Modelview);
|
2020-01-19 02:59:49 +01:00
|
|
|
|
Camera.ProjectionMatrix = orthoMatrix;
|
2019-09-07 01:12:39 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var cameraPosition = new Vector3(Camera.Position.X, Camera.Position.Y, -(Camera.Zoom * 500));
|
2019-09-28 23:27:48 +02:00
|
|
|
|
var perspectiveMatrix = Matrix4.CreateTranslation(cameraPosition) * Matrix4.CreatePerspectiveFieldOfView(1.3f, glControl1.Width / glControl1.Height, 0.01f, 100000);
|
2019-09-07 01:12:39 +02:00
|
|
|
|
GL.LoadMatrix(ref perspectiveMatrix);
|
|
|
|
|
GL.MatrixMode(MatrixMode.Modelview);
|
2020-01-19 02:59:49 +01:00
|
|
|
|
Camera.ProjectionMatrix = perspectiveMatrix;
|
2019-09-07 01:12:39 +02:00
|
|
|
|
}
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
GL.ClearColor(BackgroundColor);
|
|
|
|
|
GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit);
|
|
|
|
|
|
|
|
|
|
if (UseOrtho && !GameWindow)
|
|
|
|
|
{
|
|
|
|
|
GL.PushMatrix();
|
|
|
|
|
GL.Scale(Camera.Zoom, Camera.Zoom, 1);
|
|
|
|
|
GL.Translate(Camera.Position.X, Camera.Position.Y, 0);
|
2020-01-19 02:59:49 +01:00
|
|
|
|
|
|
|
|
|
Camera.ViewMatrix *= Matrix4.CreateScale(Camera.Zoom, Camera.Zoom, 1) *
|
|
|
|
|
Matrix4.CreateTranslation(Camera.Position.X, Camera.Position.Y, 0);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
}
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
private void RenderScene(bool showSelectionBox = false)
|
2019-09-28 23:27:48 +02:00
|
|
|
|
{
|
2019-09-17 01:56:41 +02:00
|
|
|
|
// GL.Disable(EnableCap.CullFace);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
GL.Enable(EnableCap.Blend);
|
2019-09-08 21:15:42 +02:00
|
|
|
|
GL.Enable(EnableCap.AlphaTest);
|
|
|
|
|
GL.AlphaFunc(AlphaFunction.Always, 0f);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
GL.BlendFunc(BlendingFactor.SrcAlpha, BlendingFactor.OneMinusSrcAlpha);
|
2019-09-03 01:48:47 +02:00
|
|
|
|
GL.Enable(EnableCap.ColorMaterial);
|
2019-10-19 23:36:16 +02:00
|
|
|
|
GL.Disable(EnableCap.Texture2D);
|
2019-08-31 03:53:00 +02:00
|
|
|
|
GL.BindTexture(TextureTarget.Texture2D, 0);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
GL.BlendEquation(BlendEquationMode.FuncAdd);
|
2019-08-31 03:53:00 +02:00
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
if (!GameWindow)
|
|
|
|
|
{
|
|
|
|
|
DrawRootPane(LayoutFile.RootPane);
|
|
|
|
|
DrawGrid();
|
|
|
|
|
DrawXyLines();
|
|
|
|
|
}
|
2019-09-08 21:15:42 +02:00
|
|
|
|
|
|
|
|
|
GL.BindTexture(TextureTarget.Texture2D, 0);
|
2020-02-12 01:19:23 +01:00
|
|
|
|
GL.Disable(EnableCap.Texture2D);
|
2019-09-08 21:15:42 +02:00
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
if (GlobalShader == null)
|
|
|
|
|
{
|
|
|
|
|
GlobalShader = new BxlytShader();
|
|
|
|
|
GlobalShader.Compile();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
bool PreviewHitbox = false;
|
|
|
|
|
if (PreviewHitbox)
|
|
|
|
|
{
|
|
|
|
|
foreach (var file in LayoutFiles)
|
|
|
|
|
{
|
|
|
|
|
foreach (var pane in file.PaneLookup.Values)
|
|
|
|
|
{
|
2019-10-15 23:48:52 +02:00
|
|
|
|
if (!pane.Visible || !pane.DisplayInEditor && !pane.IsRoot)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
//Hitbox debug
|
|
|
|
|
var hitbox = pane.CreateRectangle();
|
2019-10-06 03:15:19 +02:00
|
|
|
|
hitbox = hitbox.GetTransformedRectangle(pane.Parent, pane.Translate, pane.Rotate, pane.Scale);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
|
|
|
|
GL.Begin(PrimitiveType.Quads);
|
2019-10-06 03:15:19 +02:00
|
|
|
|
GL.Color4(Color.FromArgb(128, 255, 0, 0));
|
2019-10-27 02:28:56 +02:00
|
|
|
|
GL.Vertex2(hitbox.BottomLeftPoint);
|
|
|
|
|
GL.Vertex2(hitbox.BottomRightPoint);
|
|
|
|
|
GL.Vertex2(hitbox.TopRightPoint);
|
|
|
|
|
GL.Vertex2(hitbox.TopLeftPoint);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
GL.End();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
foreach (var layout in LayoutFiles)
|
|
|
|
|
RenderPanes(GlobalShader, layout.RootPane, true, 255, false, null, 0);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
Vector2 TopLeft = new Vector2();
|
|
|
|
|
Vector2 BottomRight = new Vector2();
|
|
|
|
|
|
2020-02-12 01:19:23 +01:00
|
|
|
|
GL.Disable(EnableCap.Texture2D);
|
2019-10-05 20:19:15 +02:00
|
|
|
|
GL.Disable(EnableCap.AlphaTest);
|
|
|
|
|
GL.Disable(EnableCap.Blend);
|
|
|
|
|
GL.UseProgram(0);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
foreach (var pane in SelectedPanes)
|
|
|
|
|
{
|
|
|
|
|
var rect = pane.CreateRectangle();
|
|
|
|
|
TopLeft.X = Math.Min(TopLeft.X, rect.LeftPoint);
|
|
|
|
|
TopLeft.Y = Math.Max(TopLeft.Y, rect.TopPoint);
|
|
|
|
|
BottomRight.X = Math.Max(BottomRight.X, rect.RightPoint);
|
|
|
|
|
BottomRight.Y = Math.Min(BottomRight.Y, rect.BottomPoint);
|
|
|
|
|
|
|
|
|
|
if (pickAxis == PickAxis.Y)
|
|
|
|
|
{
|
|
|
|
|
GL.Begin(PrimitiveType.Lines);
|
|
|
|
|
GL.Color4(Color.Green);
|
|
|
|
|
GL.Vertex2(pane.Translate.X, -999999);
|
|
|
|
|
GL.Vertex2(pane.Translate.X, 99999);
|
|
|
|
|
GL.End();
|
|
|
|
|
}
|
|
|
|
|
if (pickAxis == PickAxis.X)
|
|
|
|
|
{
|
|
|
|
|
GL.Begin(PrimitiveType.Lines);
|
|
|
|
|
GL.Color4(Color.Red);
|
|
|
|
|
GL.Vertex2(-999999, pane.Translate.Y);
|
|
|
|
|
GL.Vertex2(99999, pane.Translate.Y);
|
|
|
|
|
GL.End();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
|
|
|
|
|
if (showSelectionBox)
|
|
|
|
|
{
|
|
|
|
|
GL.Begin(PrimitiveType.LineLoop);
|
|
|
|
|
GL.Color4(Color.Red);
|
2019-10-27 02:28:56 +02:00
|
|
|
|
GL.Vertex2(SelectionBox.BottomLeftPoint);
|
|
|
|
|
GL.Vertex2(SelectionBox.BottomRightPoint);
|
|
|
|
|
GL.Vertex2(SelectionBox.TopRightPoint);
|
|
|
|
|
GL.Vertex2(SelectionBox.TopLeftPoint);
|
2019-10-14 03:02:39 +02:00
|
|
|
|
GL.End();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
//Create a bounding box for all selected panes
|
|
|
|
|
//This box will allow resizing of all selected panes
|
|
|
|
|
if (SelectedPanes.Count > 0)
|
2019-10-15 23:48:52 +02:00
|
|
|
|
DrawSelectionBox(SelectedPanes, true);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-09-07 01:12:39 +02:00
|
|
|
|
if (UseOrtho)
|
|
|
|
|
GL.PopMatrix();
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-09-08 21:15:42 +02:00
|
|
|
|
GL.UseProgram(0);
|
|
|
|
|
|
2019-08-28 01:03:01 +02:00
|
|
|
|
glControl1.SwapBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
private static CustomRectangle GetSelectedPanesBounding(List<BasePane> panes)
|
|
|
|
|
{
|
|
|
|
|
CustomRectangle rect = new CustomRectangle(0, 0, 0, 0);
|
|
|
|
|
|
|
|
|
|
List<Vector2> points = new List<Vector2>();
|
|
|
|
|
foreach (var pane in panes)
|
|
|
|
|
{
|
|
|
|
|
var paneRect = pane.CreateRectangle();
|
2019-10-19 23:36:16 +02:00
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
rect = paneRect.GetTransformedRectangle(pane.Parent,
|
2019-10-19 23:36:16 +02:00
|
|
|
|
pane.GetTranslation(), pane.GetRotation(), pane.GetScale());
|
2019-10-15 23:48:52 +02:00
|
|
|
|
points.AddRange(new Vector2[4]
|
|
|
|
|
{
|
2019-10-27 02:28:56 +02:00
|
|
|
|
rect.TopLeftPoint,
|
|
|
|
|
rect.TopRightPoint,
|
|
|
|
|
rect.BottomRightPoint,
|
|
|
|
|
rect.BottomLeftPoint,
|
2019-10-15 23:48:52 +02:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var minX = (int)points.Min(p => p.X);
|
|
|
|
|
var maxX = (int)points.Max(p => p.X);
|
|
|
|
|
var minY = (int)points.Min(p => p.Y);
|
|
|
|
|
var maxY = (int)points.Max(p => p.Y);
|
|
|
|
|
|
|
|
|
|
rect = new CustomRectangle(minX, maxX, maxY, minY);
|
|
|
|
|
}
|
|
|
|
|
points.Clear();
|
|
|
|
|
|
|
|
|
|
return rect;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void DrawSelectionBox(List<BasePane> panes, bool isSelected)
|
|
|
|
|
{
|
|
|
|
|
//Create a rectangle with the largest points selected
|
|
|
|
|
CustomRectangle rect = GetSelectedPanesBounding(panes);
|
|
|
|
|
|
|
|
|
|
GL.Disable(EnableCap.Blend);
|
|
|
|
|
GL.Disable(EnableCap.AlphaTest);
|
|
|
|
|
GL.Disable(EnableCap.Texture2D);
|
|
|
|
|
GL.UseProgram(0);
|
|
|
|
|
|
|
|
|
|
GL.Begin(PrimitiveType.LineLoop);
|
|
|
|
|
GL.Color4(isSelected ? Color.Red : Color.Green);
|
2019-10-27 02:28:56 +02:00
|
|
|
|
GL.Vertex2(rect.BottomLeftPoint);
|
|
|
|
|
GL.Vertex2(rect.BottomRightPoint);
|
|
|
|
|
GL.Vertex2(rect.TopRightPoint);
|
|
|
|
|
GL.Vertex2(rect.TopLeftPoint);
|
2019-10-15 23:48:52 +02:00
|
|
|
|
GL.End();
|
|
|
|
|
|
|
|
|
|
if (isSelected)
|
|
|
|
|
{
|
|
|
|
|
var transformed = rect;
|
|
|
|
|
var leftTop = new Vector2(transformed.LeftPoint, transformed.TopPoint);
|
|
|
|
|
var left = new Vector2(transformed.LeftPoint, (transformed.BottomPoint + transformed.TopPoint) / 2);
|
|
|
|
|
var leftBottom = new Vector2(transformed.LeftPoint, transformed.BottomPoint);
|
|
|
|
|
var rightTop = new Vector2(transformed.RightPoint, transformed.TopPoint);
|
|
|
|
|
var right = new Vector2(transformed.RightPoint, (transformed.BottomPoint + transformed.TopPoint) / 2);
|
|
|
|
|
var rightBottom = new Vector2(transformed.RightPoint, transformed.BottomPoint);
|
|
|
|
|
var top = new Vector2((transformed.RightPoint + transformed.LeftPoint) / 2, transformed.TopPoint);
|
|
|
|
|
var bottom = new Vector2((transformed.RightPoint + transformed.LeftPoint) / 2, transformed.BottomPoint);
|
|
|
|
|
|
|
|
|
|
DrawEdgeSquare(leftTop);
|
|
|
|
|
DrawEdgeSquare(left);
|
|
|
|
|
DrawEdgeSquare(leftBottom);
|
|
|
|
|
DrawEdgeSquare(rightTop);
|
|
|
|
|
DrawEdgeSquare(right);
|
|
|
|
|
DrawEdgeSquare(rightBottom);
|
|
|
|
|
DrawEdgeSquare(top);
|
|
|
|
|
DrawEdgeSquare(bottom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GL.Enable(EnableCap.Blend);
|
|
|
|
|
GL.Enable(EnableCap.AlphaTest);
|
|
|
|
|
GL.Enable(EnableCap.Texture2D);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void DrawEdgeSquare(Vector2 position)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
2019-10-15 23:48:52 +02:00
|
|
|
|
float scale = 5;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
GL.Begin(PrimitiveType.LineLoop);
|
|
|
|
|
GL.Color4(Color.Red);
|
|
|
|
|
GL.Vertex2(position.X + -1 * scale, position.Y + -1 * scale);
|
|
|
|
|
GL.Vertex2(position.X + 1 * scale, position.Y + -1 * scale);
|
|
|
|
|
GL.Vertex2(position.X + 1 * scale, position.Y + 1 * scale);
|
|
|
|
|
GL.Vertex2(position.X + -1 * scale, position.Y + 1 * scale);
|
|
|
|
|
GL.End();
|
2019-10-05 19:25:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
private void RenderPanes(BxlytShader shader, BasePane pane, bool isRoot, byte parentAlpha, bool parentAlphaInfluence, BasePane partPane = null, int stage = 0)
|
2019-08-28 01:03:01 +02:00
|
|
|
|
{
|
2019-10-20 21:26:25 +02:00
|
|
|
|
if (!pane.DisplayInEditor)
|
2019-08-29 21:45:32 +02:00
|
|
|
|
return;
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
GL.PushMatrix();
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-09-07 01:12:39 +02:00
|
|
|
|
//Check XY rotation and draw the pane before it was rotated
|
|
|
|
|
bool isRotatedXY = pane.Rotate.X != 0 || pane.Rotate.Y != 0;
|
|
|
|
|
if (isRotatedXY && SelectedPanes.Contains(pane))
|
|
|
|
|
{
|
|
|
|
|
GL.PushMatrix();
|
|
|
|
|
GL.Translate(pane.Translate.X, pane.Translate.Y, 0);
|
|
|
|
|
GL.Rotate(pane.Rotate.Z, 0, 0, 1);
|
|
|
|
|
GL.Scale(pane.Scale.X, pane.Scale.Y, 1);
|
|
|
|
|
|
2019-10-06 03:15:19 +02:00
|
|
|
|
DrawDefaultPane(shader, pane, false);
|
2019-09-07 01:12:39 +02:00
|
|
|
|
|
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
|
2019-10-20 02:32:44 +02:00
|
|
|
|
var translate = pane.GetTranslation();
|
|
|
|
|
var rotate = pane.GetRotation();
|
|
|
|
|
var scale = pane.GetScale();
|
2019-09-28 23:27:48 +02:00
|
|
|
|
|
2019-09-05 22:24:03 +02:00
|
|
|
|
if (partPane != null)
|
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
translate = translate + pane.Translate;
|
|
|
|
|
scale = scale * pane.Scale;
|
|
|
|
|
rotate = rotate + pane.Rotate;
|
2020-02-12 01:19:23 +01:00
|
|
|
|
|
|
|
|
|
var prtPane = (Cafe.PRT1)partPane;
|
|
|
|
|
scale = new Syroot.Maths.Vector2F(
|
|
|
|
|
scale.X * prtPane.MagnifyX,
|
|
|
|
|
scale.Y * prtPane.MagnifyY);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-10-20 22:41:58 +02:00
|
|
|
|
//Note rotation matrix done by shaders
|
2019-09-17 01:56:41 +02:00
|
|
|
|
|
2019-10-20 22:41:58 +02:00
|
|
|
|
GL.Translate(translate.X, translate.Y, 0);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
GL.Scale(scale.X, scale.Y, 1);
|
|
|
|
|
|
|
|
|
|
byte alpha = pane.Alpha;
|
|
|
|
|
if (pane.animController.PaneVertexColors.ContainsKey(LVCTarget.PaneAlpha))
|
|
|
|
|
alpha = (byte)pane.animController.PaneVertexColors[LVCTarget.PaneAlpha];
|
2019-09-05 22:24:03 +02:00
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
byte effectiveAlpha = (byte)(parentAlpha == 255 ? alpha : (alpha * parentAlpha) / 255);
|
2019-09-08 21:15:42 +02:00
|
|
|
|
if (!parentAlphaInfluence)
|
2019-09-28 23:27:48 +02:00
|
|
|
|
effectiveAlpha = alpha;
|
2019-09-08 21:15:42 +02:00
|
|
|
|
|
2019-09-07 01:12:39 +02:00
|
|
|
|
parentAlphaInfluence = parentAlphaInfluence || pane.InfluenceAlpha;
|
2019-09-02 23:10:24 +02:00
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
if (!isRoot)
|
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
bool isSelected = SelectedPanes.Contains(pane);
|
|
|
|
|
|
2019-10-20 21:26:25 +02:00
|
|
|
|
if (!pane.Visible && !pane.animController.Visibile)
|
2019-10-09 23:39:54 +02:00
|
|
|
|
DrawDefaultPane(shader, pane, isSelected);
|
|
|
|
|
else if (pane is IPicturePane)
|
2020-01-19 02:59:49 +01:00
|
|
|
|
BxlytToGL.DrawPictureBox(pane, Camera, GameWindow, effectiveAlpha, Textures, isSelected);
|
2019-09-11 00:42:48 +02:00
|
|
|
|
else if (pane is IWindowPane)
|
2020-01-19 02:59:49 +01:00
|
|
|
|
BxlytToGL.DrawWindowPane(pane, Camera, GameWindow, effectiveAlpha, Textures, isSelected);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
else if (pane is IBoundryPane)
|
2019-10-20 22:41:58 +02:00
|
|
|
|
{
|
|
|
|
|
shader.Enable();
|
2019-11-07 03:27:52 +01:00
|
|
|
|
shader.SetBasic(pane, Color.White);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
BxlytToGL.DrawBoundryPane(pane, GameWindow, effectiveAlpha, isSelected);
|
2019-10-20 22:41:58 +02:00
|
|
|
|
shader.Disable();
|
|
|
|
|
}
|
2019-09-28 23:27:48 +02:00
|
|
|
|
else if (pane is ITextPane && Runtime.LayoutEditor.DisplayTextPane)
|
|
|
|
|
{
|
|
|
|
|
var textPane = (ITextPane)pane;
|
2019-09-29 02:24:20 +02:00
|
|
|
|
Bitmap bitmap = null;
|
2019-10-06 17:18:53 +02:00
|
|
|
|
|
2020-02-15 02:15:03 +01:00
|
|
|
|
foreach (var fontFile in FirstPlugin.PluginRuntime.BxfntFiles) {
|
|
|
|
|
if (Utils.CompareNoExtension(fontFile.FileName, textPane.FontName))
|
|
|
|
|
bitmap = fontFile.GetBitmap(textPane.Text, false, pane);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
2019-10-06 17:18:53 +02:00
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
if (bitmap != null)
|
2020-01-19 02:59:49 +01:00
|
|
|
|
BxlytToGL.DrawTextbox(pane, Camera, GameWindow, bitmap, effectiveAlpha,
|
2019-10-05 19:25:28 +02:00
|
|
|
|
Textures, SelectedPanes, textPane.RenderableFont == null, isSelected);
|
2019-09-29 02:24:20 +02:00
|
|
|
|
else
|
2019-10-06 03:15:19 +02:00
|
|
|
|
DrawDefaultPane(shader, pane, isSelected);
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
2020-02-12 01:19:23 +01:00
|
|
|
|
else if (pane is Cafe.SCR1)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
BxlytToGL.DrawScissorPane(pane, GameWindow, effectiveAlpha, isSelected);
|
2020-02-12 01:19:23 +01:00
|
|
|
|
else if (pane is Cafe.ALI1)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
BxlytToGL.DrawAlignmentPane(pane, GameWindow, effectiveAlpha, isSelected);
|
2020-02-12 01:19:23 +01:00
|
|
|
|
else if (pane is Cafe.PRT1)
|
|
|
|
|
DrawPartsPane(shader, (Cafe.PRT1)pane, effectiveAlpha, isSelected, parentAlphaInfluence);
|
2019-09-09 02:47:19 +02:00
|
|
|
|
else
|
2019-10-06 03:15:19 +02:00
|
|
|
|
DrawDefaultPane(shader, pane, isSelected);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
isRoot = false;
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-09-07 01:12:39 +02:00
|
|
|
|
byte childAlpha = pane.InfluenceAlpha || parentAlphaInfluence ? effectiveAlpha : byte.MaxValue;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
foreach (var childPane in pane.Childern)
|
2019-09-28 23:27:48 +02:00
|
|
|
|
RenderPanes(shader, childPane, isRoot, childAlpha, parentAlphaInfluence, partPane);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 22:33:23 +02:00
|
|
|
|
private void DrawRootPane(BasePane pane)
|
2019-08-29 21:45:32 +02:00
|
|
|
|
{
|
|
|
|
|
Color color = Color.Black;
|
|
|
|
|
if (SelectedPanes.Contains(pane))
|
|
|
|
|
color = Color.Red;
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-08-29 22:33:23 +02:00
|
|
|
|
CustomRectangle rect = pane.CreateRectangle();
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
|
|
|
|
//Draw a quad which is the backcolor but lighter
|
2019-08-28 01:03:01 +02:00
|
|
|
|
GL.Begin(PrimitiveType.Quads);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
GL.Color3(BackgroundColor.Lighten(10));
|
2019-10-27 02:28:56 +02:00
|
|
|
|
GL.Vertex2(rect.TopLeftPoint);
|
|
|
|
|
GL.Vertex2(rect.TopRightPoint);
|
|
|
|
|
GL.Vertex2(rect.BottomRightPoint);
|
|
|
|
|
GL.Vertex2(rect.BottomLeftPoint);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
GL.End();
|
|
|
|
|
|
|
|
|
|
//Draw outline of root pane
|
|
|
|
|
GL.Begin(PrimitiveType.LineLoop);
|
|
|
|
|
GL.PolygonOffset(0.5f, 2);
|
|
|
|
|
GL.LineWidth(33);
|
|
|
|
|
GL.Color3(color);
|
2019-10-27 02:28:56 +02:00
|
|
|
|
GL.Vertex2(rect.TopLeftPoint);
|
|
|
|
|
GL.Vertex2(rect.TopRightPoint);
|
|
|
|
|
GL.Vertex2(rect.BottomRightPoint);
|
|
|
|
|
GL.Vertex2(rect.BottomLeftPoint);
|
2019-08-28 01:03:01 +02:00
|
|
|
|
GL.End();
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 23:27:48 +02:00
|
|
|
|
private void DrawDefaultPane(BxlytShader shader, BasePane pane, bool isSelectionBox = false)
|
2019-08-29 21:45:32 +02:00
|
|
|
|
{
|
2019-10-06 03:15:19 +02:00
|
|
|
|
if (!Runtime.LayoutEditor.DisplayNullPane || GameWindow || Runtime.LayoutEditor.IsGamePreview)
|
2019-09-13 00:52:47 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2019-10-20 22:41:58 +02:00
|
|
|
|
shader.Enable();
|
2019-11-07 03:27:52 +01:00
|
|
|
|
shader.SetBasic(pane, Color.Black);
|
2019-10-20 22:41:58 +02:00
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
Vector2[] TexCoords = new Vector2[] {
|
|
|
|
|
new Vector2(1,1),
|
|
|
|
|
new Vector2(0,1),
|
|
|
|
|
new Vector2(0,0),
|
|
|
|
|
new Vector2(1,0)
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-07 03:27:52 +01:00
|
|
|
|
Color color = Color.Black;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
if (SelectedPanes.Contains(pane))
|
|
|
|
|
color = Color.Red;
|
|
|
|
|
|
|
|
|
|
Color[] Colors = new Color[] {
|
|
|
|
|
color,
|
|
|
|
|
color,
|
|
|
|
|
color,
|
|
|
|
|
color,
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-06 03:15:19 +02:00
|
|
|
|
BxlytToGL.DrawRectangle(pane, GameWindow, pane.Rectangle, TexCoords, Colors, true, 255, isSelectionBox);
|
2019-10-20 22:41:58 +02:00
|
|
|
|
|
|
|
|
|
shader.Disable();
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-12 01:19:23 +01:00
|
|
|
|
private void DrawPartsPane(BxlytShader shader, Cafe.PRT1 pane, byte effectiveAlpha, bool isSelected, bool parentInfluenceAlpha)
|
2019-09-05 22:24:03 +02:00
|
|
|
|
{
|
2019-10-05 20:05:37 +02:00
|
|
|
|
if (Runtime.LayoutEditor.PartsAsNullPanes)
|
|
|
|
|
{
|
|
|
|
|
DrawDefaultPane(shader, pane, isSelected);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-05 22:24:03 +02:00
|
|
|
|
pane.UpdateTextureData(this.Textures);
|
|
|
|
|
var partPane = pane.GetExternalPane();
|
|
|
|
|
if (partPane != null)
|
2020-01-19 02:59:49 +01:00
|
|
|
|
RenderPanes(shader, partPane, true, effectiveAlpha, parentInfluenceAlpha);
|
2019-09-05 22:24:03 +02:00
|
|
|
|
else
|
2019-10-15 23:48:52 +02:00
|
|
|
|
DrawDefaultPane(shader, pane, isSelected);
|
2019-09-05 22:24:03 +02:00
|
|
|
|
|
|
|
|
|
if (pane.Properties != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (var prop in pane.Properties)
|
|
|
|
|
{
|
|
|
|
|
if (prop.Property != null)
|
2019-09-08 21:15:42 +02:00
|
|
|
|
{
|
2020-01-19 02:59:49 +01:00
|
|
|
|
RenderPanes(shader, prop.Property, false, effectiveAlpha, parentInfluenceAlpha || pane.InfluenceAlpha);
|
2019-09-08 21:15:42 +02:00
|
|
|
|
}
|
2019-09-05 22:24:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-07 01:12:39 +02:00
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
private void DrawBackground()
|
|
|
|
|
{
|
|
|
|
|
if (backgroundTex == null)
|
|
|
|
|
{
|
2019-09-17 01:56:41 +02:00
|
|
|
|
/* backgroundTex = RenderableTex.FromBitmap(Properties.Resources.GridBackground);
|
|
|
|
|
backgroundTex.TextureWrapR = TextureWrapMode.Repeat;
|
|
|
|
|
backgroundTex.TextureWrapT = TextureWrapMode.Repeat;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
|
|
|
|
|
2019-09-17 01:56:41 +02:00
|
|
|
|
GL.Enable(EnableCap.Texture2D);
|
|
|
|
|
GL.BindTexture(TextureTarget.Texture2D, backgroundTex.TexID);
|
|
|
|
|
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureWrapS, (float)backgroundTex.TextureWrapR);
|
|
|
|
|
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureWrapT, (float)backgroundTex.TextureWrapT);
|
|
|
|
|
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureMagFilter, (float)backgroundTex.TextureMagFilter);
|
|
|
|
|
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureMinFilter, (float)backgroundTex.TextureMinFilter);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-09-17 01:56:41 +02:00
|
|
|
|
float UVscale = 15;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-09-17 01:56:41 +02:00
|
|
|
|
int PanelWidth = 9000;
|
|
|
|
|
int PanelWHeight = 9000;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-09-17 01:56:41 +02:00
|
|
|
|
Vector2 scaleCenter = new Vector2(0.5f, 0.5f);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-09-17 01:56:41 +02:00
|
|
|
|
Vector2[] TexCoords = new Vector2[] {
|
|
|
|
|
new Vector2(1,1),
|
|
|
|
|
new Vector2(0,1),
|
|
|
|
|
new Vector2(0,0),
|
|
|
|
|
new Vector2(1,0),
|
|
|
|
|
};
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
2019-09-17 01:56:41 +02:00
|
|
|
|
for (int i = 0; i < TexCoords.Length; i++)
|
|
|
|
|
TexCoords[i] = (TexCoords[i] - scaleCenter) * 20 + scaleCenter;
|
|
|
|
|
|
|
|
|
|
GL.MatrixMode(MatrixMode.Modelview);
|
|
|
|
|
GL.LoadIdentity();
|
|
|
|
|
GL.PushMatrix();
|
|
|
|
|
GL.Scale(1, 1, 1);
|
|
|
|
|
GL.Translate(0, 0, 0);
|
|
|
|
|
|
|
|
|
|
GL.Color4(Color.White);
|
|
|
|
|
|
|
|
|
|
GL.Begin(PrimitiveType.Quads);
|
|
|
|
|
GL.TexCoord2(TexCoords[0]);
|
|
|
|
|
GL.Vertex3(PanelWidth, PanelWHeight, 0);
|
|
|
|
|
GL.TexCoord2(TexCoords[1]);
|
|
|
|
|
GL.Vertex3(-PanelWidth, PanelWHeight, 0);
|
|
|
|
|
GL.TexCoord2(TexCoords[2]);
|
|
|
|
|
GL.Vertex3(-PanelWidth, -PanelWHeight, 0);
|
|
|
|
|
GL.TexCoord2(TexCoords[3]);
|
|
|
|
|
GL.Vertex3(PanelWidth, -PanelWHeight, 0);
|
|
|
|
|
GL.End();
|
|
|
|
|
|
|
|
|
|
GL.BindTexture(TextureTarget.Texture2D, 0);
|
|
|
|
|
GL.PopMatrix();*/
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateBackgroundColor(Color color)
|
|
|
|
|
{
|
2019-08-30 02:51:41 +02:00
|
|
|
|
Runtime.LayoutEditor.BackgroundColor = color;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
glControl1.Invalidate();
|
2019-08-30 02:51:41 +02:00
|
|
|
|
Config.Save();
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DrawXyLines()
|
|
|
|
|
{
|
2019-09-28 23:27:48 +02:00
|
|
|
|
if (GameWindow || Runtime.LayoutEditor.IsGamePreview)
|
2019-09-17 03:02:00 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
int lineLength = 20;
|
|
|
|
|
|
|
|
|
|
GL.Color3(Color.Green);
|
|
|
|
|
GL.Begin(PrimitiveType.Lines);
|
|
|
|
|
GL.Vertex2(0, 0);
|
|
|
|
|
GL.Vertex2(0, lineLength);
|
|
|
|
|
GL.End();
|
|
|
|
|
|
|
|
|
|
GL.Color3(Color.Red);
|
|
|
|
|
GL.Begin(PrimitiveType.Lines);
|
|
|
|
|
GL.Vertex2(0, 0);
|
|
|
|
|
GL.Vertex2(lineLength, 0);
|
|
|
|
|
GL.End();
|
2019-08-28 01:03:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
private void DrawGrid()
|
2019-08-28 01:03:01 +02:00
|
|
|
|
{
|
2019-09-17 03:02:00 +02:00
|
|
|
|
if (!Runtime.LayoutEditor.DisplayGrid)
|
|
|
|
|
return;
|
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
var size = 40;
|
|
|
|
|
var amount = 300;
|
|
|
|
|
|
|
|
|
|
GL.LineWidth(0.001f);
|
|
|
|
|
GL.Color3(BackgroundColor.Darken(20));
|
|
|
|
|
GL.Begin(PrimitiveType.Lines);
|
|
|
|
|
|
|
|
|
|
int squareGridCounter = 0;
|
|
|
|
|
for (var i = -amount; i <= amount; i++)
|
|
|
|
|
{
|
|
|
|
|
if (squareGridCounter > 5)
|
|
|
|
|
{
|
|
|
|
|
squareGridCounter = 0;
|
|
|
|
|
GL.LineWidth(33f);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GL.LineWidth(0.001f);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-07 01:12:39 +02:00
|
|
|
|
GL.Vertex2(new Vector2(-amount * size, i * size));
|
|
|
|
|
GL.Vertex2(new Vector2(amount * size, i * size));
|
|
|
|
|
GL.Vertex2(new Vector2(i * size, -amount * size));
|
|
|
|
|
GL.Vertex2(new Vector2(i * size, amount * size));
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
squareGridCounter++;
|
|
|
|
|
}
|
|
|
|
|
GL.End();
|
|
|
|
|
GL.Color3(Color.Transparent);
|
|
|
|
|
GL.PopAttrib();
|
2019-08-28 01:03:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
private bool mouseCameraDown = false;
|
|
|
|
|
private bool mouseDown = false;
|
|
|
|
|
|
|
|
|
|
private List<BasePane> SelectionBoxPanes = new List<BasePane>();
|
|
|
|
|
private bool showSelectionBox = false;
|
2019-09-03 01:48:47 +02:00
|
|
|
|
private bool isPicked = false;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
private bool mouseMoving = false;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
private Point originMouse;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
private Point pickOriginMouse;
|
|
|
|
|
private Point pickMouse;
|
|
|
|
|
private Vector2 pickDistance;
|
|
|
|
|
private PickAction pickAction = PickAction.None;
|
|
|
|
|
private PickAxis pickAxis = PickAxis.All;
|
|
|
|
|
private bool snapToGrid = false;
|
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
private void glControl1_MouseDown(object sender, MouseEventArgs e)
|
2019-08-28 01:03:01 +02:00
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
if (GameWindow)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pickAction = PickAction.None;
|
|
|
|
|
pickAxis = PickAxis.All;
|
2019-09-04 00:58:58 +02:00
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
if (Control.ModifierKeys == Keys.Shift && e.Button == MouseButtons.Left ||
|
|
|
|
|
e.Button == MouseButtons.Middle)
|
|
|
|
|
{
|
|
|
|
|
originMouse = e.Location;
|
2019-10-14 03:02:39 +02:00
|
|
|
|
mouseCameraDown = true;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
2019-09-03 01:48:47 +02:00
|
|
|
|
//Pick an object for moving
|
2019-10-05 19:25:28 +02:00
|
|
|
|
else if (e.Button == MouseButtons.Left)
|
2019-09-03 01:48:47 +02:00
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
mouseDown = true;
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
RenderEditor();
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var coords = OpenGLHelper.convertScreenToWorldCoords(e.Location.X, e.Location.Y);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
GL.PopMatrix();
|
2019-09-03 01:48:47 +02:00
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
bool hasEdgeHit = false;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var rect = GetSelectedPanesBounding(SelectedPanes);
|
|
|
|
|
var edgePick = SearchEdgePicking(rect, coords.X, coords.Y);
|
|
|
|
|
if (edgePick != PickAction.None)
|
|
|
|
|
{
|
|
|
|
|
pickAction = edgePick;
|
|
|
|
|
isPicked = true;
|
|
|
|
|
hasEdgeHit = true;
|
|
|
|
|
}
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
if (hasEdgeHit)
|
|
|
|
|
{
|
|
|
|
|
UndoManger.AddToUndo(new LayoutUndoManager.UndoActionTransform(SelectedPanes));
|
|
|
|
|
pickOriginMouse = e.Location;
|
|
|
|
|
return;
|
2019-09-03 01:48:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
|
2019-09-04 00:58:58 +02:00
|
|
|
|
BasePane hitPane = null;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
SearchHit(LayoutFile.RootPane, coords.X, coords.Y, ref hitPane);
|
2019-09-03 01:48:47 +02:00
|
|
|
|
if (hitPane != null)
|
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
pickAction = PickAction.Translate;
|
|
|
|
|
|
|
|
|
|
if (!SelectedPanes.Contains(hitPane))
|
|
|
|
|
{
|
2019-10-15 23:48:52 +02:00
|
|
|
|
if (Control.ModifierKeys != Keys.Control)
|
|
|
|
|
SelectedPanes.Clear();
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
SelectedPanes.Add(hitPane);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
|
|
|
|
|
var paneRect = GetSelectedPanesBounding(SelectedPanes);
|
|
|
|
|
var paneEdgePick = SearchEdgePicking(paneRect, coords.X, coords.Y);
|
|
|
|
|
if (paneEdgePick != PickAction.None)
|
|
|
|
|
pickAction = paneEdgePick;
|
|
|
|
|
|
|
|
|
|
UndoManger.AddToUndo(new LayoutUndoManager.UndoActionTransform(SelectedPanes));
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
|
|
|
|
ParentEditor.UpdateUndo();
|
|
|
|
|
ParentEditor.UpdateHiearchyNodeSelection(hitPane);
|
|
|
|
|
|
|
|
|
|
isPicked = true;
|
2019-10-15 23:48:52 +02:00
|
|
|
|
} //Check control key (multi selecting panes)
|
|
|
|
|
else if (Control.ModifierKeys != Keys.Control)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
SelectedPanes.Clear();
|
2019-09-03 01:48:47 +02:00
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
pickOriginMouse = e.Location;
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
2019-10-06 00:37:28 +02:00
|
|
|
|
else if (e.Button == MouseButtons.Right)
|
|
|
|
|
{
|
|
|
|
|
RenderEditor();
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var coords = OpenGLHelper.convertScreenToWorldCoords(e.Location.X, e.Location.Y);
|
2019-10-06 03:15:19 +02:00
|
|
|
|
pickOriginMouse = coords;
|
2019-10-06 00:37:28 +02:00
|
|
|
|
|
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
|
|
|
|
|
//Add a content menu
|
|
|
|
|
var selectOverlapping = new STToolStripItem("Select Overlapping");
|
|
|
|
|
var createPanes = new STToolStripItem("Create Pane");
|
2019-10-06 03:15:19 +02:00
|
|
|
|
createPanes.DropDownItems.Add(new STToolStripItem("Null Pane", CreateNullPaneAction));
|
2019-10-14 03:02:39 +02:00
|
|
|
|
createPanes.DropDownItems.Add(new STToolStripItem("Picture Pane", CreatePicturePaneAction));
|
2019-11-07 03:01:29 +01:00
|
|
|
|
createPanes.DropDownItems.Add(new STToolStripItem("Part Pane", CreatePartPaneAction));
|
2019-10-14 03:02:39 +02:00
|
|
|
|
createPanes.DropDownItems.Add(new STToolStripItem("Text Box Pane", CreateTextPaneAction));
|
|
|
|
|
createPanes.DropDownItems.Add(new STToolStripItem("Window Pane", CreateWindowPaneAction));
|
|
|
|
|
createPanes.DropDownItems.Add(new STToolStripItem("Boundry Pane", CreateBoundryPaneAction));
|
2019-10-06 00:37:28 +02:00
|
|
|
|
var hitPanes = GetHitPanes(LayoutFile.RootPane, coords.X, coords.Y, new List<BasePane>());
|
|
|
|
|
for (int i = 0; i < hitPanes.Count; i++)
|
|
|
|
|
selectOverlapping.DropDownItems.Add(
|
|
|
|
|
new STToolStripItem(hitPanes[i].Name, SelectOverlappingAction));
|
|
|
|
|
|
|
|
|
|
stContextMenuStrip1.Items.Clear();
|
|
|
|
|
stContextMenuStrip1.Items.Add(createPanes);
|
|
|
|
|
stContextMenuStrip1.Items.Add(selectOverlapping);
|
2020-01-19 02:59:49 +01:00
|
|
|
|
stContextMenuStrip1.Items.Add(new STToolStripItem("Show All Hidden Panes", ShowAllPaneAction));
|
|
|
|
|
stContextMenuStrip1.Items.Add(new STToolStripItem("Paste (Experimental)", PastePaneAction) { Enabled = CopiedPanes.Count > 0 });
|
2019-10-06 00:37:28 +02:00
|
|
|
|
|
|
|
|
|
if (SelectedPanes.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
stContextMenuStrip1.Items.Add(new STToolStripSeparator());
|
2020-01-19 02:59:49 +01:00
|
|
|
|
stContextMenuStrip1.Items.Add(new STToolStripItem("Copy (Experimental)", CopyPaneAction));
|
2019-10-06 00:37:28 +02:00
|
|
|
|
stContextMenuStrip1.Items.Add(new STToolStripItem("Edit Group"));
|
2020-01-19 02:59:49 +01:00
|
|
|
|
stContextMenuStrip1.Items.Add(new STToolStripItem("Delete Selected Panes", DeletePaneAction));
|
2019-10-06 00:37:28 +02:00
|
|
|
|
stContextMenuStrip1.Items.Add(new STToolStripItem("Hide Selected Panes", HidePaneAction));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stContextMenuStrip1.Show(Cursor.Position);
|
|
|
|
|
}
|
2019-09-04 00:58:58 +02:00
|
|
|
|
|
|
|
|
|
Console.WriteLine("SelectedPanes " + SelectedPanes.Count);
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void CreatePartPaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-11-07 03:01:29 +01:00
|
|
|
|
var pane = ParentEditor.AddNewPartPane();
|
|
|
|
|
SetupNewPane(pane, pickOriginMouse);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void CreateNullPaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-06 03:15:19 +02:00
|
|
|
|
var pane = ParentEditor.AddNewNullPane();
|
2019-10-14 03:02:39 +02:00
|
|
|
|
SetupNewPane(pane, pickOriginMouse);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void CreatePicturePaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
var pane = ParentEditor.AddNewPicturePane();
|
|
|
|
|
SetupNewPane(pane, pickOriginMouse);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void CreateWindowPaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
var pane = ParentEditor.AddNewWindowPane();
|
|
|
|
|
SetupNewPane(pane, pickOriginMouse);
|
2019-10-06 03:15:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void CreateTextPaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
var pane = ParentEditor.AddNewTextPane();
|
|
|
|
|
SetupNewPane(pane, pickOriginMouse);
|
2020-02-12 01:19:23 +01:00
|
|
|
|
if (pane is Cafe.TXT1)
|
|
|
|
|
((Cafe.TXT1)pane).UpdateTextRender();
|
2019-10-14 03:02:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void CreateBoundryPaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
var pane = ParentEditor.AddNewBoundryPane();
|
|
|
|
|
SetupNewPane(pane, pickOriginMouse);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void CopyPaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-17 02:15:36 +02:00
|
|
|
|
CopyPanes();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void PastePaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-17 02:15:36 +02:00
|
|
|
|
PastePanes();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CopyPanes()
|
|
|
|
|
{
|
|
|
|
|
CopiedPanes.Clear();
|
2020-01-19 02:59:49 +01:00
|
|
|
|
foreach (var pane in SelectedPanes) {
|
|
|
|
|
BasePane copiedPane = (BasePane)pane.Clone();
|
2019-10-17 02:15:36 +02:00
|
|
|
|
CopiedPanes.Add(copiedPane);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void PastePanes()
|
|
|
|
|
{
|
|
|
|
|
SelectedPanes.Clear();
|
2020-01-19 02:59:49 +01:00
|
|
|
|
foreach (var copiedPane in CopiedPanes)
|
2019-10-17 02:15:36 +02:00
|
|
|
|
{
|
2020-01-19 02:59:49 +01:00
|
|
|
|
//Copy again as the user may paste the same one multiple times
|
|
|
|
|
//This will make sure it's a completely new instance
|
|
|
|
|
BasePane pane = (BasePane)copiedPane.Clone();
|
2019-10-17 02:15:36 +02:00
|
|
|
|
ParentEditor.AddNewPastedPane(pane);
|
|
|
|
|
SelectedPanes.Add(pane);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
private void SetupNewPane(BasePane pane, Point point)
|
2019-10-06 03:15:19 +02:00
|
|
|
|
{
|
|
|
|
|
if (pane == null) return;
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
SelectedPanes.Clear();
|
|
|
|
|
pane.Translate = new Syroot.Maths.Vector3F(point.X, point.Y, 0);
|
|
|
|
|
ParentEditor.LoadPaneEditorOnSelect(pane);
|
2019-10-06 03:15:19 +02:00
|
|
|
|
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void DeletePaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-06 00:37:28 +02:00
|
|
|
|
DeleteSelectedPanes();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void HidePaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-06 00:37:28 +02:00
|
|
|
|
HideSelectedPanes();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void ShowAllPaneAction(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-06 00:37:28 +02:00
|
|
|
|
ShowHiddenPanes();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void HideSelectedPanes()
|
|
|
|
|
{
|
|
|
|
|
UndoManger.AddToUndo(new LayoutUndoManager.UndoActionPaneHide(SelectedPanes));
|
|
|
|
|
ParentEditor?.UpdateHiearchyTree();
|
2019-10-27 02:28:56 +02:00
|
|
|
|
SelectedPanes.Clear();
|
2019-10-06 00:37:28 +02:00
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ShowHiddenPanes()
|
|
|
|
|
{
|
|
|
|
|
UndoManger.AddToUndo(new LayoutUndoManager.UndoActionPaneHide(LayoutFile.PaneLookup.Values.ToList(), false));
|
|
|
|
|
ParentEditor?.UpdateHiearchyTree();
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DeleteSelectedPanes()
|
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (SelectedPanes.Count == 0) return;
|
|
|
|
|
//Make sure to fill all the children in selected panes!
|
|
|
|
|
for (int i = 0; i < SelectedPanes.Count; i++)
|
|
|
|
|
SelectedPanes.AddRange(GetChildren(SelectedPanes, new List<BasePane>(), SelectedPanes[i]));
|
|
|
|
|
|
2019-10-06 00:37:28 +02:00
|
|
|
|
UndoManger.AddToUndo(new LayoutUndoManager.UndoActionPaneDelete(SelectedPanes, LayoutFile));
|
2019-10-14 03:02:39 +02:00
|
|
|
|
LayoutFile.RemovePanes(SelectedPanes, LayoutFile.RootPane);
|
2019-10-06 03:15:19 +02:00
|
|
|
|
SelectedPanes.Clear();
|
2019-10-06 00:37:28 +02:00
|
|
|
|
ParentEditor?.UpdateHiearchyTree();
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
private List<BasePane> GetChildren(List<BasePane> selectedPanes, List<BasePane> childrenPanes, BasePane parent)
|
|
|
|
|
{
|
|
|
|
|
if (!selectedPanes.Contains(parent))
|
|
|
|
|
childrenPanes.Add(parent);
|
|
|
|
|
|
|
|
|
|
foreach (var child in parent.Childern)
|
|
|
|
|
GetChildren(selectedPanes, childrenPanes, child);
|
|
|
|
|
return childrenPanes;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-06 00:37:28 +02:00
|
|
|
|
private void SelectOverlappingAction(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var toolMenu = sender as STToolStripItem;
|
|
|
|
|
if (toolMenu != null)
|
|
|
|
|
{
|
|
|
|
|
string name = toolMenu.Text;
|
2019-10-06 03:15:19 +02:00
|
|
|
|
if (Control.ModifierKeys != Keys.Control)
|
|
|
|
|
SelectedPanes.Clear();
|
2019-10-06 00:37:28 +02:00
|
|
|
|
|
|
|
|
|
if (LayoutFile.PaneLookup.ContainsKey(name))
|
|
|
|
|
SelectedPanes.Add(LayoutFile.PaneLookup[name]);
|
|
|
|
|
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-04 00:58:58 +02:00
|
|
|
|
private void SearchHit(BasePane pane, int X, int Y, ref BasePane SelectedPane)
|
2019-09-03 01:48:47 +02:00
|
|
|
|
{
|
2019-10-09 23:39:54 +02:00
|
|
|
|
bool isVisible = true;
|
2019-10-05 20:05:37 +02:00
|
|
|
|
if (!Runtime.LayoutEditor.DisplayPicturePane && pane is IPicturePane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayWindowPane && pane is IWindowPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayBoundryPane && pane is IBoundryPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayTextPane && pane is ITextPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayNullPane && pane.IsNullPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
|
2019-10-06 03:15:19 +02:00
|
|
|
|
if (isVisible && pane.DisplayInEditor && pane.IsHit(X, Y) && !pane.IsRoot)
|
|
|
|
|
{
|
2019-10-09 23:39:54 +02:00
|
|
|
|
//Select the first possible pane
|
|
|
|
|
//If the pane is selected already, pick that instead
|
|
|
|
|
//This is useful if the selected pane wants to be moved already
|
|
|
|
|
if (SelectedPane == null || SelectedPanes.Contains(pane))
|
|
|
|
|
SelectedPane = pane;
|
2019-10-06 03:15:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-09 23:39:54 +02:00
|
|
|
|
//Keep searching even if we found our pane so we can find any that's selected
|
2019-09-03 01:48:47 +02:00
|
|
|
|
foreach (var childPane in pane.Childern)
|
2019-09-17 01:56:41 +02:00
|
|
|
|
SearchHit(childPane, X, Y, ref SelectedPane);
|
2019-09-03 01:48:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
private List<BasePane> GetHitPanes(BasePane pane, CustomRectangle rect, List<BasePane> SelectedPanes)
|
|
|
|
|
{
|
|
|
|
|
bool isVisible = pane.Visible;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayPicturePane && pane is IPicturePane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayWindowPane && pane is IWindowPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayBoundryPane && pane is IBoundryPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayTextPane && pane is ITextPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayNullPane && pane.IsNullPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
|
|
|
|
|
if (isVisible && pane.DisplayInEditor && pane.IsHit(rect) && pane.Name != "RootPane")
|
|
|
|
|
if (!SelectedPanes.Contains(pane))
|
|
|
|
|
SelectedPanes.Add(pane);
|
|
|
|
|
|
|
|
|
|
foreach (var childPane in pane.Childern)
|
|
|
|
|
GetHitPanes(childPane, rect, SelectedPanes);
|
|
|
|
|
|
|
|
|
|
return SelectedPanes;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-06 00:37:28 +02:00
|
|
|
|
private List<BasePane> GetHitPanes(BasePane pane, int X, int Y, List<BasePane> SelectedPanes)
|
|
|
|
|
{
|
|
|
|
|
bool isVisible = pane.Visible;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayPicturePane && pane is IPicturePane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayWindowPane && pane is IWindowPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayBoundryPane && pane is IBoundryPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayTextPane && pane is ITextPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
if (!Runtime.LayoutEditor.DisplayNullPane && pane.IsNullPane)
|
|
|
|
|
isVisible = false;
|
|
|
|
|
|
|
|
|
|
if (isVisible && pane.DisplayInEditor && pane.IsHit(X, Y) && pane.Name != "RootPane")
|
2019-10-06 03:15:19 +02:00
|
|
|
|
if (!SelectedPanes.Contains(pane))
|
|
|
|
|
SelectedPanes.Add(pane);
|
2019-10-06 00:37:28 +02:00
|
|
|
|
|
|
|
|
|
foreach (var childPane in pane.Childern)
|
2020-01-19 02:59:49 +01:00
|
|
|
|
GetHitPanes(childPane, X, Y, SelectedPanes);
|
2019-10-06 00:37:28 +02:00
|
|
|
|
|
|
|
|
|
return SelectedPanes;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 23:48:52 +02:00
|
|
|
|
private PickAction SearchEdgePicking(CustomRectangle transformed, int X, int Y)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
|
|
|
|
var leftTop = new Point(transformed.LeftPoint, transformed.TopPoint);
|
|
|
|
|
var left = new Point(transformed.LeftPoint, (transformed.BottomPoint + transformed.TopPoint) / 2);
|
|
|
|
|
var leftBottom = new Point(transformed.LeftPoint, transformed.BottomPoint);
|
|
|
|
|
var rightTop = new Point(transformed.RightPoint, transformed.TopPoint);
|
|
|
|
|
var right = new Point(transformed.RightPoint, (transformed.BottomPoint + transformed.TopPoint) / 2);
|
|
|
|
|
var rightBottom = new Point(transformed.RightPoint, transformed.BottomPoint);
|
|
|
|
|
var top = new Point((transformed.RightPoint + transformed.LeftPoint) / 2, transformed.TopPoint);
|
|
|
|
|
var bottom = new Point((transformed.RightPoint + transformed.LeftPoint) / 2, transformed.BottomPoint);
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
if (IsEdgeHit(leftTop, X, Y)) return PickAction.DragTopLeft;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
else if (IsEdgeHit(left, X, Y)) return PickAction.DragLeft;
|
|
|
|
|
else if (IsEdgeHit(leftBottom, X, Y)) return PickAction.DragBottomLeft;
|
|
|
|
|
else if (IsEdgeHit(rightTop, X, Y)) return PickAction.DragTopRight;
|
|
|
|
|
else if (IsEdgeHit(rightBottom, X, Y)) return PickAction.DragBottomRight;
|
|
|
|
|
else if (IsEdgeHit(right, X, Y)) return PickAction.DragRight;
|
|
|
|
|
else if (IsEdgeHit(top, X, Y)) return PickAction.DragTop;
|
|
|
|
|
else if (IsEdgeHit(bottom, X, Y)) return PickAction.DragBottom;
|
|
|
|
|
|
|
|
|
|
return PickAction.None;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool IsEdgeHit(Point point, int X, int Y, int size = 10)
|
|
|
|
|
{
|
|
|
|
|
if ((X > point.X - size) && (X < point.X + size) &&
|
|
|
|
|
(Y > point.Y - size) && (Y < point.Y + size))
|
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
private void glControl1_MouseUp(object sender, MouseEventArgs e)
|
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
if (e.Button == MouseButtons.Left || e.Button == MouseButtons.Middle)
|
2019-08-29 21:45:32 +02:00
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
pickAxis = PickAxis.All;
|
2019-10-14 03:02:39 +02:00
|
|
|
|
mouseCameraDown = false;
|
|
|
|
|
mouseDown = false;
|
2019-09-03 01:48:47 +02:00
|
|
|
|
isPicked = false;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
mouseMoving = false;
|
2019-10-14 03:02:39 +02:00
|
|
|
|
showSelectionBox = false;
|
|
|
|
|
|
|
|
|
|
foreach (var pane in SelectionBoxPanes)
|
|
|
|
|
if (!SelectedPanes.Contains(pane))
|
|
|
|
|
SelectedPanes.Add(pane);
|
|
|
|
|
|
|
|
|
|
SelectionBoxPanes.Clear();
|
|
|
|
|
|
|
|
|
|
ParentEditor.RefreshEditors();
|
2020-01-19 02:59:49 +01:00
|
|
|
|
|
|
|
|
|
if (SelectedPanes.Count > 0)
|
|
|
|
|
ParentEditor.UpdateHiearchyNodeSelection(SelectedPanes.FirstOrDefault());
|
2019-08-29 21:45:32 +02:00
|
|
|
|
}
|
2019-10-18 23:08:44 +02:00
|
|
|
|
|
|
|
|
|
glControl1.Invalidate();
|
2019-08-28 01:03:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
public enum PickAction
|
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
DragTopRight,
|
|
|
|
|
DragTopLeft,
|
|
|
|
|
DragTop,
|
|
|
|
|
DragLeft,
|
|
|
|
|
DragRight,
|
|
|
|
|
DragBottom,
|
|
|
|
|
DragBottomLeft,
|
|
|
|
|
DragBottomRight,
|
|
|
|
|
Translate,
|
|
|
|
|
Scale,
|
|
|
|
|
Rotate
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum PickAxis
|
|
|
|
|
{
|
|
|
|
|
All,
|
|
|
|
|
X,
|
|
|
|
|
Y,
|
|
|
|
|
Z,
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 01:03:01 +02:00
|
|
|
|
private void glControl1_MouseMove(object sender, MouseEventArgs e)
|
|
|
|
|
{
|
2019-10-05 19:25:28 +02:00
|
|
|
|
if (GameWindow)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (UseOrtho)
|
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (SelectedPanes.Count > 0 && !showSelectionBox)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
|
|
|
|
RenderEditor();
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var posWorld = OpenGLHelper.convertScreenToWorldCoords(e.Location.X, e.Location.Y);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
|
|
|
|
|
//Setup edge picking with move event
|
2019-10-14 03:02:39 +02:00
|
|
|
|
bool hasPick = false;
|
2019-10-15 23:48:52 +02:00
|
|
|
|
|
|
|
|
|
var paneRect = GetSelectedPanesBounding(SelectedPanes);
|
|
|
|
|
var pickState = SearchEdgePicking(paneRect, posWorld.X, posWorld.Y);
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
if (pickState != PickAction.None)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
2019-10-15 23:48:52 +02:00
|
|
|
|
if (pickState == PickAction.DragTop)
|
|
|
|
|
Cursor.Current = Cursors.SizeNS;
|
|
|
|
|
if (pickState == PickAction.DragBottom)
|
|
|
|
|
Cursor.Current = Cursors.SizeNS;
|
|
|
|
|
if (pickState == PickAction.DragLeft)
|
|
|
|
|
Cursor.Current = Cursors.SizeWE;
|
|
|
|
|
if (pickState == PickAction.DragRight)
|
|
|
|
|
Cursor.Current = Cursors.SizeWE;
|
|
|
|
|
if (pickState == PickAction.DragBottomLeft)
|
|
|
|
|
Cursor.Current = Cursors.SizeNESW;
|
|
|
|
|
if (pickState == PickAction.DragBottomRight)
|
|
|
|
|
Cursor.Current = Cursors.SizeNWSE;
|
|
|
|
|
if (pickState == PickAction.DragTopLeft)
|
|
|
|
|
Cursor.Current = Cursors.SizeNWSE;
|
|
|
|
|
if (pickState == PickAction.DragTopRight)
|
|
|
|
|
Cursor.Current = Cursors.SizeNESW;
|
|
|
|
|
|
|
|
|
|
hasPick = true;
|
|
|
|
|
}
|
|
|
|
|
else if (isPicked && pickAction != PickAction.None)
|
|
|
|
|
{
|
|
|
|
|
if (pickAction == PickAction.Translate)
|
|
|
|
|
Cursor.Current = Cursors.SizeAll;
|
|
|
|
|
if (pickAction == PickAction.Rotate)
|
|
|
|
|
Cursor.Current = Cursors.SizeAll;
|
|
|
|
|
if (pickAction == PickAction.Scale)
|
|
|
|
|
Cursor.Current = Cursors.SizeAll;
|
|
|
|
|
|
|
|
|
|
hasPick = true;
|
2019-10-05 19:25:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (!hasPick)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
Cursor.Current = Cursors.Default;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (isPicked && !showSelectionBox)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
|
|
|
|
RenderEditor();
|
|
|
|
|
var temp = e.Location;
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var curPos = OpenGLHelper.convertScreenToWorldCoords(temp.X, temp.Y);
|
|
|
|
|
var prevPos = OpenGLHelper.convertScreenToWorldCoords(pickOriginMouse.X, pickOriginMouse.Y);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
var pickMouse = new Point((int)(prevPos.X - curPos.X), (int)(prevPos.Y - curPos.Y));
|
|
|
|
|
|
|
|
|
|
if (pickAction == PickAction.Translate)
|
|
|
|
|
{
|
|
|
|
|
foreach (var pane in SelectedPanes)
|
|
|
|
|
{
|
|
|
|
|
if (pickOriginMouse != Point.Empty)
|
|
|
|
|
{
|
|
|
|
|
float posX = pane.Translate.X;
|
|
|
|
|
float posY = pane.Translate.Y;
|
|
|
|
|
float posZ = pane.Translate.Z;
|
|
|
|
|
|
|
|
|
|
if (pickAxis == PickAxis.X)
|
|
|
|
|
posX = pane.Translate.X - pickMouse.X;
|
|
|
|
|
if (pickAxis == PickAxis.Y)
|
|
|
|
|
posY = pane.Translate.Y - pickMouse.Y;
|
|
|
|
|
if (pickAxis == PickAxis.All)
|
|
|
|
|
{
|
|
|
|
|
posX = pane.Translate.X - pickMouse.X;
|
|
|
|
|
posY = pane.Translate.Y - pickMouse.Y;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-20 21:26:25 +02:00
|
|
|
|
if (Runtime.LayoutEditor.AnimationEditMode)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-10-20 21:26:25 +02:00
|
|
|
|
if (!Runtime.LayoutEditor.TransformChidlren)
|
|
|
|
|
pane.KeepChildrenTransform(posX, posY);
|
|
|
|
|
|
|
|
|
|
if (snapToGrid)
|
|
|
|
|
{
|
|
|
|
|
int gridCubeWidth = 16, gridCubeHeight = 16;
|
|
|
|
|
|
|
|
|
|
pane.Translate = new Syroot.Maths.Vector3F(
|
|
|
|
|
(float)(Math.Round(posX / gridCubeWidth) * gridCubeWidth),
|
|
|
|
|
(float)(Math.Round(posY / gridCubeHeight) * gridCubeHeight),
|
|
|
|
|
posZ);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pane.Translate = new Syroot.Maths.Vector3F(posX, posY, posZ);
|
|
|
|
|
}
|
2019-10-05 19:25:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-27 02:28:56 +02:00
|
|
|
|
if (pickAction == PickAction.Scale)
|
|
|
|
|
{
|
|
|
|
|
foreach (var pane in SelectedPanes)
|
|
|
|
|
{
|
|
|
|
|
if (pickOriginMouse != Point.Empty)
|
|
|
|
|
{
|
|
|
|
|
float scaX = pane.Scale.X;
|
|
|
|
|
float scaY = pane.Scale.Y;
|
|
|
|
|
|
|
|
|
|
if (pickAxis == PickAxis.X)
|
|
|
|
|
scaX = pane.Scale.X - pickMouse.X;
|
|
|
|
|
if (pickAxis == PickAxis.Y)
|
|
|
|
|
scaY = pane.Scale.Y - pickMouse.Y;
|
|
|
|
|
if (pickAxis == PickAxis.All)
|
|
|
|
|
{
|
|
|
|
|
scaX = pane.Scale.X - pickMouse.X;
|
|
|
|
|
scaY = pane.Scale.Y - pickMouse.Y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Runtime.LayoutEditor.AnimationEditMode)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (snapToGrid)
|
|
|
|
|
{
|
|
|
|
|
int gridCubeWidth = 16, gridCubeHeight = 16;
|
|
|
|
|
|
|
|
|
|
pane.Scale = new Syroot.Maths.Vector2F(
|
|
|
|
|
(float)(Math.Round(scaX / gridCubeWidth) * gridCubeWidth),
|
|
|
|
|
(float)(Math.Round(scaY / gridCubeHeight) * gridCubeHeight));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pane.Scale = new Syroot.Maths.Vector2F(scaX, scaY);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-14 03:02:39 +02:00
|
|
|
|
else if (!showSelectionBox)
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var selectionBox = GetSelectedPanesBounding(SelectedPanes);
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
//Setup edge picking with move event
|
|
|
|
|
foreach (var pane in SelectedPanes)
|
2019-10-15 23:48:52 +02:00
|
|
|
|
pane.TransformRectangle(pickAction, selectionBox, pickMouse.X, pickMouse.Y);
|
2019-10-05 19:25:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pickOriginMouse = temp;
|
|
|
|
|
|
|
|
|
|
RenderScene();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (mouseDown && !isPicked)
|
|
|
|
|
{
|
|
|
|
|
RenderEditor();
|
|
|
|
|
var temp = e.Location;
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var curPos = OpenGLHelper.convertScreenToWorldCoords(temp.X, temp.Y);
|
|
|
|
|
var prevPos = OpenGLHelper.convertScreenToWorldCoords(pickOriginMouse.X, pickOriginMouse.Y);
|
2019-10-14 03:02:39 +02:00
|
|
|
|
DrawSelectionBox(prevPos, curPos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mouseCameraDown)
|
2019-08-29 21:45:32 +02:00
|
|
|
|
{
|
|
|
|
|
var pos = new Vector2(e.Location.X - originMouse.X, e.Location.Y - originMouse.Y);
|
|
|
|
|
Camera.Position.X += pos.X;
|
|
|
|
|
Camera.Position.Y -= pos.Y;
|
|
|
|
|
|
|
|
|
|
originMouse = e.Location;
|
|
|
|
|
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-28 01:03:01 +02:00
|
|
|
|
|
2019-10-14 03:02:39 +02:00
|
|
|
|
private CustomRectangle SelectionBox;
|
|
|
|
|
|
|
|
|
|
private void DrawSelectionBox(Point point1, Point point2)
|
|
|
|
|
{
|
|
|
|
|
SelectionBoxPanes.Clear();
|
|
|
|
|
|
|
|
|
|
int left = point1.X;
|
|
|
|
|
int right = point2.X;
|
|
|
|
|
int top = point1.Y;
|
|
|
|
|
int bottom = point2.Y;
|
|
|
|
|
//Determine each point direction to see what is left/right/top/bottom
|
|
|
|
|
if (bottom > top)
|
|
|
|
|
{
|
|
|
|
|
top = point2.Y;
|
|
|
|
|
bottom = point1.Y;
|
|
|
|
|
}
|
|
|
|
|
if (left > right)
|
|
|
|
|
{
|
|
|
|
|
right = point1.X;
|
|
|
|
|
left = point2.X;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
showSelectionBox = true;
|
|
|
|
|
SelectionBox = new CustomRectangle(left, right, top, bottom);
|
|
|
|
|
var hitPanes = GetHitPanes(LayoutFile.RootPane, SelectionBox, new List<BasePane>());
|
|
|
|
|
foreach (var pane in hitPanes)
|
|
|
|
|
if (!SelectionBoxPanes.Contains(pane))
|
|
|
|
|
SelectionBoxPanes.Add(pane);
|
|
|
|
|
|
|
|
|
|
RenderScene(true);
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 21:45:32 +02:00
|
|
|
|
protected override void OnMouseWheel(MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseWheel(e);
|
2019-09-07 01:12:39 +02:00
|
|
|
|
if (UseOrtho)
|
|
|
|
|
{
|
|
|
|
|
if (e.Delta > 0 && Camera.Zoom > 0)
|
|
|
|
|
Camera.Zoom += 0.1f;
|
|
|
|
|
if (e.Delta < 0 && Camera.Zoom < 100 && Camera.Zoom > 0.1)
|
|
|
|
|
Camera.Zoom -= 0.1f;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (e.Delta > 0 && Camera.Zoom > 0.1)
|
|
|
|
|
Camera.Zoom -= 0.1f;
|
|
|
|
|
if (e.Delta < 0 && Camera.Zoom < 100 && Camera.Zoom > 0)
|
|
|
|
|
Camera.Zoom += 0.1f;
|
|
|
|
|
}
|
2019-08-29 21:45:32 +02:00
|
|
|
|
|
|
|
|
|
glControl1.Invalidate();
|
2019-08-28 01:03:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void glControl1_Resize(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
2019-10-05 19:25:28 +02:00
|
|
|
|
|
|
|
|
|
private void glControl1_KeyDown(object sender, KeyEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (isPicked && e.KeyCode == Keys.X)
|
|
|
|
|
{
|
|
|
|
|
pickAxis = PickAxis.X;
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
if (isPicked && e.KeyCode == Keys.Y)
|
|
|
|
|
{
|
|
|
|
|
pickAxis = PickAxis.Y;
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
else if (e.Control && e.KeyCode == Keys.Z) // Ctrl + Z undo
|
|
|
|
|
{
|
|
|
|
|
UndoManger.Undo();
|
|
|
|
|
ParentEditor.UpdateUndo();
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
2020-02-17 02:15:02 +01:00
|
|
|
|
else if (e.Control && e.KeyCode == Keys.R) // Ctrl + R redo
|
2019-10-05 19:25:28 +02:00
|
|
|
|
{
|
|
|
|
|
UndoManger.Redo();
|
|
|
|
|
ParentEditor.UpdateUndo();
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
2019-10-17 02:15:36 +02:00
|
|
|
|
else if (e.Control && e.KeyCode == Keys.C) // Ctrl + C copy
|
|
|
|
|
{
|
|
|
|
|
CopyPanes();
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
else if (e.Control && e.KeyCode == Keys.V) // Ctrl + V paste
|
|
|
|
|
{
|
|
|
|
|
PastePanes();
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
2019-10-19 03:23:44 +02:00
|
|
|
|
else if (e.Control && e.KeyCode == Keys.A) // Ctrl + A select all
|
|
|
|
|
{
|
|
|
|
|
SelectedPanes.Clear();
|
|
|
|
|
foreach (var pane in LayoutFile.PaneLookup.Values)
|
|
|
|
|
if (!pane.IsRoot)
|
|
|
|
|
SelectedPanes.Add(pane);
|
|
|
|
|
|
|
|
|
|
glControl1.Invalidate();
|
|
|
|
|
}
|
2019-10-06 00:37:28 +02:00
|
|
|
|
else if (e.KeyCode == Keys.Delete)
|
|
|
|
|
{
|
|
|
|
|
DeleteSelectedPanes();
|
|
|
|
|
}
|
2019-10-05 19:25:28 +02:00
|
|
|
|
}
|
2019-10-14 03:02:39 +02:00
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void glControl1_DragEnter(object sender, DragEventArgs e)
|
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (e.Data.GetDataPresent(typeof(ListViewItem)))
|
|
|
|
|
{
|
|
|
|
|
e.Effect = DragDropEffects.Move;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 02:59:49 +01:00
|
|
|
|
private void glControl1_DragDrop(object sender, DragEventArgs e)
|
|
|
|
|
{
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (e.Data.GetDataPresent(typeof(ListViewItem)))
|
|
|
|
|
{
|
|
|
|
|
var item = e.Data.GetData(typeof(ListViewItem)) as ListViewItem;
|
|
|
|
|
string texture = item.Text;
|
2020-02-16 02:57:21 +01:00
|
|
|
|
|
|
|
|
|
ParentEditor.DeselectTextureList();
|
2019-10-14 03:02:39 +02:00
|
|
|
|
if (Textures.ContainsKey(texture))
|
|
|
|
|
{
|
|
|
|
|
var point = this.PointToClient(new Point(e.X, e.Y));
|
|
|
|
|
|
|
|
|
|
RenderEditor();
|
2019-10-15 23:48:52 +02:00
|
|
|
|
var coords = OpenGLHelper.convertScreenToWorldCoords(point.X, point.Y);
|
2019-10-14 03:02:39 +02:00
|
|
|
|
GL.PopMatrix();
|
|
|
|
|
|
|
|
|
|
var pane = ParentEditor.AddNewPicturePane();
|
|
|
|
|
pane.Width = Textures[texture].Width;
|
|
|
|
|
pane.Height = Textures[texture].Height;
|
|
|
|
|
((IPicturePane)pane).Material.AddTexture(texture);
|
|
|
|
|
SetupNewPane(pane, coords);
|
2020-02-17 02:15:02 +01:00
|
|
|
|
|
|
|
|
|
this.Focus();
|
2019-10-14 03:02:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-27 22:38:06 +02:00
|
|
|
|
}
|
|
|
|
|
}
|