Revert "2.7.2 way of animating charmovie.cpp ported over"
This reverts commit 14ced5ce15
.
This commit is contained in:
parent
14ced5ce15
commit
5419641c1e
@ -29,15 +29,12 @@ public:
|
|||||||
|
|
||||||
void combo_resize(int w, int h);
|
void combo_resize(int w, int h);
|
||||||
|
|
||||||
void set_frame(QImage image);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
AOApplication *ao_app;
|
AOApplication *ao_app;
|
||||||
|
|
||||||
QMovie *m_movie;
|
QMovie *m_movie;
|
||||||
QVector<QImage> movie_frames;
|
QVector<QImage> movie_frames;
|
||||||
QTimer *preanim_timer;
|
QTimer *preanim_timer;
|
||||||
QTimer *ticker;
|
|
||||||
|
|
||||||
const int time_mod = 60;
|
const int time_mod = 60;
|
||||||
|
|
||||||
@ -49,13 +46,11 @@ private:
|
|||||||
|
|
||||||
bool play_once = true;
|
bool play_once = true;
|
||||||
|
|
||||||
bool preprocess = false;
|
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void done();
|
void done();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void movie_ticker();
|
void frame_change(int n_frame);
|
||||||
void timer_done();
|
void timer_done();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -13,16 +13,12 @@ AOCharMovie::AOCharMovie(QWidget *p_parent, AOApplication *p_ao_app) : QLabel(p_
|
|||||||
preanim_timer = new QTimer(this);
|
preanim_timer = new QTimer(this);
|
||||||
preanim_timer->setSingleShot(true);
|
preanim_timer->setSingleShot(true);
|
||||||
|
|
||||||
ticker = new QTimer(this);
|
connect(m_movie, SIGNAL(frameChanged(int)), this, SLOT(frame_change(int)));
|
||||||
ticker->setSingleShot(true);
|
|
||||||
|
|
||||||
connect(preanim_timer, SIGNAL(timeout()), this, SLOT(timer_done()));
|
connect(preanim_timer, SIGNAL(timeout()), this, SLOT(timer_done()));
|
||||||
connect(ticker, SIGNAL(timeout()), this, SLOT(movie_ticker()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOCharMovie::play(QString p_char, QString p_emote, QString emote_prefix)
|
void AOCharMovie::play(QString p_char, QString p_emote, QString emote_prefix)
|
||||||
{
|
{
|
||||||
preprocess = false;
|
|
||||||
QString emote_path;
|
QString emote_path;
|
||||||
QList<QString> pathlist;
|
QList<QString> pathlist;
|
||||||
pathlist = {
|
pathlist = {
|
||||||
@ -37,22 +33,30 @@ void AOCharMovie::play(QString p_char, QString p_emote, QString emote_prefix)
|
|||||||
if (file_exists(path))
|
if (file_exists(path))
|
||||||
{
|
{
|
||||||
emote_path = path;
|
emote_path = path;
|
||||||
if (emote_path.endsWith(".apng"))
|
|
||||||
preprocess = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
delete m_movie;
|
|
||||||
m_movie = new QMovie(this);
|
|
||||||
m_movie->stop();
|
m_movie->stop();
|
||||||
this->clear();
|
|
||||||
m_movie->setFileName(emote_path);
|
m_movie->setFileName(emote_path);
|
||||||
m_movie->jumpToFrame(0);
|
|
||||||
this->set_frame(m_movie->currentImage());
|
QImageReader *reader = new QImageReader(emote_path);
|
||||||
qDebug() << "playing file path: " << emote_path;
|
|
||||||
|
movie_frames.clear();
|
||||||
|
QImage f_image = reader->read();
|
||||||
|
while (!f_image.isNull())
|
||||||
|
{
|
||||||
|
if (m_flipped)
|
||||||
|
movie_frames.append(f_image.mirrored(true, false));
|
||||||
|
else
|
||||||
|
movie_frames.append(f_image);
|
||||||
|
f_image = reader->read();
|
||||||
|
}
|
||||||
|
|
||||||
|
delete reader;
|
||||||
|
|
||||||
this->show();
|
this->show();
|
||||||
ticker->start(m_movie->nextFrameDelay());
|
m_movie->start();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOCharMovie::play_pre(QString p_char, QString p_emote, int duration)
|
void AOCharMovie::play_pre(QString p_char, QString p_emote, int duration)
|
||||||
@ -147,43 +151,12 @@ void AOCharMovie::move(int ax, int ay)
|
|||||||
QLabel::move(x, y);
|
QLabel::move(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOCharMovie::movie_ticker()
|
void AOCharMovie::frame_change(int n_frame)
|
||||||
{
|
{
|
||||||
if(preprocess)
|
|
||||||
ticker->start(m_movie->nextFrameDelay());
|
|
||||||
|
|
||||||
if(m_movie->currentFrameNumber() == m_movie->frameCount() - 1)
|
if (movie_frames.size() > n_frame)
|
||||||
{
|
{
|
||||||
QString last_path = m_movie->fileName();
|
QPixmap f_pixmap = QPixmap::fromImage(movie_frames.at(n_frame));
|
||||||
delete m_movie;
|
|
||||||
m_movie = new QMovie(this);
|
|
||||||
m_movie->stop();
|
|
||||||
this->clear();
|
|
||||||
m_movie->setFileName(last_path);
|
|
||||||
m_movie->jumpToFrame(0);
|
|
||||||
if(play_once)
|
|
||||||
{
|
|
||||||
timer_done();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
m_movie->jumpToNextFrame();
|
|
||||||
}
|
|
||||||
this->set_frame(m_movie->currentImage());
|
|
||||||
// this->play_frame_sfx();
|
|
||||||
if(!preprocess){
|
|
||||||
ticker->start(m_movie->nextFrameDelay());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void AOCharMovie::set_frame(QImage image)
|
|
||||||
{
|
|
||||||
QPixmap f_pixmap;
|
|
||||||
if(m_flipped)
|
|
||||||
f_pixmap = QPixmap::fromImage(image.mirrored(true, false));
|
|
||||||
else
|
|
||||||
f_pixmap = QPixmap::fromImage(image);
|
|
||||||
auto aspect_ratio = Qt::KeepAspectRatio;
|
auto aspect_ratio = Qt::KeepAspectRatio;
|
||||||
|
|
||||||
if (f_pixmap.size().width() > f_pixmap.size().height())
|
if (f_pixmap.size().width() > f_pixmap.size().height())
|
||||||
@ -195,6 +168,13 @@ void AOCharMovie::set_frame(QImage image)
|
|||||||
this->setPixmap(f_pixmap.scaled(this->width(), this->height(), aspect_ratio, Qt::FastTransformation));
|
this->setPixmap(f_pixmap.scaled(this->width(), this->height(), aspect_ratio, Qt::FastTransformation));
|
||||||
|
|
||||||
QLabel::move(x + (this->width() - this->pixmap()->width())/2, y);
|
QLabel::move(x + (this->width() - this->pixmap()->width())/2, y);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (m_movie->frameCount() - 1 == n_frame && play_once)
|
||||||
|
{
|
||||||
|
preanim_timer->start(m_movie->nextFrameDelay());
|
||||||
|
m_movie->stop();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOCharMovie::timer_done()
|
void AOCharMovie::timer_done()
|
||||||
|
Loading…
Reference in New Issue
Block a user