mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
998ec3bccc
Updated skybox model to better match GZDoom's skybox. Also the sky texture was flipped horizontally. Fixed, Visual mode: "Select with the same texture" action is now able to select sidedef parts only visible because of slopes. Fixed, Visual mode: skybox texture was not updated after using "Open map in current wad" action. Fixed, Visual mode: in some cases Visual camera was placed below sector's floor when "Sync camera position between 2D and 3D modes" setting was enabled. Fixed: numeric thing flags with inverted UDMF flag defined in "thingflagstranslation" Game configuration block were lost when copy-pasting a thing. Fixed, command line arguments: fixed a crash when loading a map from a wad with existing .dbs file.
65 lines
2 KiB
C#
65 lines
2 KiB
C#
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
/*
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
* This program is released under GNU General Public License
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#endregion
|
|
|
|
#region ================== Namespaces
|
|
|
|
using System.Windows.Forms;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
{
|
|
internal interface IVisualEventReceiver
|
|
{
|
|
// The events that must be handled
|
|
void OnSelectBegin();
|
|
void OnSelectEnd();
|
|
void OnEditBegin();
|
|
void OnEditEnd();
|
|
void OnMouseMove(MouseEventArgs e);
|
|
void OnChangeTargetHeight(int amount);
|
|
void OnChangeTargetBrightness(bool up);
|
|
void OnChangeTextureOffset(int horizontal, int vertical, bool doSurfaceAngleCorrection);
|
|
void OnChangeScale(int incrementX, int incrementY); //mxd
|
|
void OnResetTextureOffset();
|
|
void OnResetLocalTextureOffset(); //mxd. This should reset upper/middle/lower offsets (UDMF only)
|
|
void OnSelectTexture();
|
|
void OnCopyTexture();
|
|
void OnPasteTexture();
|
|
void OnCopyTextureOffsets();
|
|
void OnPasteTextureOffsets();
|
|
void OnCopyProperties();
|
|
void OnPasteProperties(bool usecopysettings); //mxd. Added "usecopysettings"
|
|
void OnTextureAlign(bool alignx, bool aligny);
|
|
void OnTextureFit(FitTextureOptions options); //mxd
|
|
void OnTextureFloodfill();
|
|
void OnToggleUpperUnpegged();
|
|
void OnToggleLowerUnpegged();
|
|
void OnProcess(float deltatime);
|
|
void OnInsert();
|
|
void OnDelete();
|
|
|
|
// Assist functions
|
|
void ApplyTexture(string texture);
|
|
void ApplyUpperUnpegged(bool set);
|
|
void ApplyLowerUnpegged(bool set);
|
|
|
|
// Other methods
|
|
string GetTextureName();
|
|
void SelectNeighbours(bool select, bool matchtexture, bool matchheight); //mxd
|
|
bool IsSelected(); //mxd
|
|
}
|
|
}
|