/** * @file HaroldFactory.cpp * @author Charles Owen */ #include "pch.h" #include "HaroldFactory.h" #include "Actor.h" #include "PolyDrawable.h" #include "ImageDrawable.h" #include "HeadTop.h" using namespace std; /// Directory within resources that contains the images. const std::wstring ResourcesDirectory = L"MachineLib/resources"; /** * This is a factory method that creates our Harold actor. * @param imagesDir Directory that contains the images for this application * @return Pointer to an actor object. */ std::shared_ptr HaroldFactory::Create(std::wstring imagesDir) { shared_ptr actor = make_shared(L"Harold"); auto shirt = make_shared(L"Shirt", imagesDir + L"/harold_shirt.png"); shirt->SetCenter(wxPoint(44, 138)); shirt->SetPosition(wxPoint(0, -114)); actor->SetRoot(shirt); auto vest = make_shared(L"Vest", imagesDir + L"/harold_vest.png"); vest->SetCenter(wxPoint(44, 138)); shirt->AddChild(vest); auto lleg = make_shared(L"Left Leg", imagesDir + L"/harold_lleg.png"); lleg->SetCenter(wxPoint(11, 9)); lleg->SetPosition(wxPoint(27, 0)); shirt->AddChild(lleg); auto rleg = make_shared(L"Right Leg", imagesDir + L"/harold_rleg.png"); rleg->SetCenter(wxPoint(39, 9)); rleg->SetPosition(wxPoint(-27, 0)); shirt->AddChild(rleg); auto headb = make_shared(L"Head Bottom", imagesDir + L"/harold_headb.png"); headb->SetCenter(wxPoint(44, 31)); headb->SetPosition(wxPoint(0, -130)); shirt->AddChild(headb); auto headt = make_shared(L"Head Top", imagesDir + L"/harold_headt_blank.png"); headt->SetCenter(wxPoint(55, 109)); headt->SetPosition(wxPoint(0, -31)); headb->AddChild(headt); auto larm = make_shared(L"Left Arm"); larm->SetColor(wxColour(60, 174, 184)); larm->SetPosition(wxPoint(50, -130)); larm->AddPoint(wxPoint(-7, -7)); larm->AddPoint(wxPoint(-7, 96)); larm->AddPoint(wxPoint(8, 96)); larm->AddPoint(wxPoint(8, -7)); shirt->AddChild(larm); auto rarm = make_shared(L"Right Arm"); rarm->SetColor(wxColour(60, 174, 184)); rarm->SetPosition(wxPoint(-45, -130)); rarm->AddPoint(wxPoint(-7, -7)); rarm->AddPoint(wxPoint(-7, 96)); rarm->AddPoint(wxPoint(8, 96)); rarm->AddPoint(wxPoint(8, -7)); shirt->AddChild(rarm); auto lhand = make_shared(L"Left Hand"); lhand->SetColor(wxColour(253, 218, 180)); lhand->SetPosition(wxPoint(0, 96)); lhand->AddPoint(wxPoint(-12, -2)); lhand->AddPoint(wxPoint(-12, 17)); lhand->AddPoint(wxPoint(11, 17)); lhand->AddPoint(wxPoint(11, -2)); larm->AddChild(lhand); auto rhand = make_shared(L"Right Hand"); rhand->SetColor(wxColour(253, 218, 180)); rhand->SetPosition(wxPoint(0, 96)); rhand->AddPoint(wxPoint(-12, -2)); rhand->AddPoint(wxPoint(-12, 17)); rhand->AddPoint(wxPoint(11, 17)); rhand->AddPoint(wxPoint(11, -2)); rarm->AddChild(rhand); actor->AddDrawable(larm); actor->AddDrawable(rarm); actor->AddDrawable(rhand); actor->AddDrawable(lhand); actor->AddDrawable(rleg); actor->AddDrawable(lleg); actor->AddDrawable(shirt); actor->AddDrawable(vest); actor->AddDrawable(headb); actor->AddDrawable(headt); return actor; }