Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Dynamic scenes in Isaac

Isaac 2D  is a C++ framework based on SFML(Simple and Fast Multimedia Library) and Boost C++ Libraries that provides support for an easy development and understandable(flexible) structure even in complex scenarios for application and games.  Also, Issac it is a multi-platform library, your applications or games can compile and run on the most common operating systems: Windows, Linux, Mac OS X.


Welcome to the "Dynamic scenes in Isaac" tutorial, please make sure that you read the previous tutorials before starting reading this one. In this article I'm going to continue with the scenes that we developed in the last tutorial in order to introduce some new concepts that are available in Isaac.

So far we worked only with static scenes, today I am going to show you how to work with dynamic scenes. There are a lot of differences between static and dynamic scenes, a dynamic one has more then one processing elements, if we see the update method as a processing element. In the next examples I am going to show you how you can use dynamic scenes in your project. First, let's create a new class and name it DynScene.

The Header:

class DynScene : public isaac::IDynamicScene
{
public:
   DynScene(std::string ac_szSceneName);

   void mp_DefineProcess() const;

   ~DynScene();
};

The Source:

DynScene::DynScene(std::string ac_szSceneName) :
  isaac::IDynamicScene(ac_szSceneName)
{
   ;
}

void DynScene::mp_DefineProcess() const
{
   ;
}

DynScene::~DynScene()
{
   ;
}

The header is very simple, a single method that we need to define. Well, in this method all the needed processes are going to be defined, you can see a process like a mini scene, that has an active time or it is active as long as the dynamic scene is active. So far in Isaac there are defined 4 process types:

  1. Permanent -  this type of process is active as long as the dynamic scene is active
  2. PermanentWithStop - this process is active when the dynamic scene is activated, but you can define it a local trigger in order to stop it
  3. Continuous - the Continuous process needs a start and a stop trigger defined
  4. OneTimeProcess - this process it will run only once when the start trigger is disturbed

Now, let's see how we can define a process and how we can use it. First let's create a process, add a new class to your project and name it "ProcessOne".

The header:

#pragma once
#include 

class ProcessOne : public isaac::IProcessingElement
{
  std::shared_ptr<:convexshape> mv_xShape;

public:
  ProcessOne(isaac::IProcessingElement::ProcessType ac_enumPEType,
    std::string ac_szSceneName);

  void mp_InitProcess(std::shared_ptr<:renderwindow> ac_xMainWindow,
    std::shared_ptr& ac_xTransientData);

  void mp_InitTriggers(std::shared_ptr<:ctriggercollection>& ac_xGlobalTriggersColl,
    const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl);

  void mp_UpdateScene(std::shared_ptr<:renderwindow> ac_xMainWindow,
    std::shared_ptr& ac_xTransientData,
    sf::Event av_eventSFMLEvent,
    bool& av_bReturnedBool_WindowClosed);

  void mp_DrawScene(std::shared_ptr<:renderwindow> ac_xMainWindow) const;

  void mp_Release(std::shared_ptr& av_xTransientData, std::string ac_szTriggerName);

  ~ProcessOne();
};

You can see that it is almost identical with the scene header, this is because this process as I said before is a mini-scene. Now, let's draw something to see how this process is behaving.

#include "ProcessOne.h"
#include 
#include 

ProcessOne::ProcessOne(isaac::IProcessingElement::ProcessType ac_enumPEType,
  std::string ac_szSceneName) :
  isaac::IProcessingElement(ac_enumPEType, ac_szSceneName)
{
  ;
}

void ProcessOne::mp_InitProcess(std::shared_ptr<:renderwindow> ac_xMainWindow,
  std::shared_ptr& ac_xTransientData)
{
  mv_xShape = std::make_shared<:convexshape>();

  mv_xShape->setPointCount(3);
  mv_xShape->setPoint(0, sf::Vector2f(0, 0));
  mv_xShape->setPoint(1, sf::Vector2f(0, 10));
  mv_xShape->setPoint(2, sf::Vector2f(25, 5));
  mv_xShape->setOutlineColor(sf::Color::Red);
  mv_xShape->setOutlineThickness(5);
  mv_xShape->setPosition(300, 300);

  std::cout & ac_xGlobalTriggersColl,
  const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl)
{
  ;
}

void ProcessOne::mp_UpdateScene(std::shared_ptr<:renderwindow> ac_xMainWindow,
  std::shared_ptr& ac_xTransientData,
  sf::Event av_eventSFMLEvent,
  bool& av_bReturnedBool_WindowClosed)
{
  mv_xShape->move(1, 0);
}

void ProcessOne::mp_DrawScene(std::shared_ptr<:renderwindow> ac_xMainWindow) const
{
  ac_xMainWindow->draw(*mv_xShape);
}

