mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 01:55:25 -04:00
fa99435ff7
Minor tweaks. git-svn-id: svn://localhost@761 8062f311-0dae-4547-b526-b8ab9ac864a5
1046 lines
46 KiB
C++
1046 lines
46 KiB
C++
/**
|
|
|
|
Game Develop - Path Automatism Extension
|
|
Copyright (c) 2010-2011 Florian Rival (Florian.Rival@gmail.com)
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
warranty. In no event will the authors be held liable for any damages
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
including commercial applications, and to alter it and redistribute it
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
claim that you wrote the original software. If you use this software
|
|
in a product, an acknowledgment in the product documentation would be
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
distribution.
|
|
|
|
*/
|
|
|
|
#if defined(GD_IDE_ONLY)
|
|
#include "PathAutomatismEditor.h"
|
|
|
|
//(*InternalHeaders(PathAutomatismEditor)
|
|
#include <wx/bitmap.h>
|
|
#include <wx/font.h>
|
|
#include <wx/intl.h>
|
|
#include <wx/image.h>
|
|
#include <wx/string.h>
|
|
//*)
|
|
#include <string>
|
|
#include <cmath>
|
|
#include <limits>
|
|
#include <algorithm>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <wx/log.h>
|
|
#include <wx/dcbuffer.h>
|
|
#include <wx/msgdlg.h>
|
|
#include <wx/textdlg.h>
|
|
#include <wx/numdlg.h>
|
|
#include <wx/filedlg.h>
|
|
#include "GDCore/IDE/CommonBitmapManager.h"
|
|
#include "GDL/CommonTools.h"
|
|
#include "GDL/Game.h"
|
|
#include "GDL/IDE/MainEditorCommand.h"
|
|
#include "GDL/CommonTools.h"
|
|
#include "GDL/Scene.h"
|
|
#include "ScenePathDatas.h"
|
|
#include "PathAutomatism.h"
|
|
|
|
//(*IdInit(PathAutomatismEditor)
|
|
const long PathAutomatismEditor::ID_STATICTEXT6 = wxNewId();
|
|
const long PathAutomatismEditor::ID_CHOICE1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BITMAPBUTTON3 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BITMAPBUTTON4 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BITMAPBUTTON5 = wxNewId();
|
|
const long PathAutomatismEditor::ID_CHECKBOX4 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BITMAPBUTTON1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BITMAPBUTTON6 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BITMAPBUTTON2 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT9 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_PANEL1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_TOGGLEBUTTON1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT11 = wxNewId();
|
|
const long PathAutomatismEditor::ID_SPINCTRL1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT12 = wxNewId();
|
|
const long PathAutomatismEditor::ID_SPINCTRL2 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT7 = wxNewId();
|
|
const long PathAutomatismEditor::ID_TEXTCTRL3 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT8 = wxNewId();
|
|
const long PathAutomatismEditor::ID_TEXTCTRL4 = wxNewId();
|
|
const long PathAutomatismEditor::ID_CHECKBOX3 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT4 = wxNewId();
|
|
const long PathAutomatismEditor::ID_TEXTCTRL2 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT5 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT2 = wxNewId();
|
|
const long PathAutomatismEditor::ID_TEXTCTRL1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT3 = wxNewId();
|
|
const long PathAutomatismEditor::ID_CHECKBOX1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_CHECKBOX2 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICTEXT10 = wxNewId();
|
|
const long PathAutomatismEditor::ID_STATICLINE1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BUTTON1 = wxNewId();
|
|
const long PathAutomatismEditor::ID_BUTTON2 = wxNewId();
|
|
//*)
|
|
const long PathAutomatismEditor::coordsBtID = wxNewId();
|
|
const long PathAutomatismEditor::positionBtID = wxNewId();
|
|
const long PathAutomatismEditor::addPointAfterBtID = wxNewId();
|
|
const long PathAutomatismEditor::removePointBtID = wxNewId();
|
|
const long PathAutomatismEditor::addAfterBtID = wxNewId();
|
|
const long PathAutomatismEditor::addBeforeBtID = wxNewId();
|
|
|
|
BEGIN_EVENT_TABLE(PathAutomatismEditor,wxDialog)
|
|
//(*EventTable(PathAutomatismEditor)
|
|
//*)
|
|
END_EVENT_TABLE()
|
|
|
|
PathAutomatismEditor::PathAutomatismEditor(wxWindow* parent, Game & game_, Scene * scene_, PathAutomatism & automatism_, MainEditorCommand & mainEditorCommand_ ) :
|
|
automatism(automatism_),
|
|
game(game_),
|
|
scene(scene_),
|
|
mainEditorCommand(mainEditorCommand_),
|
|
haveDeletedAGlobalPath(false)
|
|
{
|
|
//(*Initialize(PathAutomatismEditor)
|
|
wxStaticBoxSizer* StaticBoxSizer2;
|
|
wxFlexGridSizer* FlexGridSizer4;
|
|
wxFlexGridSizer* FlexGridSizer16;
|
|
wxStaticBoxSizer* StaticBoxSizer4;
|
|
wxFlexGridSizer* FlexGridSizer10;
|
|
wxFlexGridSizer* FlexGridSizer3;
|
|
wxFlexGridSizer* FlexGridSizer5;
|
|
wxFlexGridSizer* FlexGridSizer9;
|
|
wxFlexGridSizer* FlexGridSizer2;
|
|
wxBoxSizer* BoxSizer2;
|
|
wxFlexGridSizer* FlexGridSizer7;
|
|
wxStaticBoxSizer* StaticBoxSizer3;
|
|
wxFlexGridSizer* FlexGridSizer15;
|
|
wxFlexGridSizer* FlexGridSizer8;
|
|
wxFlexGridSizer* FlexGridSizer14;
|
|
wxBoxSizer* BoxSizer1;
|
|
wxFlexGridSizer* FlexGridSizer13;
|
|
wxFlexGridSizer* FlexGridSizer12;
|
|
wxFlexGridSizer* FlexGridSizer6;
|
|
wxStaticBoxSizer* StaticBoxSizer1;
|
|
wxFlexGridSizer* FlexGridSizer1;
|
|
wxFlexGridSizer* FlexGridSizer11;
|
|
|
|
Create(parent, wxID_ANY, _("Editer l\'automatisme"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxMAXIMIZE_BOX, _T("wxID_ANY"));
|
|
FlexGridSizer1 = new wxFlexGridSizer(0, 1, 0, 0);
|
|
FlexGridSizer1->AddGrowableCol(0);
|
|
FlexGridSizer1->AddGrowableRow(0);
|
|
FlexGridSizer10 = new wxFlexGridSizer(1, 2, 0, 0);
|
|
FlexGridSizer10->AddGrowableCol(0);
|
|
FlexGridSizer10->AddGrowableRow(0);
|
|
FlexGridSizer12 = new wxFlexGridSizer(0, 1, 0, 0);
|
|
FlexGridSizer12->AddGrowableCol(0);
|
|
FlexGridSizer12->AddGrowableRow(1);
|
|
FlexGridSizer13 = new wxFlexGridSizer(0, 6, 0, 0);
|
|
StaticText5 = new wxStaticText(this, ID_STATICTEXT6, _("Chemins :"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT6"));
|
|
FlexGridSizer13->Add(StaticText5, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
pathChoice = new wxChoice(this, ID_CHOICE1, wxDefaultPosition, wxSize(136,-1), 0, 0, 0, wxDefaultValidator, _T("ID_CHOICE1"));
|
|
pathChoice->SetSelection( pathChoice->Append(_("Object main path")) );
|
|
FlexGridSizer13->Add(pathChoice, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
BitmapButton3 = new wxBitmapButton(this, ID_BITMAPBUTTON3, wxBitmap(wxImage(_T("res/addicon.png"))), wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, _T("ID_BITMAPBUTTON3"));
|
|
BitmapButton3->SetDefault();
|
|
BitmapButton3->SetToolTip(_("Créer un chemin"));
|
|
FlexGridSizer13->Add(BitmapButton3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
BitmapButton4 = new wxBitmapButton(this, ID_BITMAPBUTTON4, wxBitmap(wxImage(_T("res/deleteicon.png"))), wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, _T("ID_BITMAPBUTTON4"));
|
|
BitmapButton4->SetDefault();
|
|
BitmapButton4->SetToolTip(_("Supprime ce chemin"));
|
|
FlexGridSizer13->Add(BitmapButton4, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, -2);
|
|
BitmapButton5 = new wxBitmapButton(this, ID_BITMAPBUTTON5, wxBitmap(wxImage(_T("res/editnom.png"))), wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, _T("ID_BITMAPBUTTON5"));
|
|
BitmapButton5->SetDefault();
|
|
BitmapButton5->SetToolTip(_("Changer le nom"));
|
|
FlexGridSizer13->Add(BitmapButton5, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
globalCheck = new wxCheckBox(this, ID_CHECKBOX4, _("Global"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX4"));
|
|
globalCheck->SetValue(false);
|
|
FlexGridSizer13->Add(globalCheck, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer12->Add(FlexGridSizer13, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
StaticBoxSizer2 = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Editeur de chemin"));
|
|
FlexGridSizer2 = new wxFlexGridSizer(4, 1, 0, 0);
|
|
FlexGridSizer2->AddGrowableCol(0);
|
|
FlexGridSizer2->AddGrowableRow(2);
|
|
FlexGridSizer6 = new wxFlexGridSizer(0, 0, 0, 0);
|
|
BoxSizer1 = new wxBoxSizer(wxHORIZONTAL);
|
|
BitmapButton1 = new wxBitmapButton(this, ID_BITMAPBUTTON1, wxBitmap(wxImage(_T("res/addicon.png"))), wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, _T("ID_BITMAPBUTTON1"));
|
|
BitmapButton1->SetToolTip(_("Ajouter un point"));
|
|
BoxSizer1->Add(BitmapButton1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 3);
|
|
BitmapButton6 = new wxBitmapButton(this, ID_BITMAPBUTTON6, wxBitmap(wxImage(_T("res/addmore.png"))), wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, _T("ID_BITMAPBUTTON6"));
|
|
BitmapButton6->SetDefault();
|
|
BitmapButton6->SetToolTip(_("Ajouter..."));
|
|
BoxSizer1->Add(BitmapButton6, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 2);
|
|
BitmapButton2 = new wxBitmapButton(this, ID_BITMAPBUTTON2, wxBitmap(wxImage(_T("res/deleteicon.png"))), wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, _T("ID_BITMAPBUTTON2"));
|
|
BitmapButton2->SetToolTip(_("Supprimer un point"));
|
|
BoxSizer1->Add(BitmapButton2, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 3);
|
|
FlexGridSizer6->Add(BoxSizer1, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 0);
|
|
StaticText8 = new wxStaticText(this, ID_STATICTEXT9, _("0;0"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT9"));
|
|
FlexGridSizer6->Add(StaticText8, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer2->Add(FlexGridSizer6, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
contextMessageLabel = new wxStaticText(this, ID_STATICTEXT1, _("Label"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT1"));
|
|
FlexGridSizer2->Add(contextMessageLabel, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 3);
|
|
FlexGridSizer5 = new wxFlexGridSizer(0, 2, 0, 0);
|
|
FlexGridSizer5->AddGrowableCol(0);
|
|
FlexGridSizer5->AddGrowableRow(0);
|
|
previewPnl = new wxPanel(this, ID_PANEL1, wxDefaultPosition, wxSize(365,258), wxTAB_TRAVERSAL|wxWANTS_CHARS, _T("ID_PANEL1"));
|
|
FlexGridSizer5->Add(previewPnl, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 3);
|
|
FlexGridSizer2->Add(FlexGridSizer5, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer16 = new wxFlexGridSizer(0, 5, 0, 0);
|
|
ToggleButton1 = new wxToggleButton(this, ID_TOGGLEBUTTON1, _("Image"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TOGGLEBUTTON1"));
|
|
ToggleButton1->SetToolTip(_("Afficher une image en arrière-plan"));
|
|
FlexGridSizer16->Add(ToggleButton1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticText10 = new wxStaticText(this, ID_STATICTEXT11, _("X:"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT11"));
|
|
FlexGridSizer16->Add(StaticText10, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
bgImgXSpin = new wxSpinCtrl(this, ID_SPINCTRL1, _T("0"), wxDefaultPosition, wxSize(70,21), 0, -10000000, 10000000, 0, _T("ID_SPINCTRL1"));
|
|
bgImgXSpin->SetValue(_T("0"));
|
|
bgImgXSpin->Disable();
|
|
FlexGridSizer16->Add(bgImgXSpin, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticText11 = new wxStaticText(this, ID_STATICTEXT12, _("Y:"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT12"));
|
|
FlexGridSizer16->Add(StaticText11, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
bgImgYSpin = new wxSpinCtrl(this, ID_SPINCTRL2, _T("0"), wxDefaultPosition, wxSize(70,21), 0, -100000000, 100000000, 0, _T("ID_SPINCTRL2"));
|
|
bgImgYSpin->SetValue(_T("0"));
|
|
bgImgYSpin->Disable();
|
|
FlexGridSizer16->Add(bgImgYSpin, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer2->Add(FlexGridSizer16, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
StaticBoxSizer2->Add(FlexGridSizer2, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer12->Add(StaticBoxSizer2, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer10->Add(FlexGridSizer12, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer11 = new wxFlexGridSizer(0, 1, 0, 0);
|
|
StaticBoxSizer4 = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Position"));
|
|
FlexGridSizer14 = new wxFlexGridSizer(2, 1, 0, 0);
|
|
FlexGridSizer14->AddGrowableCol(0);
|
|
StaticText6 = new wxStaticText(this, ID_STATICTEXT7, _("Position du chemin par rapport à \nl\'origine de la scène."), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT7"));
|
|
FlexGridSizer14->Add(StaticText6, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer15 = new wxFlexGridSizer(0, 3, 0, 0);
|
|
xOffsetEdit = new wxTextCtrl(this, ID_TEXTCTRL3, _("0"), wxDefaultPosition, wxSize(51,21), 0, wxDefaultValidator, _T("ID_TEXTCTRL3"));
|
|
FlexGridSizer15->Add(xOffsetEdit, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticText7 = new wxStaticText(this, ID_STATICTEXT8, _(";"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT8"));
|
|
FlexGridSizer15->Add(StaticText7, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
yOffsetEdit = new wxTextCtrl(this, ID_TEXTCTRL4, _("0"), wxDefaultPosition, wxSize(51,21), 0, wxDefaultValidator, _T("ID_TEXTCTRL4"));
|
|
FlexGridSizer15->Add(yOffsetEdit, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer14->Add(FlexGridSizer15, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticBoxSizer4->Add(FlexGridSizer14, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer11->Add(StaticBoxSizer4, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticBoxSizer3 = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Orientation de l\'objet"));
|
|
FlexGridSizer7 = new wxFlexGridSizer(0, 1, 0, 0);
|
|
FlexGridSizer7->AddGrowableCol(0);
|
|
followAngleCheck = new wxCheckBox(this, ID_CHECKBOX3, _("Orienter automatiquement l\'objet"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX3"));
|
|
followAngleCheck->SetValue(false);
|
|
FlexGridSizer7->Add(followAngleCheck, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer8 = new wxFlexGridSizer(0, 2, 0, 0);
|
|
StaticText3 = new wxStaticText(this, ID_STATICTEXT4, _("Décalage d\'angle :"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT4"));
|
|
StaticText3->SetToolTip(_("Cet angle sera ajouté à celui automatiquement calculé avec la pente du chemin"));
|
|
FlexGridSizer8->Add(StaticText3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer9 = new wxFlexGridSizer(0, 2, 0, 0);
|
|
angleOffsetEdit = new wxTextCtrl(this, ID_TEXTCTRL2, _("0"), wxDefaultPosition, wxSize(45,21), 0, wxDefaultValidator, _T("ID_TEXTCTRL2"));
|
|
FlexGridSizer9->Add(angleOffsetEdit, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticText4 = new wxStaticText(this, ID_STATICTEXT5, _("°"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT5"));
|
|
FlexGridSizer9->Add(StaticText4, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer8->Add(FlexGridSizer9, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer7->Add(FlexGridSizer8, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
StaticBoxSizer3->Add(FlexGridSizer7, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer11->Add(StaticBoxSizer3, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticBoxSizer1 = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Mouvement et vitesse"));
|
|
FlexGridSizer4 = new wxFlexGridSizer(0, 2, 0, 0);
|
|
FlexGridSizer4->AddGrowableCol(1);
|
|
StaticText1 = new wxStaticText(this, ID_STATICTEXT2, _("Vitesse :"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT2"));
|
|
FlexGridSizer4->Add(StaticText1, 1, wxALL|wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL, 5);
|
|
speedEdit = new wxTextCtrl(this, ID_TEXTCTRL1, _("200"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL1"));
|
|
FlexGridSizer4->Add(speedEdit, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticText2 = new wxStaticText(this, ID_STATICTEXT3, _("Options :"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT3"));
|
|
FlexGridSizer4->Add(StaticText2, 1, wxALL|wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL, 5);
|
|
BoxSizer2 = new wxBoxSizer(wxHORIZONTAL);
|
|
reverseCheck = new wxCheckBox(this, ID_CHECKBOX1, _("Inverser à la fin"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX1"));
|
|
reverseCheck->SetValue(false);
|
|
BoxSizer2->Add(reverseCheck, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
stopCheck = new wxCheckBox(this, ID_CHECKBOX2, _("Arrêter à la fin"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX2"));
|
|
stopCheck->SetValue(false);
|
|
BoxSizer2->Add(stopCheck, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer4->Add(BoxSizer2, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
StaticBoxSizer1->Add(FlexGridSizer4, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer11->Add(StaticBoxSizer1, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
StaticText9 = new wxStaticText(this, ID_STATICTEXT10, _("Ces paramètres sont indépendants du chemin."), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT10"));
|
|
wxFont StaticText9Font(wxDEFAULT,wxDEFAULT,wxFONTSTYLE_ITALIC,wxNORMAL,false,wxEmptyString,wxFONTENCODING_DEFAULT);
|
|
StaticText9->SetFont(StaticText9Font);
|
|
FlexGridSizer11->Add(StaticText9, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer10->Add(FlexGridSizer11, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer1->Add(FlexGridSizer10, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
StaticLine1 = new wxStaticLine(this, ID_STATICLINE1, wxDefaultPosition, wxSize(10,-1), wxLI_HORIZONTAL, _T("ID_STATICLINE1"));
|
|
FlexGridSizer1->Add(StaticLine1, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 0);
|
|
FlexGridSizer3 = new wxFlexGridSizer(0, 3, 0, 0);
|
|
okBt = new wxButton(this, ID_BUTTON1, _("Ok"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON1"));
|
|
FlexGridSizer3->Add(okBt, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
cancelBt = new wxButton(this, ID_BUTTON2, _("Annuler"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON2"));
|
|
FlexGridSizer3->Add(cancelBt, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
|
|
FlexGridSizer1->Add(FlexGridSizer3, 1, wxALL|wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL, 0);
|
|
SetSizer(FlexGridSizer1);
|
|
FlexGridSizer1->Fit(this);
|
|
FlexGridSizer1->SetSizeHints(this);
|
|
|
|
Connect(ID_CHOICE1,wxEVT_COMMAND_CHOICE_SELECTED,(wxObjectEventFunction)&PathAutomatismEditor::OnpathChoiceSelect);
|
|
Connect(ID_BITMAPBUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnBitmapButton3Click1);
|
|
Connect(ID_BITMAPBUTTON4,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnBitmapButton4Click);
|
|
Connect(ID_BITMAPBUTTON5,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnBitmapButton5Click);
|
|
Connect(ID_CHECKBOX4,wxEVT_COMMAND_CHECKBOX_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnglobalCheckClick);
|
|
Connect(ID_BITMAPBUTTON1,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnBitmapButton1Click);
|
|
Connect(ID_BITMAPBUTTON6,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnBitmapButton6Click1);
|
|
Connect(ID_BITMAPBUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnBitmapButton2Click);
|
|
previewPnl->Connect(wxEVT_PAINT,(wxObjectEventFunction)&PathAutomatismEditor::OnPanel1Paint,0,this);
|
|
previewPnl->Connect(wxEVT_ERASE_BACKGROUND,(wxObjectEventFunction)&PathAutomatismEditor::OnpreviewPnlEraseBackground,0,this);
|
|
previewPnl->Connect(wxEVT_LEFT_DOWN,(wxObjectEventFunction)&PathAutomatismEditor::OnpreviewPnlLeftDown,0,this);
|
|
previewPnl->Connect(wxEVT_LEFT_UP,(wxObjectEventFunction)&PathAutomatismEditor::OnpreviewPnlLeftUp,0,this);
|
|
previewPnl->Connect(wxEVT_RIGHT_UP,(wxObjectEventFunction)&PathAutomatismEditor::OnpreviewPnlRightUp,0,this);
|
|
previewPnl->Connect(wxEVT_MOTION,(wxObjectEventFunction)&PathAutomatismEditor::OnpreviewPnlMouseMove,0,this);
|
|
Connect(ID_TOGGLEBUTTON1,wxEVT_COMMAND_TOGGLEBUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnBitmapButton6Click);
|
|
Connect(ID_SPINCTRL1,wxEVT_COMMAND_SPINCTRL_UPDATED,(wxObjectEventFunction)&PathAutomatismEditor::OnbgImgXSpinChange);
|
|
Connect(ID_SPINCTRL2,wxEVT_COMMAND_SPINCTRL_UPDATED,(wxObjectEventFunction)&PathAutomatismEditor::OnbgImgXSpinChange);
|
|
Connect(ID_CHECKBOX3,wxEVT_COMMAND_CHECKBOX_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnCheckBox1Click);
|
|
Connect(ID_BUTTON1,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OnokBtClick);
|
|
Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&PathAutomatismEditor::OncancelBtClick);
|
|
//*)
|
|
|
|
coordsBt = new wxMenuItem(&pointMenu, coordsBtID, _("Voir les coordonnées"));
|
|
positionBt = new wxMenuItem(&pointMenu, positionBtID, _("Définir les coordonnées précisément"));
|
|
addPointAfterBt = new wxMenuItem(&pointMenu, addPointAfterBtID, _("Ajouter un point juste après"));
|
|
removePointBt = new wxMenuItem(&pointMenu, removePointBtID, _("Supprimer ce point"));
|
|
|
|
addAfterBt = new wxMenuItem(&advanceAddMenu, addAfterBtID, _("Ajouter un point après un autre"));
|
|
addBeforeBt = new wxMenuItem(&advanceAddMenu, addBeforeBtID, _("Ajouter un point avant un autre"));
|
|
|
|
pointMenu.Append(coordsBt);
|
|
pointMenu.Append(positionBt);
|
|
pointMenu.AppendSeparator();
|
|
pointMenu.Append(addPointAfterBt);
|
|
pointMenu.Append(removePointBt);
|
|
|
|
advanceAddMenu.Append(addAfterBt);
|
|
advanceAddMenu.Append(addBeforeBt);
|
|
|
|
previewPnlState.offset == sf::Vector2f(0, 0);
|
|
previewPnlState.state = NOTHING;
|
|
previewPnlState.selectedPoint = -1;
|
|
previewPnlState.backgroundBitmap = NULL;
|
|
|
|
speedEdit->SetValue(ToString(automatism.GetSpeed()));
|
|
xOffsetEdit->SetValue(ToString(automatism.GetOffsetX()));
|
|
yOffsetEdit->SetValue(ToString(automatism.GetOffsetY()));
|
|
angleOffsetEdit->SetValue(ToString(automatism.GetAngleOffset()));
|
|
|
|
reverseCheck->SetValue(automatism.ReverseAtEnd());
|
|
stopCheck->SetValue(automatism.StopAtEnd());
|
|
followAngleCheck->SetValue(automatism.FollowAngle());
|
|
|
|
//Setup shared datas
|
|
if ( !scene || scene->automatismsInitialSharedDatas.find(automatism.GetName()) == scene->automatismsInitialSharedDatas.end())
|
|
{
|
|
wxLogError(_T("Impossible d'accéder aux données partagées."));
|
|
return;
|
|
}
|
|
|
|
sharedDatas = boost::dynamic_pointer_cast<ScenePathDatas>(scene->automatismsInitialSharedDatas[automatism.GetName()]);
|
|
|
|
if ( sharedDatas == boost::shared_ptr<ScenePathDatas>() )
|
|
{
|
|
wxLogError(_T("Impossible d'accéder aux données partagées : Données de mauvais type"));
|
|
return;
|
|
}
|
|
|
|
paths.clear();
|
|
|
|
//Load global paths
|
|
for(std::map<std::string, std::vector<sf::Vector2f> >::iterator it = sharedDatas->globalPaths.begin(); it != sharedDatas->globalPaths.end(); it++)
|
|
{
|
|
PathInfo newPathInfo;
|
|
newPathInfo.name = it->first;
|
|
newPathInfo.path = it->second;
|
|
newPathInfo.isGlobal = true;
|
|
|
|
paths[newPathInfo.name] = newPathInfo;
|
|
}
|
|
|
|
//Loading paths from the object
|
|
std::vector<std::string> listOfPathsNames = automatism.GetListOfPathsNames();
|
|
for(unsigned int a = 0; a < listOfPathsNames.size(); a++)
|
|
{
|
|
PathInfo newPathInfo;
|
|
|
|
if(paths.count(listOfPathsNames[a]) == 0) //If a global using the same name doesn't exist
|
|
{
|
|
newPathInfo.name = listOfPathsNames[a];
|
|
}
|
|
else
|
|
{
|
|
std::string futureName;
|
|
do
|
|
{
|
|
futureName = ToString(wxGetTextFromUser(_("Un chemin global portant le même nom qu'un chemin local de l'objet actuel existe.\nPour éviter un conflit de nom, veuillez renommer le chemin local :"), _("Conflit entre deux chemin"), listOfPathsNames[a], this));
|
|
} while (listOfPathsNames[a] == futureName);
|
|
|
|
newPathInfo.name = futureName;
|
|
}
|
|
|
|
newPathInfo.path = std::vector<sf::Vector2f>(automatism.GetPath(listOfPathsNames[a]));
|
|
newPathInfo.isGlobal = false;
|
|
|
|
paths[newPathInfo.name] = newPathInfo;
|
|
}
|
|
|
|
//Update Combobox content
|
|
UpdateComboBoxWithPathsName();
|
|
|
|
//Verify if the current path exists
|
|
if(paths.count(automatism.GetCurrentPathName()) != 0)
|
|
{
|
|
ChangePathOfPreview(automatism.GetCurrentPathName());
|
|
}
|
|
else
|
|
{
|
|
wxMessageBox(_("Le chemin \"" + automatism.GetCurrentPathName() + "\" de l'automatisme est introuvable.\nL'automatisme va le remplacer par \"Object main path\"."), _("Chemin introuvable"), wxOK | wxICON_EXCLAMATION, this);
|
|
ChangePathOfPreview("Object main path");
|
|
}
|
|
}
|
|
|
|
PathAutomatismEditor::~PathAutomatismEditor()
|
|
{
|
|
//(*Destroy(PathAutomatismEditor)
|
|
//*)
|
|
}
|
|
|
|
void PathAutomatismEditor::OnpathChoiceSelect(wxCommandEvent& event)
|
|
{
|
|
ChangePathOfPreview(GetNameWithoutPrefix(ToString(pathChoice->GetString(pathChoice->GetSelection()))));
|
|
}
|
|
|
|
void PathAutomatismEditor::ChangePathOfPreview(const std::string &name)
|
|
{
|
|
if(paths.count(name) == 0)
|
|
{
|
|
wxMessageBox("Couldn't find " + wxString(name.c_str()) + ".", "Error");
|
|
return;
|
|
}
|
|
|
|
path = &(paths.at(name).path);
|
|
pathInfo = &(paths.at(name));
|
|
|
|
globalCheck->SetValue(paths.at(name).isGlobal);
|
|
|
|
previewPnlState.offset = sf::Vector2f(0,0);
|
|
|
|
previewPnl->Refresh();
|
|
previewPnl->Update();
|
|
|
|
pathChoice->Select(pathChoice->FindString(pathInfo->isGlobal ? "global: " + name : name, true));
|
|
|
|
if(pathInfo->name == "Object main path")
|
|
{
|
|
BitmapButton4->Enable(false);
|
|
BitmapButton5->Enable(false);
|
|
globalCheck->Enable(false);
|
|
}
|
|
else
|
|
{
|
|
BitmapButton4->Enable(true);
|
|
BitmapButton5->Enable(true);
|
|
globalCheck->Enable(true);
|
|
}
|
|
}
|
|
|
|
void PathAutomatismEditor::UpdateComboBoxWithPathsName()
|
|
{
|
|
std::string previousSelectedName = ToString(pathChoice->GetString(pathChoice->GetSelection()));
|
|
|
|
pathChoice->Clear();
|
|
|
|
for(std::map<std::string, PathInfo>::iterator it = paths.begin(); it != paths.end(); it++)
|
|
{
|
|
if(!it->second.isGlobal)
|
|
{
|
|
pathChoice->Append(wxString(it->second.name.c_str()));
|
|
}
|
|
else
|
|
{
|
|
pathChoice->Append(wxString("global: " + it->second.name));
|
|
}
|
|
|
|
}
|
|
|
|
if(pathChoice->FindString(previousSelectedName, true) != -1)
|
|
pathChoice->Select(pathChoice->FindString(previousSelectedName, true));
|
|
}
|
|
|
|
void PathAutomatismEditor::OnBitmapButton3Click1(wxCommandEvent& event)
|
|
{
|
|
std::string newPathName = ToString(wxGetTextFromUser(_("Nom du nouveau chemin :"), _("Nouveau chemin"), "newPath"));
|
|
|
|
if(PathExists(newPathName))
|
|
{
|
|
wxMessageBox(_("Ce chemin existe déjà."), _("Impossible de créer le chemin"));
|
|
return;
|
|
}
|
|
|
|
PathInfo newPathInfo;
|
|
newPathInfo.name = newPathName;
|
|
newPathInfo.isGlobal = false;
|
|
|
|
paths[newPathInfo.name] = newPathInfo;
|
|
|
|
UpdateComboBoxWithPathsName();
|
|
ChangePathOfPreview(newPathName);
|
|
}
|
|
|
|
void PathAutomatismEditor::OnBitmapButton4Click(wxCommandEvent& event)
|
|
{
|
|
if(pathInfo->name == "Object main path")
|
|
{
|
|
wxMessageBox(_("Impossible de supprimer le chemin principal de l'objet"), _("Erreur"));
|
|
return;
|
|
}
|
|
|
|
int r = wxMessageBox(_("Êtes-vous sûr de supprimer ce chemin ?"), _("Confirmation de suppression"), wxYES_NO);
|
|
if(r != wxYES)
|
|
return;
|
|
|
|
if(paths.count(pathInfo->name) != 0 && paths.size() > 1)
|
|
{
|
|
if(pathInfo->isGlobal)
|
|
haveDeletedAGlobalPath = true;
|
|
|
|
paths.erase(pathInfo->name);
|
|
}
|
|
|
|
UpdateComboBoxWithPathsName();
|
|
ChangePathOfPreview(paths.begin()->first);
|
|
}
|
|
|
|
void PathAutomatismEditor::OnBitmapButton5Click(wxCommandEvent& event)
|
|
{
|
|
std::string originalName = pathInfo->name;
|
|
if(originalName == "")
|
|
{
|
|
wxMessageBox(_("Impossible de renommer le chemin principal de l'objet"), _("Erreur"));
|
|
return;
|
|
}
|
|
|
|
std::string newName = ToString(wxGetTextFromUser(_("Nouveau nom du chemin :"), _("Renommer un chemin"), originalName));
|
|
|
|
if(PathExists(newName) && newName != originalName)
|
|
{
|
|
wxMessageBox(_("Ce chemin existe déjà."), _("Impossible de renommer le chemin"));
|
|
return;
|
|
}
|
|
|
|
replace_key< std::map<std::string, PathInfo> >(paths, originalName, newName);
|
|
paths.at(newName).name = newName;
|
|
|
|
UpdateComboBoxWithPathsName();
|
|
ChangePathOfPreview(newName);
|
|
}
|
|
|
|
|
|
void PathAutomatismEditor::OncancelBtClick(wxCommandEvent& event)
|
|
{
|
|
EndModal(0);
|
|
}
|
|
|
|
void PathAutomatismEditor::OnokBtClick(wxCommandEvent& event)
|
|
{
|
|
automatism.DeleteAllPaths();
|
|
sharedDatas->globalPaths.clear();
|
|
|
|
for(std::map<std::string, PathInfo>::iterator it = paths.begin(); it != paths.end(); it++)
|
|
{
|
|
if(!it->second.isGlobal)
|
|
{
|
|
automatism.SetPath(it->first, it->second.path);
|
|
}
|
|
else
|
|
{
|
|
sharedDatas->globalPaths[it->second.name] = it->second.path;
|
|
}
|
|
|
|
}
|
|
automatism.ChangeCurrentPath(pathInfo->name);
|
|
|
|
automatism.SetSpeed(ToFloat(ToString(speedEdit->GetValue())));
|
|
automatism.SetOffsetX(ToFloat(ToString(xOffsetEdit->GetValue())));
|
|
automatism.SetOffsetY(ToFloat(ToString(yOffsetEdit->GetValue())));
|
|
automatism.SetAngleOffset(ToFloat(ToString(angleOffsetEdit->GetValue())));
|
|
|
|
automatism.SetReverseAtEnd(reverseCheck->GetValue());
|
|
automatism.SetStopAtEnd(stopCheck->GetValue());
|
|
automatism.SetFollowAngle(followAngleCheck->GetValue());
|
|
|
|
if(haveDeletedAGlobalPath)
|
|
mainEditorCommand.GetInfoBar()->ShowMessage(_("Vous venez de supprimer un chemin global. Vérifiez bien qu'aucun autre objet ne l'utilisait."), wxICON_WARNING);
|
|
|
|
EndModal(1);
|
|
}
|
|
|
|
void PathAutomatismEditor::OnPanel1Paint(wxPaintEvent& event)
|
|
{
|
|
wxBufferedPaintDC dc(previewPnl);
|
|
wxSize panelSize = previewPnl->GetSize();
|
|
|
|
//Draw background
|
|
dc.SetBrush(gd::CommonBitmapManager::GetInstance()->transparentBg);
|
|
dc.DrawRectangle(0,0, panelSize.GetWidth(), panelSize.GetHeight());
|
|
|
|
//Draw the image
|
|
if(previewPnlState.backgroundBitmap != NULL)
|
|
{
|
|
dc.DrawBitmap(*previewPnlState.backgroundBitmap, 0 - previewPnlState.offset.x + bgImgXSpin->GetValue(),
|
|
0 - previewPnlState.offset.y + bgImgYSpin->GetValue(),
|
|
true);
|
|
}
|
|
|
|
//Draw lines between points
|
|
std::vector<wxPoint> points;
|
|
for(unsigned int a = 0; a < path->size(); a++)
|
|
{
|
|
points.push_back(wxPoint(path->at(a).x - previewPnlState.offset.x,
|
|
path->at(a).y - previewPnlState.offset.y));
|
|
}
|
|
dc.SetBrush(wxBrush(wxColour(255, 255, 255, 255), wxBRUSHSTYLE_TRANSPARENT));
|
|
dc.SetPen(wxPen(wxColor(50, 57, 122)));
|
|
dc.DrawLines(points.size(), &points[0]);
|
|
|
|
wxBitmap point(gd::CommonBitmapManager::GetInstance()->point);
|
|
|
|
//Draw points
|
|
for(unsigned int a = 0; a < path->size(); a++)
|
|
{
|
|
dc.DrawBitmap(point,
|
|
path->at(a).x-point.GetWidth()/2 - previewPnlState.offset.x,
|
|
path->at(a).y-point.GetHeight()/2 - previewPnlState.offset.y,
|
|
true);
|
|
}
|
|
|
|
//Draw axis
|
|
dc.SetPen(wxPen(wxColor(82, 178, 255)));
|
|
dc.DrawLine(0, -previewPnlState.offset.y, panelSize.GetWidth(), -previewPnlState.offset.y);
|
|
dc.DrawLine(-previewPnlState.offset.x, 0, -previewPnlState.offset.x, panelSize.GetHeight());
|
|
|
|
//Draw mouse projections
|
|
if(previewPnlState.state != VIEWMOVING)
|
|
{
|
|
dc.SetPen(wxPen(wxColor(150, 150, 150)));
|
|
dc.DrawLine(0, previewPnlState.mousePosition.y, panelSize.GetWidth(), previewPnlState.mousePosition.y);
|
|
dc.DrawLine(previewPnlState.mousePosition.x, 0, previewPnlState.mousePosition.x, panelSize.GetHeight());
|
|
dc.DrawText(ToString(previewPnlState.mousePosition.x + previewPnlState.offset.x), previewPnlState.mousePosition.x + 2, 2);
|
|
dc.DrawText(ToString(previewPnlState.mousePosition.y + previewPnlState.offset.y), 2, previewPnlState.mousePosition.y + 2);
|
|
}
|
|
|
|
//Draw origin
|
|
dc.DrawBitmap(point,
|
|
(0-point.GetWidth()/2 - previewPnlState.offset.x),
|
|
(0-point.GetHeight()/2 - previewPnlState.offset.y),
|
|
true);
|
|
}
|
|
|
|
void PathAutomatismEditor::OnpreviewPnlLeftDown(wxMouseEvent& event)
|
|
{
|
|
//Drag and drop of points
|
|
int selectedPoint;
|
|
if((selectedPoint = GetPointOnMouse(event)) != -1)
|
|
{
|
|
if(previewPnlState.state == NOTHING)
|
|
{
|
|
previewPnlState.state = DRAGGING;
|
|
previewPnlState.selectedPoint = selectedPoint;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(previewPnlState.state == DRAGGING)
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
}
|
|
else if(previewPnlState.state == NOTHING)
|
|
{
|
|
previewPnlState.state = VIEWMOVING;
|
|
previewPnlState.originalPoint = sf::Vector2f(event.GetPosition().x, event.GetPosition().y);
|
|
}
|
|
|
|
previewPnlState.selectedPoint = -1;
|
|
}
|
|
|
|
//Add new points at the end.
|
|
if(previewPnlState.state == ADDING)
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
previewPnlState.selectedPoint = -1;
|
|
|
|
int segmentPos = GetSegmentOnMouse(event);
|
|
if(segmentPos == -1)
|
|
path->push_back(sf::Vector2f(event.GetPosition().x + previewPnlState.offset.x,
|
|
event.GetPosition().y + previewPnlState.offset.y));
|
|
else
|
|
path->insert(path->begin() + segmentPos + 1,
|
|
sf::Vector2f(event.GetPosition().x + previewPnlState.offset.x,
|
|
event.GetPosition().y + previewPnlState.offset.y));
|
|
}
|
|
else if(previewPnlState.state == REMOVING)
|
|
{
|
|
if((selectedPoint = GetPointOnMouse(event)) != -1)
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
path->erase(path->begin() + selectedPoint);
|
|
}
|
|
else
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
}
|
|
}
|
|
else if(previewPnlState.state == ADDINGPOINTAFTER)
|
|
{
|
|
if((selectedPoint = GetPointOnMouse(event)) != -1)
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
|
|
if(selectedPoint < (path->size() - 1))
|
|
{
|
|
path->insert(path->begin() + selectedPoint + 1, sf::Vector2f((path->at(selectedPoint) + path->at(selectedPoint + 1)) / 2.f));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
}
|
|
}
|
|
else if(previewPnlState.state == ADDINGPOINTBEFORE)
|
|
{
|
|
if((selectedPoint = GetPointOnMouse(event)) != -1)
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
|
|
if(selectedPoint > 0)
|
|
{
|
|
path->insert(path->begin() + selectedPoint, sf::Vector2f((path->at(selectedPoint - 1) + path->at(selectedPoint)) / 2.f));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
previewPnlState.state = NOTHING;
|
|
}
|
|
}
|
|
|
|
UpdateContextMessage();
|
|
}
|
|
|
|
void PathAutomatismEditor::OnpreviewPnlMouseMove(wxMouseEvent& event)
|
|
{
|
|
wxSize panelSize = previewPnl->GetSize();
|
|
|
|
if(previewPnlState.state == DRAGGING)
|
|
{
|
|
(*path)[previewPnlState.selectedPoint] = sf::Vector2f(event.GetPosition().x + previewPnlState.offset.x,
|
|
event.GetPosition().y + previewPnlState.offset.y);
|
|
}
|
|
else if(previewPnlState.state == VIEWMOVING)
|
|
{
|
|
previewPnlState.offset += previewPnlState.originalPoint - sf::Vector2f(event.GetPosition().x, event.GetPosition().y);
|
|
previewPnlState.originalPoint = sf::Vector2f(event.GetPosition().x, event.GetPosition().y);
|
|
}
|
|
|
|
previewPnlState.mousePosition = sf::Vector2f(event.GetPosition().x, event.GetPosition().y);
|
|
|
|
previewPnl->Refresh();
|
|
previewPnl->Update();
|
|
|
|
StaticText8->SetLabel(ToString(event.GetPosition().x + previewPnlState.offset.x) + ";" + ToString(event.GetPosition().y + previewPnlState.offset.y));
|
|
|
|
UpdateContextMessage();
|
|
}
|
|
|
|
void PathAutomatismEditor::OnpreviewPnlLeftUp(wxMouseEvent& event)
|
|
{
|
|
if(previewPnlState.state == DRAGGING)
|
|
{
|
|
(*path)[previewPnlState.selectedPoint] = sf::Vector2f(event.GetPosition().x + previewPnlState.offset.x,
|
|
event.GetPosition().y + previewPnlState.offset.y);
|
|
previewPnlState.state = NOTHING;
|
|
previewPnlState.selectedPoint = -1;
|
|
}
|
|
else if(previewPnlState.state == VIEWMOVING)
|
|
{
|
|
previewPnlState.offset += previewPnlState.originalPoint - sf::Vector2f(event.GetPosition().x, event.GetPosition().y);
|
|
|
|
previewPnlState.originalPoint = sf::Vector2f(0,0);
|
|
previewPnlState.state = NOTHING;
|
|
}
|
|
|
|
previewPnl->Refresh();
|
|
previewPnl->Update();
|
|
|
|
UpdateContextMessage();
|
|
}
|
|
|
|
void PathAutomatismEditor::OnpreviewPnlRightUp(wxMouseEvent& event)
|
|
{
|
|
int selectedPoint;
|
|
if((selectedPoint = GetPointOnMouse(event)) != -1)
|
|
{
|
|
if(previewPnlState.state == NOTHING)
|
|
{
|
|
int menuSelection = previewPnl->GetPopupMenuSelectionFromUser(pointMenu, event.GetPosition());
|
|
|
|
if(menuSelection == coordsBtID)
|
|
{
|
|
wxMessageBox(_("Position du point : ") + ToString(path->at(selectedPoint).x).c_str() + ";" + ToString(path->at(selectedPoint).y));
|
|
}
|
|
else if(menuSelection == positionBtID)
|
|
{
|
|
int posX = ToInt(ToString(wxGetTextFromUser(_("Position X :"), _("Positionner précisement"), ToString(path->at(selectedPoint).x), this)));
|
|
int posY = ToInt(ToString(wxGetTextFromUser(_("Position Y :"), _("Positionner précisement"), ToString(path->at(selectedPoint).y), this)));
|
|
|
|
path->at(selectedPoint).x = posX;
|
|
path->at(selectedPoint).y = posY;
|
|
}
|
|
else if(menuSelection == addPointAfterBtID)
|
|
{
|
|
if(selectedPoint < (path->size() - 1))
|
|
{
|
|
path->insert(path->begin() + selectedPoint + 1, sf::Vector2f((path->at(selectedPoint) + path->at(selectedPoint + 1)) / 2.f));
|
|
}
|
|
}
|
|
else if(menuSelection == removePointBtID)
|
|
{
|
|
path->erase(path->begin() + selectedPoint);
|
|
}
|
|
}
|
|
|
|
previewPnl->Refresh();
|
|
previewPnl->Update();
|
|
}
|
|
}
|
|
|
|
void PathAutomatismEditor::OnBitmapButton1Click(wxCommandEvent& event)
|
|
{
|
|
previewPnlState.state = ADDING;
|
|
previewPnlState.selectedPoint = -1;
|
|
|
|
UpdateContextMessage();
|
|
}
|
|
|
|
void PathAutomatismEditor::OnBitmapButton2Click(wxCommandEvent& event)
|
|
{
|
|
previewPnlState.state = REMOVING;
|
|
previewPnlState.selectedPoint = -1;
|
|
|
|
UpdateContextMessage();
|
|
}
|
|
|
|
void PathAutomatismEditor::OnBitmapButton6Click1(wxCommandEvent& event)
|
|
{
|
|
int menuSelection = BitmapButton6->GetPopupMenuSelectionFromUser(advanceAddMenu, 0, BitmapButton6->GetSize().GetHeight() - 1);
|
|
|
|
if(menuSelection == addAfterBtID)
|
|
{
|
|
previewPnlState.state = ADDINGPOINTAFTER;
|
|
}
|
|
else if(menuSelection == addBeforeBtID)
|
|
{
|
|
previewPnlState.state = ADDINGPOINTBEFORE;
|
|
}
|
|
|
|
UpdateContextMessage();
|
|
}
|
|
|
|
|
|
bool PathAutomatismEditor::PathExists(const std::string &name)
|
|
{
|
|
return (paths.count(name) != 0);
|
|
}
|
|
|
|
int PathAutomatismEditor::GetPointOnMouse(wxMouseEvent& event)
|
|
{
|
|
if(path->empty())
|
|
return -1;
|
|
|
|
sf::Vector2f posOfMouse = sf::Vector2f(event.GetPosition().x + previewPnlState.offset.x,
|
|
event.GetPosition().y + previewPnlState.offset.y);
|
|
|
|
for(unsigned int a = 0; a < path->size(); a++)
|
|
{
|
|
int pointPosX = path->at(a).x;
|
|
int pointPosY = path->at(a).y;
|
|
|
|
if(((pointPosX - 4) < posOfMouse.x) && ((pointPosX + 4) > posOfMouse.x) &&
|
|
((pointPosY - 4) < posOfMouse.y) && ((pointPosY + 4) > posOfMouse.y))
|
|
{
|
|
return a;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
int PathAutomatismEditor::GetSegmentOnMouse(wxMouseEvent& event)
|
|
{
|
|
if(path->empty())
|
|
return -1;
|
|
|
|
sf::Vector2f posOfMouse = sf::Vector2f(event.GetPosition().x + previewPnlState.offset.x,
|
|
event.GetPosition().y + previewPnlState.offset.y);
|
|
|
|
for(unsigned int a = 0; a < path->size() - 1; a++)
|
|
{
|
|
int pointPosX1 = path->at(a).x;
|
|
int pointPosY1 = path->at(a).y;
|
|
|
|
int pointPosX2 = path->at(a + 1).x;
|
|
int pointPosY2 = path->at(a + 1).y;
|
|
|
|
int deltaX = pointPosX2 - pointPosX1;
|
|
int deltaY = pointPosY2 - pointPosY1;
|
|
|
|
float ratioX = static_cast<float>(deltaX) / static_cast<float>(posOfMouse.x - pointPosX1);
|
|
float ratioY = static_cast<float>(deltaY) / static_cast<float>(posOfMouse.y - pointPosY1);
|
|
|
|
if(((posOfMouse.x > pointPosX1 && posOfMouse.x < pointPosX2) || (posOfMouse.x < pointPosX1 && posOfMouse.x > pointPosX2)) &&
|
|
((posOfMouse.y > pointPosY1 && posOfMouse.y < pointPosY2) || (posOfMouse.y < pointPosY1 && posOfMouse.y > pointPosY2)) &&
|
|
(ratioY > (ratioX - 0.7)) && (ratioY < (ratioX + 0.7)))
|
|
return a;
|
|
else if (((posOfMouse.y > pointPosY1 && posOfMouse.y < pointPosY2) || (posOfMouse.y < pointPosY1 && posOfMouse.y > pointPosY2)) &&
|
|
ratioY == std::numeric_limits< float >::infinity())
|
|
return a;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void PathAutomatismEditor::UpdateContextMessage()
|
|
{
|
|
if(previewPnlState.state == NOTHING)
|
|
{
|
|
contextMessageLabel->SetLabelText(_("Déplacez et modifiez les points avec la souris."));
|
|
}
|
|
else if(previewPnlState.state == DRAGGING)
|
|
{
|
|
contextMessageLabel->SetLabelText(_("Relâchez la souris pour valider la position du point."));
|
|
}
|
|
else if(previewPnlState.state == ADDING)
|
|
{
|
|
contextMessageLabel->SetLabelText(_("Ajoutez un point en cliquant avec la souris. Cliquez sur un segment pour lui ajouter un point."));
|
|
}
|
|
else if(previewPnlState.state == REMOVING)
|
|
{
|
|
contextMessageLabel->SetLabelText(_("Supprimez un point en cliquant dessus avec la souris."));
|
|
}
|
|
else if(previewPnlState.state == VIEWMOVING)
|
|
{
|
|
contextMessageLabel->SetLabelText(_("Glissez la souris pour faire défiler la vue."));
|
|
}
|
|
else if(previewPnlState.state == ADDINGPOINTAFTER)
|
|
{
|
|
contextMessageLabel->SetLabelText(_("Cliquez sur un point pour ajouter un point juste après."));
|
|
}
|
|
else if(previewPnlState.state == ADDINGPOINTBEFORE)
|
|
{
|
|
contextMessageLabel->SetLabelText(_("Cliquez sur un point pour ajouter un point juste avant."));
|
|
}
|
|
}
|
|
|
|
void PathAutomatismEditor::OnCheckBox1Click(wxCommandEvent& event)
|
|
{
|
|
if(followAngleCheck->GetValue())
|
|
{
|
|
angleOffsetEdit->Enable(true);
|
|
}
|
|
else
|
|
{
|
|
angleOffsetEdit->Enable(false);
|
|
}
|
|
}
|
|
|
|
void PathAutomatismEditor::OnglobalCheckClick(wxCommandEvent& event)
|
|
{
|
|
if(pathInfo->name == "Object main path")
|
|
{
|
|
wxMessageBox(_("Impossible de rendre global le chemin principal de l'objet."), _("Erreur"));
|
|
globalCheck->SetValue(false);
|
|
return;
|
|
}
|
|
|
|
if(globalCheck->GetValue())
|
|
pathInfo->isGlobal = true;
|
|
else
|
|
pathInfo->isGlobal = false;
|
|
|
|
UpdateComboBoxWithPathsName();
|
|
ChangePathOfPreview(pathInfo->name);
|
|
}
|
|
|
|
std::string PathAutomatismEditor::GetNameWithoutPrefix(std::string name)
|
|
{
|
|
std::string result;
|
|
|
|
if(name.substr(0, 8) != "global: ")
|
|
{
|
|
return result = name;
|
|
}
|
|
else
|
|
{
|
|
result.resize(name.size() - 8);
|
|
std::copy(name.begin() + 8, name.end(), result.begin());
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
void PathAutomatismEditor::OnBitmapButton6Click(wxCommandEvent& event)
|
|
{
|
|
if(ToggleButton1->GetValue())
|
|
{
|
|
wxString filename = wxLoadFileSelector(_("Choisissez une image à afficher"), "Images (*.png;*.jpg)|*.png;*.jpg");
|
|
|
|
if(!filename.empty())
|
|
{
|
|
if(previewPnlState.backgroundBitmap != NULL)
|
|
delete previewPnlState.backgroundBitmap;
|
|
|
|
previewPnlState.backgroundBitmap = new wxBitmap(filename, wxBITMAP_TYPE_ANY);
|
|
|
|
bgImgXSpin->Enable(true);
|
|
bgImgYSpin->Enable(true);
|
|
}
|
|
else
|
|
{
|
|
ToggleButton1->SetValue(false);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(previewPnlState.backgroundBitmap != NULL)
|
|
delete previewPnlState.backgroundBitmap;
|
|
|
|
previewPnlState.backgroundBitmap = NULL;
|
|
|
|
bgImgXSpin->Enable(false);
|
|
bgImgYSpin->Enable(false);
|
|
}
|
|
|
|
previewPnl->Refresh();
|
|
previewPnl->Update();
|
|
}
|
|
|
|
void PathAutomatismEditor::OnbgImgXSpinChange(wxSpinEvent& event)
|
|
{
|
|
previewPnl->Refresh();
|
|
previewPnl->Update();
|
|
}
|
|
|
|
void PathAutomatismEditor::OnpreviewPnlEraseBackground(wxEraseEvent& event)
|
|
{
|
|
}
|
|
|
|
#endif
|