diff options
Diffstat (limited to 'game/background/BackgroundSubScene.cpp')
-rw-r--r-- | game/background/BackgroundSubScene.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/game/background/BackgroundSubScene.cpp b/game/background/BackgroundSubScene.cpp new file mode 100644 index 0000000..4bbd977 --- /dev/null +++ b/game/background/BackgroundSubScene.cpp @@ -0,0 +1,37 @@ +#include "BackgroundSubScene.h" +#include "AquariumScript.h" +#include "AquariumSubScene.h" +#include "ForestSubScene.h" +#include "HallwayScript.h" +#include "HallwaySubScene.h" +#include "StartSubScene.h" + +#include <crepe/api/BehaviorScript.h> +#include <crepe/api/Color.h> +#include <crepe/api/Scene.h> + +using namespace crepe; +using namespace std; + +BackgroundSubScene::BackgroundSubScene(Scene & scn) { + StartSubScene start; + HallwaySubScene hallway; + ForestSubScene forest; + AquariumSubScene aquarium; + + float begin_x = 400; + + begin_x = start.create(scn, begin_x); + + begin_x = hallway.create(scn, begin_x, 1, Color::YELLOW); + + begin_x = forest.create(scn, begin_x, "1"); + + begin_x += 3000; + + begin_x = aquarium.create(scn, begin_x); + + GameObject scripts = scn.new_object("scrips_background", "background"); + scripts.add_component<BehaviorScript>().set_script<HallwayScript>(); + scripts.add_component<BehaviorScript>().set_script<AquariumScript>(); +} |