Flappy-Bird_GX2/src/system/AsyncDeleter.h

64 lines
1.7 KiB
C
Raw Normal View History

2016-10-05 16:03:29 +02:00
/****************************************************************************
* Copyright (C) 2015 Dimok
*
* This program 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef _ASYNC_DELETER_H
#define _ASYNC_DELETER_H
#include <queue>
#include <gui/gui.h>
2016-10-05 16:03:29 +02:00
#include "CThread.h"
#include "CMutex.h"
2019-08-15 11:21:02 +02:00
class AsyncDeleter : public CThread {
2016-10-05 16:03:29 +02:00
public:
2019-08-15 11:21:02 +02:00
static void destroyInstance() {
delete deleterInstance;
deleterInstance = NULL;
2016-10-05 16:03:29 +02:00
}
2019-08-15 11:21:02 +02:00
class Element {
2016-10-05 16:03:29 +02:00
public:
Element() {}
2020-07-05 13:34:13 +02:00
2016-10-05 16:03:29 +02:00
virtual ~Element() {}
};
static void pushForDelete(GuiElement *e) {
2020-07-05 13:34:13 +02:00
if (!deleterInstance)
deleterInstance = new AsyncDeleter;
2016-10-05 16:03:29 +02:00
deleterInstance->deleteElements.push(e);
2019-08-15 11:21:02 +02:00
}
2016-10-05 16:03:29 +02:00
static void triggerDeleteProcess(void);
private:
AsyncDeleter();
2020-07-05 13:34:13 +02:00
2016-10-05 16:03:29 +02:00
virtual ~AsyncDeleter();
static AsyncDeleter *deleterInstance;
void executeThread(void);
bool exitApplication;
std::queue<GuiElement *> deleteElements;
std::queue<GuiElement *> realDeleteElements;
2016-10-05 16:03:29 +02:00
CMutex deleteMutex;
};
#endif // _ASYNC_DELETER_H