Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PlayerSubresyncBar.h « mpc-hc « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 331456de0352dc5f212d8f13e1d5746708d78629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
 * (C) 2003-2006 Gabest
 * (C) 2006-2015 see Authors.txt
 *
 * This file is part of MPC-HC.
 *
 * MPC-HC is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * MPC-HC 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#pragma once

#include <afxcview.h>
#include <vector>
#include <map>
#include "EventDispatcher.h"
#include "PlayerBar.h"
#include "PlayerListCtrl.h"
#include "../Subtitles/RTS.h"
#include "../Subtitles/VobSubFile.h"


// CPlayerSubresyncBar

class CPlayerSubresyncBar : public CPlayerBar
{
    DECLARE_DYNAMIC(CPlayerSubresyncBar)

private:
    CString m_strYes, m_strNo;
    CString m_strYesMenu, m_strNoMenu;

    CPlayerListCtrl m_list;

    CMainFrame* m_pMainFrame;

    CFont m_font;
    void ScaleFont();

    int m_itemHeight = 0;
    EventClient m_eventc;
    void EventCallback(MpcEvent ev);

    CCritSec* m_pSubLock;
    CComPtr<ISubStream> m_pSubStream;
    double m_fps;

    int m_lastSegment;
    REFERENCE_TIME m_rt;

    enum {
        // TEXTSUB
        COL_START = 0,
        COL_END,
        COL_PREVSTART,
        COL_PREVEND,
        COL_TEXT,
        COL_STYLE,
        COL_FONT,
        COL_CHARSET,
        COL_UNICODE,
        COL_LAYER,
        COL_ACTOR,
        COL_EFFECT,
        COL_COUNT_TEXTSUB,
        // VOBSUB same as TEXTSUB
        COL_VOBID = COL_TEXT,
        COL_CELLID,
        COL_FORCED,
        COL_COUNT_VOBSUB
    };

    enum MODE {
        NONE = 0,
        VOBSUB,
        TEXTSUB
    };
    MODE m_mode;

    std::multimap<int, size_t> m_newStartsIndex;
    struct SubTime {
        int orgStart, newStart, orgEnd, newEnd;
        std::multimap<int, size_t>::iterator itIndex;
    };
    std::vector<SubTime> m_subtimes;

    CSimpleTextSubtitle m_sts;
    CAtlArray<CVobSubFile::SubPos> m_vobSub;

    struct DisplayData {
        int tStart, tPrevStart, tEnd, tPrevEnd;
        int flags;
    };
    std::vector<DisplayData> m_displayData;
    CString m_displayBuffer;

    int GetStartTime(int iItem);
    int GetEndTime(int iItem);

    void UpdatePreview();

    enum {
        TSMOD = 1,
        TEMOD = 2,
        TSADJ = 4,
        TEADJ = 8,
        TSEP  = 0x80000000
    };

    void SetSTS0(int& start, int end, int ti0);
    void SetSTS1(int& start, int end, int ti0, double m, int i0);

    void GetCheck(int iItem, bool& fStartMod, bool& fEndMod, bool& fStartAdj, bool& fEndAdj) const;
    void SetCheck(int iItem, bool fStart, bool fEnd);

    bool ModStart(int iItem, int t, bool fReset = false);
    bool ModEnd(int iItem, int t, bool fReset = false);

    void OnGetDisplayInfoTextSub(LV_ITEM* pItem);
    void OnGetDisplayInfoVobSub(LV_ITEM* pItem);

public:
    CPlayerSubresyncBar(CMainFrame* pMainFrame);
    virtual ~CPlayerSubresyncBar();

    BOOL Create(CWnd* pParentWnd, UINT defDockBarID, CCritSec* pSubLock);

    virtual void ReloadTranslatableResources();

    void SetTime(REFERENCE_TIME rt);
    void SetFPS(double fps);

    void SetSubtitle(ISubStream* pSubStream, double fps);
    void ReloadSubtitle();
    void ResetSubtitle();
    void SaveSubtitle();

    int FindNearestSub(REFERENCE_TIME& rtPos, bool bForward);
    bool ShiftSubtitle(int nItem, long lValue, REFERENCE_TIME& rtPos);
    bool SaveToDisk();

protected:
    virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
    virtual BOOL PreTranslateMessage(MSG* pMsg);

    bool HandleShortCuts(const MSG* pMsg);

    DECLARE_MESSAGE_MAP()

    void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
    afx_msg void OnSize(UINT nType, int cx, int cy);
    afx_msg void OnGetDisplayInfo(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnBeginlabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnDolabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnEndlabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnRclickList(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnNMDblclkList(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnLvnKeydownList(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnCustomdrawList(NMHDR* pNMHDR, LRESULT* pResult);
};