summaryrefslogtreecommitdiffstats
path: root/pokescripting/MapTrainerWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokescripting/MapTrainerWrapper.h')
-rw-r--r--pokescripting/MapTrainerWrapper.h26
1 files changed, 11 insertions, 15 deletions
diff --git a/pokescripting/MapTrainerWrapper.h b/pokescripting/MapTrainerWrapper.h
index 8a3e061d..9d74709e 100644
--- a/pokescripting/MapTrainerWrapper.h
+++ b/pokescripting/MapTrainerWrapper.h
@@ -27,6 +27,7 @@
namespace Pokescripting
{
// Forward declarations
+class MapWrapper;
class MapTrainerTeamMemberWrapper;
class TrainerWrapper;
@@ -35,23 +36,18 @@ class POKESCRIPTING_EXPORT MapTrainerWrapper : public ObjectWrapper
Q_OBJECT
public:
- static MapTrainerWrapper* create(const Pokemod::MapTrainer* trainer, QObject* parent)
- {
- if (!m_instances.contains(trainer->id()))
- m_instances[trainer->id()] = new MapTrainerWrapper(trainer, parent);
- return qobject_cast<MapTrainerWrapper*>(m_instances[trainer->id()]);
- }
- public slots:
- QString name() const;
- TrainerWrapper* trainerClass();
- int numberFight() const;
- MapTrainerTeamMemberWrapper* leadTeamMember();
- Pokemod::Script script() const;
+ static MapTrainerWrapper* create(const Pokemod::MapTrainer* trainer, MapWrapper* parent);
- MapTrainerTeamMemberWrapper* teamMember(const int index);
- int teamMemberCount() const;
+ Q_SCRIPTABLE QString name() const;
+ Q_SCRIPTABLE TrainerWrapper* trainerClass();
+ Q_SCRIPTABLE int numberFight() const;
+ Q_SCRIPTABLE MapTrainerTeamMemberWrapper* leadTeamMember();
+ Q_SCRIPTABLE Pokemod::Script script() const;
+
+ Q_SCRIPTABLE MapTrainerTeamMemberWrapper* teamMember(const int index);
+ Q_SCRIPTABLE int teamMemberCount() const;
private:
- MapTrainerWrapper(const Pokemod::MapTrainer* trainer, QObject* parent);
+ MapTrainerWrapper(const Pokemod::MapTrainer* trainer, MapWrapper* parent);
MapTrainerWrapper& operator=(const MapTrainerWrapper& rhs);
const Pokemod::MapTrainer* m_trainer;