void ProcessOne::mp_Release(std::shared_ptr& av_xTransientData, std::string ac_szTriggerName)
{
  ;
}

ProcessOne::~ProcessOne()
{
  ;
}

Now we have a process available, is time to integrate it into the dynamic scene, to do this we will define it inside "mp_DefineProcess" method:

void DynScene::mp_DefineProcess() const
{
   std::cout (isaac::IProcessingElement::en_Permanent, "FirstProcess");

   mp_AddProcessingElement(firstProcess);
}

Because this one is defined like a Permanent process no trigger are needed to be defined. Now we need to instantiate the scene alongside other ones in the "StaticAspect" class.

void StaticAspect::mp_DefineScenes() const
{
  const auto& firstScene = std::make_shared("SceneOne");
  const auto& secondScene = std::make_shared("SceneTwo");
  const auto& fatherScene = std::make_shared("FatherScene");
  const auto& dynScene = std::make_shared("DynScene");

  firstScene->mp_SetFatherScene(fatherScene);
  secondScene->mp_SetFatherScene(fatherScene);

  mp_AddScene(firstScene);
  mp_AddScene(secondScene);
  mp_AddScene(fatherScene);
  mp_AddScene(dynScene);
}

No triggers are defined for this scene, this means that we are not going to see if the processing element that we just created is working or not. So, let's instantiate another trigger for this scene in order to create a transition from the second scene to the dynamic scene. We will use "KeyPressTrigger" - the trigger will activate when a specified key is pressed.

void StaticAspect::mp_DefineTriggers() const
{
  const auto& firstTrigger = std::make_shared<:celementpositiontrigger>("FirstTrigger");
  const auto& secondTrigger = std::make_shared("SecondTrigger");
  const auto& thirdTrigger = std::make_shared<:ckeypresstrigger>("ThirdTrigger");

  mp_AddTrigger(firstTrigger);
  mp_AddTrigger(secondTrigger);
  mp_AddTrigger(thirdTrigger);
}

Now define the transition:

void DynamicAspect::mp_DefineScenesTransitions() const
{
  const auto& firstTransition = mf_xDefineTransition(("SceneOne"), ("FirstTrigger"), ("SceneTwo"));
  const auto& secondTransition = mf_xDefineTransition(("SceneTwo"), ("SecondTrigger"), ("SceneOne"));
  const auto& thirdTransition = mf_xDefineTransition(("SceneTwo"), ("ThirdTrigger"), ("DynScene"));

  mp_AddTransition( "FirstTransition", firstTransition);
  mp_AddTransition("SecondTransition", secondTransition);
  mp_AddTransition("Thirdransition", thirdTransition);
}

The trigger and the transition are in place, we need to initialize the trigger now, we will do this in "SceneTwo":

void SceneTwo::mp_InitTriggers(std::shared_ptr<:ctriggercollection>& ac_xGlobalTriggersColl)
{
  // This is an ITrigger instance
  const auto& lc_pTrigger = ac_xGlobalTriggersColl->mf_xGetTriggerByName(("SecondTrigger"));
  // we need to cast it to our trigger type
  const auto& lc_pPositionTrigger = std::static_pointer_cast(lc_pTrigger);
  // init the trigger
  lc_pPositionTrigger->mp_InitTrigger(circle, sf::Vector2f(4, 4));

  // This is an ITrigger instance
  const auto& lc_pTriggerTwo = ac_xGlobalTriggersColl->mf_xGetTriggerByName(("ThirdTrigger"));
  // we need to cast it to our trigger type
  const auto& lc_pTriggerKey = std::static_pointer_cast(lc_pTriggerTwo);
  // init the trigger
  lc_pTriggerKey->mp_InitTrigger(sf::Keyboard::Space);
}

You can see that the "TriggerTwo" is the "KeyPressTrigger" and it is initialized with the SPACE key. So, if you are in scene two and press SPACE you will be redirected to the dynamic scene that will initialize the permanent process element and you should see the convex element that we drew.

Now we have the dynamic scene available on the screen, let's play a little bit with it and create other processing elements to see how they work. So, create another process and name it "ProcessTwo".

The header:

#pragma once
#include 

class ProcessTwo : public isaac::IProcessingElement
{
  std::shared_ptr<:rectangleshape> mv_xShape;

public:
  ProcessTwo(isaac::IProcessingElement::ProcessType ac_enumPEType,
    std::string ac_szSceneName);

  void mp_InitProcess(std::shared_ptr<:renderwindow> ac_xMainWindow,
    std::shared_ptr& ac_xTransientData);

