10 min read

(For more resources on Game Development, see here.)

Before we start

As there is a large amount of ground to cover in this chapter, we’ll be moving quickly through steps similar to those we’ve done before. If it’s been a while since you’ve used Construct, then you may find it useful to read through a chapter or two again before continuing, because certain steps assume that you are able to complete acO ons we have performed in the past.

Multiplayer: getting your friends involved

We’re ready to start our next game, a multiplayer side-scrolling shooter, but before we add any shooO ng, we’ll need to have the multiplayer side-scroller part finished first. So let’s get to it!

Time for action – creating the game assets and title screen

The first thing we will need to do is to create our game content and create the first layout of the game, the title screen.

  1. First, draw up our player graphics and guns. We’ll want the torso to be a separate object from the legs for easier animation. Use red dots where the legs will be attached to as markers for image point placement later on. Also include drawings for three weapons: a pistol, an uzi, and a shotgun:
  2. Construct Game Development

  3. Next, we can draw up our enemies for the game. In this case, we’ll use an enemy robot with a turret arm that shoots balls of plasma:
  4. Construct Game Development

  5. We’ll also need some scenery and ground objects for the levels:
  6. Construct Game Development

  7. Finally, we’ll need a graphic to tell the player to go onto the next screen when no enemies are present:
  8. Construct Game Development

  9. Now we can move on to starting our game. Create a new project and set its Name to SideShooter, and enter your Creator name. Then set the window size to 800 by 600.
  10. Create the global variables CanGoNext, CurrentScreen, NumPlayers, P1Lives, P2Lives, GameWonLost, and RespawnY with values 0, 0, 1, 3, 3, 0, and 100 respectively.
  11. Following that, rename the first layout to Title and its event sheet to Title events .
  12. On this layout, create the layers Text, Buttons, and Background in top-to-bottom order.
  13. Selecting the Background layer, create a Panel object and name it Background before setting its top corner filters to Green and bottom corner filters to DarkGreen. Stretch this object to cover the whole of the layout and lock the layer.
  14. Now, on the Buttons layer, create a sprite and draw a box with the word Play in it.
  15. PosiO on this object in the center of the layout. This will be the start button for our game and should have the name btnPlay.
  16. Next, add the Mouse & Keyboard and XAudio2 objects into the layout and give them the global property.
  17. In order to finish the layout design, create a Text object on the Text layer and set its name to Title and its text to SideShooter, and position it above the btnPlay object:
  18. Construct Game Development

  19. Switch over to the event sheet editor to add in a Start of layout event and use it to play a music file, Title.mp3, and loop it. This can be any title music you’d like, and it will also be played at the game’s end screen.
  20. Next, create an event for the MouseKeyboard object with the condition Mouse is over object to check if the mouse overlaps btnPlay.
  21. Give this event the action Set colour filter for the btnPlay object to set the filter to Grey – 40.
  22. Now create an Else event to set the filter color back to White.
  23. In order to finish the event sheet, create an event with the condition On object clicked and select the object btnPlay.
  24. Add actions to this event to set the value of NumPlayers to 1 and the value of CurrentScreen to 0 before adding the final System action Next Layout:
  25. Construct Game Development

Time for action – designing the level

Now that we have our graphics created, we can put them into our second layout and make the first playable level.

  1. Now we’re ready to create a level layout. Create a layout and name it Level1 and its event sheet Level1 events . Then create our main game event sheet Game.
  2. For the layout, set its width to a multiple of the screen width (800), and check the box for Unbounded scrolling. In the event sheet of this layout, include our main event sheet Game.
  3. Next, give this layout the layers HUD, Foreground, FrontScenery, Objects, LevelLights, ShadowCasters, BackScenery, and Walls in top-to-bottom order. After that, set the ScrollX and ScrollY rates of the HUD and Walls layers to 0%
  4. On the objects layer, create a Tiled Background object named Ground and give it the smaller light gray tile image. Ensure it has the Solid attribute and stretch and place some of them to form a level design.
  5. Now create a Sprite object with the light green tile image and name it CrateBox . Give it the Solid attribute as well and place some around the level too. Have its collisions mode set to Bounding box.
  6. Next, create a Sprite named ExitLevel and fill it with a solid color. Give it a width of 32 and stretch it so that it’s taller than the display height (600). Then finish the object by checking the box for Invisible on start and placing it at the end of the level:
  7. Construct Game Development

  8. With the base layout complete, we can now add in three more invisible objects to handle scrolling. These are going to be Box objects with the names BackStopper, FrontStopper, and GoNextScreen.
  9. Have the BackStopper and FrontStopper objects colored red and marked Solid with a width of 120.
  10. Set the Hotspot property of the BackStopper object to Bottom-right, and the FrontStopper to Bottom-Left, before positioning them at 0,600 and 800,600 respectively.
  11. Next, have the GoNextScreen box colored green and a width of 32 as well as a Hotspot of Bottom-right. Position this object at 800,600:
  12. Construct Game Development

Time for action – creating player characters and conveyor belt objects

