mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
9e686e2a87
* cmake+ci: run clang-tidy
* Remove DESCRIPTION from LEGO1/LegoOmni.mingw.def
* Add initial .clang-tidy and fixes
* fix file perms
* Comment out DESCRIPTION
* Remove LegoEntity::~LegoEntity and MxPresenter::~MxPresenter from mingw's LEGO1.def
* Looks like clang is allergic to the libs in the directx5 SDK
* Update .clang-tidy
* Fix typo in .clang-tidy
* Attempt to generate an action error
* Revert "Attempt to generate an action error"
This reverts commit 96c4c65fed
.
* cmake: test with -Wparentheses + optionally with -Werror
* ci: -k0 is a Ninja argument
* Use -Werror only for msys2 builds
* cmake: only emit warnings for specific warnings
* cmake: and don't do -Werror/-WX anymore
* Fix warnings
* Fix mingw warnings
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
#ifndef MXSTREAMLIST_H
|
|
#define MXSTREAMLIST_H
|
|
|
|
#include "mxdsstreamingaction.h"
|
|
#include "mxdssubscriber.h"
|
|
#include "mxnextactiondatastart.h"
|
|
#include "mxstl/stlcompat.h"
|
|
|
|
template <class T>
|
|
class MxStreamList : public list<T> {
|
|
public:
|
|
MxBool PopFront(T& p_obj)
|
|
{
|
|
if (this->empty()) {
|
|
return FALSE;
|
|
}
|
|
|
|
p_obj = this->front();
|
|
this->pop_front();
|
|
return TRUE;
|
|
}
|
|
};
|
|
|
|
// SIZE 0x0c
|
|
class MxStreamListMxDSAction : public MxStreamList<MxDSAction*> {
|
|
public:
|
|
MxDSAction* Find(MxDSAction* p_action, MxBool p_delete);
|
|
|
|
// There chance this list actually holds MxDSStreamingListAction
|
|
// instead of MxDSAction. Until then, we use this helper.
|
|
MxBool PopFrontStreamingAction(MxDSStreamingAction*& p_obj)
|
|
{
|
|
if (empty()) {
|
|
return FALSE;
|
|
}
|
|
|
|
p_obj = (MxDSStreamingAction*) front();
|
|
pop_front();
|
|
return TRUE;
|
|
}
|
|
};
|
|
|
|
// SIZE 0x0c
|
|
class MxStreamListMxNextActionDataStart : public MxStreamList<MxNextActionDataStart*> {
|
|
public:
|
|
MxNextActionDataStart* Find(MxU32 p_id, MxS16 p_value);
|
|
MxNextActionDataStart* FindAndErase(MxU32 p_id, MxS16 p_value);
|
|
};
|
|
|
|
// SIZE 0x0c
|
|
class MxStreamListMxDSSubscriber : public MxStreamList<MxDSSubscriber*> {
|
|
public:
|
|
MxDSSubscriber* Find(MxDSObject* p_object);
|
|
};
|
|
|
|
#endif // MXSTREAMLIST_H
|