  void mp_InitTriggers(std::shared_ptr<:ctriggercollection>& ac_xGlobalTriggersColl,
    const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl);

  void mp_UpdateScene(std::shared_ptr<:renderwindow> ac_xMainWindow,
    std::shared_ptr& ac_xTransientData,
    sf::Event av_eventSFMLEvent,
    bool& av_bReturnedBool_WindowClosed);

  void mp_DrawScene(std::shared_ptr<:renderwindow> ac_xMainWindow) const;

  void mp_Release(std::shared_ptr& av_xTransientData, std::string ac_szTriggerName);

  ~ProcessTwo();
};

The source:

#include "ProcessTwo.h"
#include 
#include 
#include 


ProcessTwo::ProcessTwo(isaac::IProcessingElement::ProcessType ac_enumPEType,
  std::string ac_szSceneName) :
  isaac::IProcessingElement(ac_enumPEType, ac_szSceneName)
{
  ;
}

void ProcessTwo::mp_InitProcess(std::shared_ptr<:renderwindow> ac_xMainWindow,
  std::shared_ptr& ac_xTransientData)
{
  mv_xShape = std::make_shared<:rectangleshape>(sf::Vector2f(100, 100));
  mv_xShape->setFillColor(sf::Color::Green);
  mv_xShape->setPosition(200, 200);

  std::cout & ac_xGlobalTriggersColl,
  const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl)
{
  ;
}

void ProcessTwo::mp_UpdateScene(std::shared_ptr<:renderwindow> ac_xMainWindow,
  std::shared_ptr& ac_xTransientData,
  sf::Event av_eventSFMLEvent,
  bool& av_bReturnedBool_WindowClosed)
{
}

void ProcessTwo::mp_DrawScene(std::shared_ptr<:renderwindow> ac_xMainWindow) const
{
  ac_xMainWindow->draw(*mv_xShape);
}

void ProcessTwo::mp_Release(std::shared_ptr& av_xTransientData, std::string ac_szTriggerName)
{

}

ProcessTwo::~ProcessTwo()
{
}

This is the second processing element and it only creates a green rectangle on the screen when he will be activated. Now we need to make sure that the dynamic scene is aware of the existence of it. To do this we are going to define it into the dynamic scene class:

void DynScene::mp_DefineProcess() const
{
 std::cout (isaac::IProcessingElement::en_Permanent, "FirstProcess");
  const auto& seconndProcess = std::make_shared(isaac::IProcessingElement::en_PermanentWithStop, "SecondProcess");

  std::shared_ptr firstDynTrigger = std::make_shared(("firstDynTrigger"));

  seconndProcess->mp_addStopTrigger(firstDynTrigger);

  mp_AddProcessingElement(firstProcess);
  mp_AddProcessingElement(seconndProcess);
}

We added the second process to the dynamic scene and made it a Permanent with stop process, this means that the process will start once the dynamic scene is activated but it has the possibility to stop once the stop trigger is disturbed. Because of that a trigger was also defined ("CElementPositionTrigger") and when this trigger it will activate the processing element will stop. So, what we are going to do: when the red-withe moving triangle that is defined in the first processing element will reach a given position the second process will stop. The trigger is defined, now the only thing left to do is to initialize this trigger inside the first processing element.

void ProcessOne::mp_InitTriggers(std::shared_ptr<:ctriggercollection>& ac_xGlobalTriggersColl,
  const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl)
{
  const auto& lv_pTrigger = ac_xLoacalTriggersColl->mf_xGetTriggerByName(("firstDynTrigger"));
  const auto& lv_pPosition =  std::static_pointer_cast(lv_pTrigger);

  const isaac::CElementPositionTrigger::PositionProp prop = { isaac::en_GraterThen, isaac::Axis::en_X, 500.0 };

  lv_pPosition->mp_InitTrigger(mv_xShape.get(), prop);
}

The trigger is initialized, you can now start the executable and see what is happening when you activate the dynamic scene.
Let's continue with this exercise and add another processing element to our application, name it "ProcessThree"

The header:

#pragma once
#include 

class ProcessThree : public isaac::IProcessingElement
{
  std::shared_ptr<:rectangleshape> mv_xShape;

public:
  ProcessThree(isaac::IProcessingElement::ProcessType ac_enumPEType,
    std::string ac_szSceneName);

  void mp_InitProcess(std::shared_ptr<:renderwindow> ac_xMainWindow,
    std::shared_ptr& ac_xTransientData);

  void mp_InitTriggers(std::shared_ptr<:ctriggercollection>& ac_xGlobalTriggersColl,
    const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl);