Now we can create our player character objects and also add moving and staO c conveyor belts into our level.

  1. We are now ready to create our player objects. Start by inserting a Sprite and paste the standing image of the player character legs into it. Have an image point named 1 at the red spot that we drew earlier, and then place the hotspot at the bottom-middle point of the image ( num-pad 2) as shown in the following image:
  2. Construct Game Development

  3. Name this sprite P1Legs, and for its Default animation, set the animation Tag to Stopped before checking the Auto Mirror checkbox in the main Appearance settings of the object.
  4. Next, give it the platform behavior with the settings shown as follows:
  5. Construct Game Development

  6. Next, scroll down to the Angle properties box and check the Auto mirror checkbox.
  7. Now we are ready to add the object to a family. Scroll up to the Groups sub-group Families and click on Add to bring up the Construct: New Family screen. Note that Construct Classic comes with some default families, but will also display any family that have been used previously:
  8. Construct Game Development

  9. Click on Edit Families to bring up the Construct: Families editor screen. On this screen, enter the name Legs and click on the + button:
  10. Construct Game Development

  11. We can now draw the family image using the image editor that appears, shown as follows:
  12. Construct Game Development

  13. After finishing the image, save it by exiting out of the image editor and check that the family is now in the list. Once finished, click on Done to return to the family selection page.
  14. Now select the Legs family and click on Ok:
  15. Construct Game Development

  16. Now we can add the animation Walk in for our object. In this animation, set the Tag to Walking, and add the other leg sprites so they match the following image:
  17. Construct Game Development

  18. Now change the settings of the animation to have an Animation speed of 5 and check the Loop checkbox.
  19. Next, copy the object and right-click on the layout to use the Paste Clone option, and name this clone as P2Legs. In the Platform behavior for this object, change the Control setting to Player 2 .
  20. Now go into the project properties and scroll to the bottom section, Controls. Click on the Add / Edit option for the Manage Controls setting at the bottom to bring up the controls box:
  21. Construct Game Development

  22. Use the red X button to remove all of the controls below Jump. Then click on the Green plus button to add a new control. Select this control and click on the Pencil and paper button to change its name to Move Left.
  23. Click on the Key name for this control to bring up a drop-down box and set it to A.
  24. Now, in the Player drop-down box, select Player 2 for this control. It should match the following screenshot:
  25. Construct Game Development

  26. Now continue to add controls until it matches the settings in the following screenshot before clicking on Done:
  27. Construct Game Development

  28. Next, we’ll create the bodies of our player objects. Create a Sprite called P1Torso and paste the normal body image of our character into it. Then position the Hotspot in the bottom-middle of the body. Give this sprite an image point 1 in the centre of its hand:
  29. Construct Game Development

  30. Rename the Default animation to Normal and set its speed to 0, and check the Auto Mirror checkbox for this object as well.
  31. Create two more animations, Up and Down respectively. Set their frames to match the following screenshot:
  32. Construct Game Development

  33. Now give the object a new family and name it Body. Then create Private Variables of names Weapon, Ammo, and GunAngle . Set the starting values to 0, 99, and 0 respectively.
  34. Clone this object as well to create P2Torso, and replace the sprites with the second player graphics.
  35. Now select P1Legs and scroll down to the Groups | Container properties to click on Add object and select P1Torso. The properties box and sprites should match the following screenshot:
  36. Construct Game Development

  37. Next, put the P2Torso object into the container P2Legs using the same method.
  38. Now, on the Walls layer, create a Tiled Background object named FactoryWall and paste the dark wall graphic into it. Then resize it to 800 in Width by 600 in Height and set its position to 0,0 . The layout should look similar to the following screenshot:
  39. Construct Game Development

  40. Switch to the FrontScenery layer and create a Tiled Background object called ConveyorMiddle, and give it the center piece of the conveyor belt images:
  41. Construct Game Development

  42. Give this object the Private Variables of Direction and Speed with starting values of 0.
  43. Place these around the map to act as scenery, as well as using them as an object to move players with at certain points. Set the Direction variable to 1 to have the conveyor belt move right, and 2 to move left. Speed is the attribute used to determine how fast a player character is moved by the conveyor belt; a speed of 25 works well in this instance. The following screenshot shows a moving conveyor belt in the layout:
  44. Construct Game Development

  45. On the same layer, create a Sprite with the name ConveyorStart and Collisions set to None. Use the starting conveyor belt image for this object and set the Hotspot to the middle-right (num-pad 6). Give this sprite the Attribute of Destroy on Startup.
  46. Create a second Sprite with the same setttigs called ConveyorEnd and a Hotspot in the middle-left (num-pad 4). Both sprites are shown in the following screenshot:
  47. Construct Game Development

Time for action – creating the HUD objects

Now, we will move on to creating the Heads Up Display (HUD) objects for our game.

  1. We are now ready to create the HUD objects for our game. Switch to the HUD layer and create a Sprite called P1Face, and give it an image of the P1Torso head and set its Collisions mode to Bounding Box:
  2. Construct Game Development

  3. Next, create a Text object called P1Info and set it up to match the following screenshot:
  4. Construct Game Development

  5. Create similar objects replacing P1 with P2 for the second player. In this case, have the objects match the following layout screenshot:
  6. Construct Game Development

  7. Now create a Text object for when the second player is not playing, and call it P2Join. Set its text to Press left control to join and have it matched to the following screenshot:
  8. Construct Game Development

  9. Give it a Sine behavior to make it fade in and out by matching its settings to those in the following screenshot:
  10. Construct Game Development

  11. Now create the final HUD item, a Sprite called NextSign, and place the next arrow image into it. Set the Collisions of this object to None:
  12. Construct Game Development

LEAVE A REPLY

Please enter your comment!
Please enter your name here