X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FMapState.cpp;h=37ccc72246c1c62c84bac7c77e75af59ffe77107;hb=7c43158af1abf38fa896a442cb3c6d8a5bc630e7;hp=a716f950e8f0977ebbf14cf456bf64bbf7997f1d;hpb=3a8e247d08c44419e632f575d2c6a919ae42a236;p=l2e.git diff --git a/src/map/MapState.cpp b/src/map/MapState.cpp index a716f95..37ccc72 100644 --- a/src/map/MapState.cpp +++ b/src/map/MapState.cpp @@ -349,14 +349,8 @@ bool MapState::CheckMoveTrigger() { } void MapState::RunTrigger(Trigger &trigger) { - // TODO: run trigger script - if (trigger.map) { - ctrl->PushState(new ColorFade(this, 0, 500, true)); - ctrl->PushState(new TransitionState(this, trigger.map, trigger.target)); - ColorFade *fadeOut(new ColorFade(this, 0, 500, false)); - fadeOut->SetLeadOutTime(500); - ctrl->PushState(fadeOut); - } + if (!trigger.HasScript()) return; + runner.Run(*this, trigger.GetScript()); } void MapState::UpdateFollower(Entity &e) { @@ -418,6 +412,7 @@ void MapState::LoadMap(Map *m) { map = m; for (Entity *e(m->EntitiesBegin()), *end(m->EntitiesEnd()); e != end; ++e) { entities.push_back(e); + e->ResetPosition(map->Tileset()->Size()); } for (Entity *e(controlled); e; e = e->Follower()) { entities.push_back(e); @@ -446,4 +441,18 @@ bool MapState::ZCompare(const Entity *lhs, const Entity *rhs) { return lhs->Position().Y() < rhs->Position().Y(); } + +void MapState::HandleSyscall(common::ScriptRunner &r) { + switch (r.Integer0()) { + case TRANSITION: { + ctrl->PushState(new ColorFade(this, 0, 500, true)); + ctrl->PushState(new TransitionState(this, reinterpret_cast(r.Address0()), r.Vector0())); + ColorFade *fadeOut(new ColorFade(this, 0, 500, false)); + fadeOut->SetLeadOutTime(500); + ctrl->PushState(fadeOut); + break; + } + } +} + }