  void mp_UpdateScene(std::shared_ptr<:renderwindow> ac_xMainWindow,
    std::shared_ptr& ac_xTransientData,
    sf::Event av_eventSFMLEvent,
    bool& av_bReturnedBool_WindowClosed);

  void mp_DrawScene(std::shared_ptr<:renderwindow> ac_xMainWindow) const;

  void mp_Release(std::shared_ptr& av_xTransientData, std::string ac_szTriggerName);

  ~ProcessThree();
};

The Source:

#include "ProcessThree.h"
#include 


ProcessThree::ProcessThree(isaac::IProcessingElement::ProcessType ac_enumPEType,
  std::string ac_szSceneName) :
  isaac::IProcessingElement(ac_enumPEType, ac_szSceneName)
{
  ;
}

void ProcessThree::mp_InitProcess(std::shared_ptr<:renderwindow> ac_xMainWindow,
  std::shared_ptr& ac_xTransientData)
{
  mv_xShape = std::make_shared<:rectangleshape>(sf::Vector2f(200, 200));
  mv_xShape->setFillColor(sf::Color::Blue);
  mv_xShape->setPosition(0, 0);

  std::cout & ac_xGlobalTriggersColl,
  const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl)
{

}

void ProcessThree::mp_UpdateScene(std::shared_ptr<:renderwindow> ac_xMainWindow,
  std::shared_ptr& ac_xTransientData,
  sf::Event av_eventSFMLEvent,
  bool& av_bReturnedBool_WindowClosed)
{
}

void ProcessThree::mp_DrawScene(std::shared_ptr<:renderwindow> ac_xMainWindow) const
{
  ac_xMainWindow->draw(*mv_xShape);
}

void ProcessThree::mp_Release(std::shared_ptr& av_xTransientData, std::string ac_szTriggerName)
{

}

ProcessThree::~ProcessThree()
{
}

This will be a continuous process, so it will need a start and a stop trigger, let's see how we are going to do this in the dynamic scene:

void DynScene::mp_DefineProcess() const
{
  std::cout (isaac::IProcessingElement::en_Permanent, "FirstProcess");
  const auto& seconndProcess = std::make_shared(isaac::IProcessingElement::en_PermanentWithStop, "SecondProcess");
  const auto& thirdProcess = std::make_shared(isaac::IProcessingElement::en_Continuous, "ThirdProcess");

  std::shared_ptr firstDynTrigger = std::make_shared(("firstDynTrigger"));
  std::shared_ptr secondDynTrigger = std::make_shared(("secondDynTrigger"));
  std::shared_ptr thirdDynTrigger = std::make_shared(("thirdDynTrigger"));

  seconndProcess->mp_addStopTrigger(firstDynTrigger);
  thirdProcess->mp_addStartTrigger(secondDynTrigger);
  thirdProcess->mp_addStopTrigger(thirdDynTrigger);

  mp_AddProcessingElement(firstProcess);
  mp_AddProcessingElement(seconndProcess);
  mp_AddProcessingElement(thirdProcess);
}

We have all the triggers defined, we need to initialized them inthe second processing element. As you can see I used a "TimeTrigger" for the start and a "KeyPressTrigger" for the stop. That means that this process it will start after a given period of time and it will stop when we will press a key.Let's initialize the triggers:

void ProcessTwo::mp_InitTriggers(std::shared_ptr<:ctriggercollection>& ac_xGlobalTriggersColl,
  const std::shared_ptr<:ctriggercollection>& ac_xLoacalTriggersColl)
{
  const auto& lc_pTrigger = ac_xLoacalTriggersColl->mf_xGetTriggerByName(("secondDynTrigger"));
  const auto& lc_pTime = std::static_pointer_cast(lc_pTrigger);
  sf::Time lc_Time = sf::milliseconds(2000);
  lc_pTime->mp_InitTrigger(lc_Time);

  const auto& lc_pTriggerTwo = ac_xLoacalTriggersColl->mf_xGetTriggerByName(("thirdDynTrigger"));
  const auto& lc_pKeyTrigger = std::static_pointer_cast(lc_pTriggerTwo);
  lc_pKeyTrigger->mp_InitTrigger(sf::Keyboard::Escape);
}

Now the triggers are defined, you can try to run the application and see what is happening when you activate the dynamic scene.
You can try to do the same with the One Time Process and see how is working. For more information don't hesitate to contact me or write a comment. I will come back with more fun tutorials on the future. I hope you understand how Isaac works and I also hope that you will use it into your project. See you next time. Bye.



This post first appeared on HoriaCondrea, please read the originial post: here

Share the post

Dynamic scenes in Isaac

×

Subscribe to Horiacondrea

Get updates delivered right to your inbox!

Thank you for your subscription

×