2c876e79c3
Previously the visual typesetting tools and the overlay mask used several coordinate frames, converting between them in many places in inconsistent ways. This elimiates all uses of coordinate frames other than screen and script, and makes the conversion done in one place, and only when parsing or serializing ASS. This fixes: - A few minor rounding errors - Horrible brokeness when only part of the video frame is being displayed, due to higher levels of zoom than fit onscreen or panning the video - Distortion of the visual typesetting tools when the combination of overridden aspect ratio, script resolution, and video resolution did not result in square pixels. - Resolution-dependence of the visual typesetting tools, which resulted in some tools becoming hard to use at zooms outside the range of 100-200%. - Some draggable controls used the mouse's script coordinates, resulting in noticable jerky movement at high zoom levels or when using strange script resolutions. Closes #966. Originally committed to SVN as r4289.
243 lines
5.9 KiB
C++
243 lines
5.9 KiB
C++
// Copyright (c) 2007, Rodrigo Braz Monteiro
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
// and/or other materials provided with the distribution.
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
// may be used to endorse or promote products derived from this software
|
|
// without specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
//
|
|
// Aegisub Project http://www.aegisub.org/
|
|
//
|
|
// $Id$
|
|
|
|
/// @file visual_tool_clip.cpp
|
|
/// @brief Rectangular clipping visual typesetting tool
|
|
/// @ingroup visual_ts
|
|
///
|
|
|
|
|
|
///////////
|
|
// Headers
|
|
#include "config.h"
|
|
|
|
#include "ass_dialogue.h"
|
|
#include "ass_file.h"
|
|
#include "subs_edit_box.h"
|
|
#include "subs_grid.h"
|
|
#include "utils.h"
|
|
#include "video_display.h"
|
|
#include "visual_tool_clip.h"
|
|
|
|
|
|
/// @brief Constructor
|
|
/// @param _parent
|
|
///
|
|
VisualToolClip::VisualToolClip(VideoDisplay *parent, VideoState const& video, wxToolBar *)
|
|
: VisualTool(parent, video)
|
|
, curX1(0)
|
|
, curY1(0)
|
|
, curX2(video.w)
|
|
, curY2(video.h)
|
|
, inverse(false)
|
|
{
|
|
AssDialogue *line = GetActiveDialogueLine();
|
|
if (line) GetLineClip(line,curX1,curY1,curX2,curY2,inverse);
|
|
}
|
|
|
|
/// @brief Draw
|
|
void VisualToolClip::Draw() {
|
|
// Get current line
|
|
AssDialogue *line = GetActiveDialogueLine();
|
|
if (!line) return;
|
|
|
|
// Get position
|
|
if (!dragging && !holding) GetLineClip(line,curX1,curY1,curX2,curY2,inverse);
|
|
int dx1 = curX1;
|
|
int dy1 = curY1;
|
|
int dx2 = curX2;
|
|
int dy2 = curY2;
|
|
|
|
// Draw rectangle
|
|
SetLineColour(colour[3],1.0f,2);
|
|
SetFillColour(colour[3],0.0f);
|
|
DrawRectangle(dx1,dy1,dx2,dy2);
|
|
|
|
// Draw outside area
|
|
SetLineColour(colour[3],0.0f);
|
|
SetFillColour(wxColour(0,0,0),0.5f);
|
|
if (inverse) {
|
|
DrawRectangle(dx1,dy1,dx2,dy2);
|
|
}
|
|
else {
|
|
DrawRectangle(0,0,video.w,dy1);
|
|
DrawRectangle(0,dy2,video.w,video.h);
|
|
DrawRectangle(0,dy1,dx1,dy2);
|
|
DrawRectangle(dx2,dy1,video.w,dy2);
|
|
}
|
|
|
|
// Draw circles
|
|
SetLineColour(colour[0]);
|
|
SetFillColour(colour[1],0.5);
|
|
if (CanDrag()) DrawAllFeatures();
|
|
else {
|
|
DrawCircle(dx1,dy1,4);
|
|
DrawCircle(dx2,dy1,4);
|
|
DrawCircle(dx2,dy2,4);
|
|
DrawCircle(dx1,dy2,4);
|
|
}
|
|
}
|
|
|
|
/// @brief Start holding
|
|
void VisualToolClip::InitializeHold() {
|
|
startX = video.x;
|
|
startY = video.y;
|
|
curDiag->StripTag(L"\\clip");
|
|
curDiag->StripTag(L"\\iclip");
|
|
}
|
|
|
|
|
|
|
|
/// @brief Update hold
|
|
///
|
|
void VisualToolClip::UpdateHold() {
|
|
// Coordinates
|
|
curX1 = startX;
|
|
curY1 = startY;
|
|
curX2 = video.x;
|
|
curY2 = video.y;
|
|
|
|
// Make sure 1 is smaller than 2
|
|
if (curX1 > curX2) IntSwap(curX1,curX2);
|
|
if (curY1 > curY2) IntSwap(curY1,curY2);
|
|
|
|
// Limit to video area
|
|
curX1 = MID(0,curX1,video.w);
|
|
curX2 = MID(0,curX2,video.w);
|
|
curY1 = MID(0,curY1,video.h);
|
|
curY2 = MID(0,curY2,video.h);
|
|
|
|
// Features
|
|
if (CanDrag()) PopulateFeatureList();
|
|
}
|
|
|
|
|
|
|
|
/// @brief Commit hold
|
|
///
|
|
void VisualToolClip::CommitHold() {
|
|
parent->ToScriptCoords(&curX1, &curY1);
|
|
parent->ToScriptCoords(&curX2, &curY2);
|
|
if (inverse)
|
|
SetOverride(L"\\iclip",wxString::Format(L"(%i,%i,%i,%i)",curX1,curY1,curX2,curY2));
|
|
else
|
|
SetOverride(L"\\clip",wxString::Format(L"(%i,%i,%i,%i)",curX1,curY1,curX2,curY2));
|
|
}
|
|
|
|
|
|
|
|
/// @brief Populate feature list
|
|
///
|
|
void VisualToolClip::PopulateFeatureList() {
|
|
// Clear
|
|
if (features.size() != 4) {
|
|
features.clear();
|
|
features.resize(4);
|
|
}
|
|
|
|
// Top-left
|
|
int i = 0;
|
|
features[i].x = curX1;
|
|
features[i].y = curY1;
|
|
features[i].brother[0] = 1;
|
|
features[i].brother[1] = 2;
|
|
features[i].brother[2] = 3;
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
i++;
|
|
|
|
// Top-right
|
|
features[i].x = curX2;
|
|
features[i].y = curY1;
|
|
features[i].brother[0] = 0;
|
|
features[i].brother[1] = 3;
|
|
features[i].brother[2] = 2;
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
i++;
|
|
|
|
// Bottom-left
|
|
features[i].x = curX1;
|
|
features[i].y = curY2;
|
|
features[i].brother[0] = 3;
|
|
features[i].brother[1] = 0;
|
|
features[i].brother[2] = 1;
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
i++;
|
|
|
|
// Bottom-right
|
|
features[i].x = curX2;
|
|
features[i].y = curY2;
|
|
features[i].brother[0] = 2;
|
|
features[i].brother[1] = 1;
|
|
features[i].brother[2] = 0;
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
i++;
|
|
}
|
|
|
|
|
|
|
|
/// @brief Initialize
|
|
/// @param feature
|
|
///
|
|
void VisualToolClip::InitializeDrag(VisualDraggableFeature &feature) {
|
|
curDiag = GetActiveDialogueLine();
|
|
curDiag->StripTag(L"\\clip");
|
|
curDiag->StripTag(L"\\iclip");
|
|
}
|
|
|
|
|
|
|
|
/// @brief Update drag
|
|
/// @param feature
|
|
///
|
|
void VisualToolClip::UpdateDrag(VisualDraggableFeature &feature) {
|
|
// Update brothers
|
|
features[feature.brother[0]].y = feature.y;
|
|
features[feature.brother[1]].x = feature.x;
|
|
|
|
// Get "cur" from features
|
|
curX1 = features[0].x;
|
|
curX2 = features[3].x;
|
|
curY1 = features[0].y;
|
|
curY2 = features[3].y;
|
|
|
|
// Make sure p1 < p2
|
|
if (curX1 > curX2) IntSwap(curX1,curX2);
|
|
if (curY1 > curY2) IntSwap(curY1,curY2);
|
|
}
|
|
|
|
|
|
|
|
/// @brief Done dragging
|
|
/// @param feature
|
|
///
|
|
void VisualToolClip::CommitDrag(VisualDraggableFeature &feature) {
|
|
CommitHold();
|
|
}
|