SlideShare a Scribd company logo
Reviewing OOP design patterns
Olivier Bacs
@reallyoli
Introduction
Definition
In software engineering, a software design pattern is a general reusable
solution to a commonly occurring problem within a given context in
software design.
It is not a finished design that can be transformed directly into source
code.
The implementation approaches tend to be slightly different.
Why spend the time?
- From framework user, to framework creator in a software engineer
career
- Where to direct our attention: brush up on foundations, not
frameworks
- … And time is finite. Why spend too much time on a problem that has
been solved already?
History
1977: Christopher Alexander introduces the idea of patterns: successful
solutions to problems. (Pattern Language)
1987: Ward Cunningham and Kent Beck leverage Alexander’s idea in the
context of an OO language.
1987: Eric Gamma’s dissertation on importance of patterns and how to
capture them.
1994: The book =>
The core tenets
of OOP
Core principles of OOP:
Encapsulation
const account = { balance: 1000, owner: 13466 }
example: a bank account object
Core principles of OOP:
Encapsulation
const account = { balance: 1000, owner: 13466 }
-> Encapsulate the properties
! Manipulating properties directly
example: a bank account object
Core principles of OOP:
Encapsulation
class Account {
private balance: number
private owner: Customer
public withdraw(amount: number) { // can validate }
public deposit(amount: number) {}
}
Its public API
const account = { balance: 1000, owner: 13466 }
The object’s internals, what you hide / protect
connectToRemoteServer(){}
validateTokenLength(){}
disconnectFromRemoteServer(){}
moreAndMoreSteps(){}
Core principles of OOP:
Abstractions
example: an email distribution API SDK
connectToRemoteServer(){}
validateTokenLength(){}
disconnectFromRemoteServer(){}
moreAndMoreSteps(){}
Core principles of OOP:
Abstractions
-> Abstract those activities
! Remove lower level concerns
! Protect from breaking changes in API
example: an email distribution API SDK
class EmailService {
private connectToRemoteServer(){}
private validateTokenLength(){}
private disconnectFromRemoteServer(){}
public sendEmail(){ // leverages all the above }
}
Core principles of OOP:
Abstractions
Things that might be extended/removed
be quite complex...
A neat public API
Core principles of OOP:
Inheritance
class Rectangle {
fillShape(){ // }
}
example: an design app
class Circle {
fillShape(){ // }
}
Core principles of OOP:
Inheritance
class Rectangle {
fillShape(){ // }
}
example: an design app
class Circle {
fillShape(){ // }
}
! Make your code more DRY by avoiding repetitions
-> Add logic to a common ancestor
Core principles of OOP:
Inheritance
example: an design app
class Shape {
public fill(colour: string){ //behaviour }
}
class Circle extends Shape {}
const circle = new Circle()
circle.fill(”#FF0000”)
A way to write logic once and update it
downward
Quick recall: the concept of interfaces
An interface is a reference type in OOP.
A reference Type is a “specification type”. We can’t explicitly use it, but it is used
internally by the language.
It enforces a contract that the derived classes will have to obey
Interfaces are an “ideal”
Core principles of OOP:
Polymorphism( “Can take many forms” )
example: an animal game for children
interface IAnimal {
makeSound(): string
}
abstract class AbstractAnimal {
abstract makeSound(): string
}
the prefix I is a Convention
Core principles of OOP:
Polymorphism( “Can take many forms” )
example: an animal game for children
class Cat implements IAnimal {
public makeSound():string { return “Miaou” }
}
class Cat extend AbstractAnimal {
public makeSound():string { return “Miaou” }
}
Your “API” to other classes
Quick recall: access modifiers
Design principles
of construction
Fundamental principles
Avoiding duplication
A common name, and enough similarities might trump misleading
if(customer !== null && customer.length !== 0) {
// logic
}
if(customer !== null && typeof customer !== “undefined”) {
// logic
}
34
156
Code can drift over time
Fundamental principles
Avoiding tight coupling
A loosely coupled system
Fixing tire !== fixing dashboard or seatbelt
An architectural ideal
Fundamental principles
Single responsibility principle, see your code as modular black boxes
Easier to explain
Less surprising
Class is much less likely to
change often
The name should be able to
tell you what it does
Open-Close principle
Open to extension, closed for modification
class CoffeeMaker {
final grindCoffee(): void
final runJob(program: string): void
}
class FancyCoffeMaker extends CoffeeMaker {
runJob(program: string, callback: Function): void
}
Inheritance bring tight coupling
New features should not change the
base class
! Open
!! New feature !!
Don’t change
Dependency Injection
High level modules should not depend upon low level modules.
class EmployeSearchService {
private employeesTable = new DBConnection(3306, “somewhere.”, “admin”, “admin123”, “employees”);
public getById(id: string) {
return this.employeesTable.findbyId(id);
}
}
Dependency Injection
High level modules should not depend upon low level modules.
class EmployeSearchService {
private employeesTable = new DBConnection(3306, “somewhere.”, “admin”, “admin123”, “employees”);
public getById(id: string) {
return this.employeesTable.findbyId(id);
}
}
!! New feature !! Extended search
Dependency Injection
High level modules should not depend upon low level modules.
class EmployeSearchService {
private employeeDataStore: EmployeeDataStore
constructor(dataStore: EmployeeDataStore) {
this.employeeDataStore = dataStore
}
public getById(id: string) {
return this.employeeDataStore.findbyId(id);
}
}
new EmployeeSearchService(new EmployeeNapkins())
new EmployeeSearchService(new ExmployeeExcel())
new EmployeeSearchService(new EmployeeCSV())
Give the stores a common interface
Make your code more flexible
Fundamental principles
- LSP: Liskov Substitution Principle.
Derived classes must be substitutable for their base classes
- ISP: Interface Segregation Principle
Client should not be forced to depend upon interfaces they do not use
Design patterns
Recall: UML
A visual, language agnostic way to map OOP: Unified Modelling Language
Access:
+ public - private # protected
Properties
class name
Methods
The Five Families of Design Patterns
Creational
Structural Foundational
Concurrency
Behavioural
Modern days design pattern families
The Three Main Families of Design Patterns
Behavioural
Structural
Creational
According to the Gang of Four
23 design patterns
Behavioural Patterns
Used to responsibilities between objects and manage algorithms
● Command
● Observer
● Strategy
● State
● Visitor
● Memento
● Mediator
● Iterator
Structural Patterns
Used to form large structures between many disparate objects
● Adapter
● Proxy
● Decorator
● Facade
● Aggregate
● Bridge
Creational Patterns
Used to construct object so that they can be decoupled from their
implementing system
● Singleton
● Factory Method Pattern
● Abstract Factory
● Builder
● Prototype
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
“Encapsulate a request as an object, thereby letting users parameterize
clients with different requests, queue or log request, and support
undoable operations”
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
example: configuring input on a game controller
Y
X B
A
Fire Gun
Jump
Duck
Swap weapon
You want to:
> Map inputs to actions in an OO way
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
example: game controller commands
class InputHandler {
static handleInput() {
if(isPressed(BUTTON_X) jump()
else if(isPressed(BUTTON_Y) fireGun()
else if(isPressed(BUTTON_A) swapWeapon()
else if(isPressed(BUTTON_B) duck()
}
}
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
example: game controller commands
Users usually like to map
their own controls to the
inputs
class InputHandler {
static handleInput() {
if(isPressed(BUTTON_X) jump()
else if(isPressed(BUTTON_Y) fireGun()
else if(isPressed(BUTTON_A) swapWeapon()
else if(isPressed(BUTTON_B) duck()
}
}
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
example: game controller commands
> You want to make the direct calls to jump() and fireGun() into something that we can swap
in and out.
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
example: game controller commands
interface ICommand {
execute():void
}
class JumpCommand implements ICommand{
execute(): void { jump(); }
}
class DuckCommand implements ICommand{
execute():void { duck(); }
}
class InputHandler {
private buttonA: Command;
private buttonB: Command;
private buttonX: Command;
private buttonY: Command;
public setButtonA(command: Command): void {this.buttonA = command;}
public setButtonB(command: Command): void {this.buttonB = command;}
public setButtonX(command: Command): void {this.buttonX = command;}
public setButtonY(command: Command): void {this.buttonY = command;}
}
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
class InputHandler {
...
public inputHandler():void {
if(isPressed(BUTTON_X) return buttonX.execute()
else if(isPressed(BUTTON_Y) return buttonY.execute()
else if(isPressed(BUTTON_A) return buttonA.execute()
else if(isPressed(BUTTON_B) return buttonB.execute()
return null
}
}
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
Y
X B
A
Fire Gun
Jump
Duck
Swap weapon
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
Bonus: Undoing things
interface ICommand {
execute():void
undo():void
}
Behavioural Patterns
Command pattern: An object oriented replacement for callbacks
class MoveUnit {
private x: number;
private y: number;
private xBefore: number;
private yBefore: number;
private unit: ArmyUnit;
constructor(unit: ArmyUnit, x: number, y: number){
this.x = x;
this.y = y;
}
public execute(){
this.xBefore = this.x;
this.yBefore = this.y;
this.unit.moveTo(this.x, this.y)
}
public undo(){
this.unit.moveTo(this.xBefore, this.yBefore)
}
}
CMD CMD CMD CMD CMD
Older Newer
An undo stack
example: a turn by turn strategy game
Undo Redo
Creational Patterns
Singleton pattern: There is power in ONE
“The singleton pattern ensures that only one object of a particular class
is ever created. All further references to objects of the singleton class
refer to the same underlying instance.’
Creational Patterns
Singleton pattern: There is power in ONE
example: a logger
> You want to create a logger that adds log lines to files from different locations and
potentially at the same time
> You logs have to maintain the order of the events
> You need to avoid “file already in use” and other lock related issues
Creational Patterns
Singleton pattern: There is power in ONE
example: a logger
Not just for a logger, but for most of the xManager, xEngine, xSystem classes of
objects.
Like
- DBConnectionManager
- FilesystemManager
- ...
Creational Patterns
Singleton pattern: There is power in ONE
A solution is provided by the singleton pattern:
Enforcing a single global instance that wraps resources you want to protect
Creational Patterns
Singleton pattern: There is power in ONE
example: a logger
class Logger {
private static _instance: MyClass;
private constructor() { // initialisation... }
public static getInstance() {
return this._instance || (this._instance = new this());
}
}
const logger = Logger.getInstance();
Creational Patterns
Singleton pattern: There is power is ONE
Global state
Not garbage
collected
There for the
entire life of
the program
*
*Once lazy loaded
Theoretically
accessible from
everywhere
Resources
Another take: The anti patterns http://www.laputan.org/mud/
Build your UML graphs with Lucid Charts
https://www.lucidchart.com/pages/examples/uml_diagram_tool
Readings
Tools
@reallyoli

More Related Content

PPTX
Introduce oop in python
PPTX
Basic Concepts of OOPs (Object Oriented Programming in Java)
PDF
C# Summer course - Lecture 2
PDF
PDF
Lecture 01 - Basic Concept About OOP With Python
PPT
What is OOP?
PPT
Object-oriented concepts
Introduce oop in python
Basic Concepts of OOPs (Object Oriented Programming in Java)
C# Summer course - Lecture 2
Lecture 01 - Basic Concept About OOP With Python
What is OOP?
Object-oriented concepts

What's hot (20)

PDF
Introduction to object oriented programming
PPT
Concepts In Object Oriented Programming Languages
PDF
4 pillars of OOPS CONCEPT
PPT
Java oops PPT
PPTX
Object-oriented programming
PPTX
Advance oops concepts
PDF
Object-oriented Programming-with C#
PPTX
Object Oriented Programming Concepts
PDF
C++ [ principles of object oriented programming ]
PPT
PPT
Basic concepts of oops
PPTX
Oop in c++ lecture 1
PPTX
Introduction to oop
PPTX
Object Oriented Programming Concepts
PPTX
class and objects
PPT
Lecture 2
PPTX
Introduction to OOP in Python
PPTX
OOPS in Java
PPTX
SKILLWISE - OOPS CONCEPT
PPT
Oops Concept Java
Introduction to object oriented programming
Concepts In Object Oriented Programming Languages
4 pillars of OOPS CONCEPT
Java oops PPT
Object-oriented programming
Advance oops concepts
Object-oriented Programming-with C#
Object Oriented Programming Concepts
C++ [ principles of object oriented programming ]
Basic concepts of oops
Oop in c++ lecture 1
Introduction to oop
Object Oriented Programming Concepts
class and objects
Lecture 2
Introduction to OOP in Python
OOPS in Java
SKILLWISE - OOPS CONCEPT
Oops Concept Java
Ad

Similar to Reviewing OOP Design patterns (20)

PDF
The maze of Design Patterns & SOLID Principles
PDF
DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...
PPTX
GoF Design patterns I: Introduction + Structural Patterns
PDF
Twins: OOP and FP
PDF
TWINS: OOP and FP - Warburton
PPTX
Brief introduction to Object Oriented Analysis and Design
PPT
P Training Presentation
PDF
Twins: Object Oriented Programming and Functional Programming
PDF
Unified Modeling Language (UML), Object-Oriented Programming Concepts & Desig...
PPTX
Software System Architecture-Lecture 6.pptx
PPT
Design poo my_jug_en_ppt
PPT
Jump Start To Ooad And Design Patterns
PPS
Jump start to OOP, OOAD, and Design Pattern
PDF
Clean Code�Chapter 3. (1)
PDF
II BCA JAVA PROGRAMMING NOTES FOR FIVE UNITS.pdf
PPTX
ap assignmnet presentation.pptx
PDF
Design patterns illustrated-2015-03
PDF
Design for Testability
PDF
Java-Design-Patterns.pdf
PDF
Object Oriented Programming in Swift Ch0 - Encapsulation
The maze of Design Patterns & SOLID Principles
DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...
GoF Design patterns I: Introduction + Structural Patterns
Twins: OOP and FP
TWINS: OOP and FP - Warburton
Brief introduction to Object Oriented Analysis and Design
P Training Presentation
Twins: Object Oriented Programming and Functional Programming
Unified Modeling Language (UML), Object-Oriented Programming Concepts & Desig...
Software System Architecture-Lecture 6.pptx
Design poo my_jug_en_ppt
Jump Start To Ooad And Design Patterns
Jump start to OOP, OOAD, and Design Pattern
Clean Code�Chapter 3. (1)
II BCA JAVA PROGRAMMING NOTES FOR FIVE UNITS.pdf
ap assignmnet presentation.pptx
Design patterns illustrated-2015-03
Design for Testability
Java-Design-Patterns.pdf
Object Oriented Programming in Swift Ch0 - Encapsulation
Ad

Recently uploaded (20)

PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
Lecture Notes Electrical Wiring System Components
PPT
Mechanical Engineering MATERIALS Selection
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
additive manufacturing of ss316l using mig welding
PPTX
Sustainable Sites - Green Building Construction
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
Geodesy 1.pptx...............................................
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
bas. eng. economics group 4 presentation 1.pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Operating System & Kernel Study Guide-1 - converted.pdf
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Lecture Notes Electrical Wiring System Components
Mechanical Engineering MATERIALS Selection
Foundation to blockchain - A guide to Blockchain Tech
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
CH1 Production IntroductoryConcepts.pptx
additive manufacturing of ss316l using mig welding
Sustainable Sites - Green Building Construction
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Embodied AI: Ushering in the Next Era of Intelligent Systems
Geodesy 1.pptx...............................................

Reviewing OOP Design patterns

  • 1. Reviewing OOP design patterns Olivier Bacs @reallyoli
  • 2. Introduction Definition In software engineering, a software design pattern is a general reusable solution to a commonly occurring problem within a given context in software design. It is not a finished design that can be transformed directly into source code. The implementation approaches tend to be slightly different.
  • 3. Why spend the time? - From framework user, to framework creator in a software engineer career - Where to direct our attention: brush up on foundations, not frameworks - … And time is finite. Why spend too much time on a problem that has been solved already?
  • 4. History 1977: Christopher Alexander introduces the idea of patterns: successful solutions to problems. (Pattern Language) 1987: Ward Cunningham and Kent Beck leverage Alexander’s idea in the context of an OO language. 1987: Eric Gamma’s dissertation on importance of patterns and how to capture them. 1994: The book =>
  • 6. Core principles of OOP: Encapsulation const account = { balance: 1000, owner: 13466 } example: a bank account object
  • 7. Core principles of OOP: Encapsulation const account = { balance: 1000, owner: 13466 } -> Encapsulate the properties ! Manipulating properties directly example: a bank account object
  • 8. Core principles of OOP: Encapsulation class Account { private balance: number private owner: Customer public withdraw(amount: number) { // can validate } public deposit(amount: number) {} } Its public API const account = { balance: 1000, owner: 13466 } The object’s internals, what you hide / protect
  • 10. connectToRemoteServer(){} validateTokenLength(){} disconnectFromRemoteServer(){} moreAndMoreSteps(){} Core principles of OOP: Abstractions -> Abstract those activities ! Remove lower level concerns ! Protect from breaking changes in API example: an email distribution API SDK
  • 11. class EmailService { private connectToRemoteServer(){} private validateTokenLength(){} private disconnectFromRemoteServer(){} public sendEmail(){ // leverages all the above } } Core principles of OOP: Abstractions Things that might be extended/removed be quite complex... A neat public API
  • 12. Core principles of OOP: Inheritance class Rectangle { fillShape(){ // } } example: an design app class Circle { fillShape(){ // } }
  • 13. Core principles of OOP: Inheritance class Rectangle { fillShape(){ // } } example: an design app class Circle { fillShape(){ // } } ! Make your code more DRY by avoiding repetitions -> Add logic to a common ancestor
  • 14. Core principles of OOP: Inheritance example: an design app class Shape { public fill(colour: string){ //behaviour } } class Circle extends Shape {} const circle = new Circle() circle.fill(”#FF0000”) A way to write logic once and update it downward
  • 15. Quick recall: the concept of interfaces An interface is a reference type in OOP. A reference Type is a “specification type”. We can’t explicitly use it, but it is used internally by the language. It enforces a contract that the derived classes will have to obey Interfaces are an “ideal”
  • 16. Core principles of OOP: Polymorphism( “Can take many forms” ) example: an animal game for children interface IAnimal { makeSound(): string } abstract class AbstractAnimal { abstract makeSound(): string } the prefix I is a Convention
  • 17. Core principles of OOP: Polymorphism( “Can take many forms” ) example: an animal game for children class Cat implements IAnimal { public makeSound():string { return “Miaou” } } class Cat extend AbstractAnimal { public makeSound():string { return “Miaou” } }
  • 18. Your “API” to other classes Quick recall: access modifiers
  • 20. Fundamental principles Avoiding duplication A common name, and enough similarities might trump misleading if(customer !== null && customer.length !== 0) { // logic } if(customer !== null && typeof customer !== “undefined”) { // logic } 34 156 Code can drift over time
  • 21. Fundamental principles Avoiding tight coupling A loosely coupled system Fixing tire !== fixing dashboard or seatbelt An architectural ideal
  • 22. Fundamental principles Single responsibility principle, see your code as modular black boxes Easier to explain Less surprising Class is much less likely to change often The name should be able to tell you what it does
  • 23. Open-Close principle Open to extension, closed for modification class CoffeeMaker { final grindCoffee(): void final runJob(program: string): void } class FancyCoffeMaker extends CoffeeMaker { runJob(program: string, callback: Function): void } Inheritance bring tight coupling New features should not change the base class ! Open !! New feature !! Don’t change
  • 24. Dependency Injection High level modules should not depend upon low level modules. class EmployeSearchService { private employeesTable = new DBConnection(3306, “somewhere.”, “admin”, “admin123”, “employees”); public getById(id: string) { return this.employeesTable.findbyId(id); } }
  • 25. Dependency Injection High level modules should not depend upon low level modules. class EmployeSearchService { private employeesTable = new DBConnection(3306, “somewhere.”, “admin”, “admin123”, “employees”); public getById(id: string) { return this.employeesTable.findbyId(id); } } !! New feature !! Extended search
  • 26. Dependency Injection High level modules should not depend upon low level modules. class EmployeSearchService { private employeeDataStore: EmployeeDataStore constructor(dataStore: EmployeeDataStore) { this.employeeDataStore = dataStore } public getById(id: string) { return this.employeeDataStore.findbyId(id); } } new EmployeeSearchService(new EmployeeNapkins()) new EmployeeSearchService(new ExmployeeExcel()) new EmployeeSearchService(new EmployeeCSV()) Give the stores a common interface Make your code more flexible
  • 27. Fundamental principles - LSP: Liskov Substitution Principle. Derived classes must be substitutable for their base classes - ISP: Interface Segregation Principle Client should not be forced to depend upon interfaces they do not use
  • 29. Recall: UML A visual, language agnostic way to map OOP: Unified Modelling Language Access: + public - private # protected Properties class name Methods
  • 30. The Five Families of Design Patterns Creational Structural Foundational Concurrency Behavioural Modern days design pattern families
  • 31. The Three Main Families of Design Patterns Behavioural Structural Creational According to the Gang of Four 23 design patterns
  • 32. Behavioural Patterns Used to responsibilities between objects and manage algorithms ● Command ● Observer ● Strategy ● State ● Visitor ● Memento ● Mediator ● Iterator
  • 33. Structural Patterns Used to form large structures between many disparate objects ● Adapter ● Proxy ● Decorator ● Facade ● Aggregate ● Bridge
  • 34. Creational Patterns Used to construct object so that they can be decoupled from their implementing system ● Singleton ● Factory Method Pattern ● Abstract Factory ● Builder ● Prototype
  • 35. Behavioural Patterns Command pattern: An object oriented replacement for callbacks “Encapsulate a request as an object, thereby letting users parameterize clients with different requests, queue or log request, and support undoable operations”
  • 36. Behavioural Patterns Command pattern: An object oriented replacement for callbacks example: configuring input on a game controller Y X B A Fire Gun Jump Duck Swap weapon You want to: > Map inputs to actions in an OO way
  • 37. Behavioural Patterns Command pattern: An object oriented replacement for callbacks example: game controller commands class InputHandler { static handleInput() { if(isPressed(BUTTON_X) jump() else if(isPressed(BUTTON_Y) fireGun() else if(isPressed(BUTTON_A) swapWeapon() else if(isPressed(BUTTON_B) duck() } }
  • 38. Behavioural Patterns Command pattern: An object oriented replacement for callbacks example: game controller commands Users usually like to map their own controls to the inputs class InputHandler { static handleInput() { if(isPressed(BUTTON_X) jump() else if(isPressed(BUTTON_Y) fireGun() else if(isPressed(BUTTON_A) swapWeapon() else if(isPressed(BUTTON_B) duck() } }
  • 39. Behavioural Patterns Command pattern: An object oriented replacement for callbacks example: game controller commands > You want to make the direct calls to jump() and fireGun() into something that we can swap in and out.
  • 40. Behavioural Patterns Command pattern: An object oriented replacement for callbacks example: game controller commands interface ICommand { execute():void } class JumpCommand implements ICommand{ execute(): void { jump(); } } class DuckCommand implements ICommand{ execute():void { duck(); } }
  • 41. class InputHandler { private buttonA: Command; private buttonB: Command; private buttonX: Command; private buttonY: Command; public setButtonA(command: Command): void {this.buttonA = command;} public setButtonB(command: Command): void {this.buttonB = command;} public setButtonX(command: Command): void {this.buttonX = command;} public setButtonY(command: Command): void {this.buttonY = command;} } Behavioural Patterns Command pattern: An object oriented replacement for callbacks
  • 42. class InputHandler { ... public inputHandler():void { if(isPressed(BUTTON_X) return buttonX.execute() else if(isPressed(BUTTON_Y) return buttonY.execute() else if(isPressed(BUTTON_A) return buttonA.execute() else if(isPressed(BUTTON_B) return buttonB.execute() return null } } Behavioural Patterns Command pattern: An object oriented replacement for callbacks
  • 43. Behavioural Patterns Command pattern: An object oriented replacement for callbacks Y X B A Fire Gun Jump Duck Swap weapon
  • 44. Behavioural Patterns Command pattern: An object oriented replacement for callbacks Bonus: Undoing things interface ICommand { execute():void undo():void }
  • 45. Behavioural Patterns Command pattern: An object oriented replacement for callbacks class MoveUnit { private x: number; private y: number; private xBefore: number; private yBefore: number; private unit: ArmyUnit; constructor(unit: ArmyUnit, x: number, y: number){ this.x = x; this.y = y; } public execute(){ this.xBefore = this.x; this.yBefore = this.y; this.unit.moveTo(this.x, this.y) } public undo(){ this.unit.moveTo(this.xBefore, this.yBefore) } } CMD CMD CMD CMD CMD Older Newer An undo stack example: a turn by turn strategy game Undo Redo
  • 46. Creational Patterns Singleton pattern: There is power in ONE “The singleton pattern ensures that only one object of a particular class is ever created. All further references to objects of the singleton class refer to the same underlying instance.’
  • 47. Creational Patterns Singleton pattern: There is power in ONE example: a logger > You want to create a logger that adds log lines to files from different locations and potentially at the same time > You logs have to maintain the order of the events > You need to avoid “file already in use” and other lock related issues
  • 48. Creational Patterns Singleton pattern: There is power in ONE example: a logger Not just for a logger, but for most of the xManager, xEngine, xSystem classes of objects. Like - DBConnectionManager - FilesystemManager - ...
  • 49. Creational Patterns Singleton pattern: There is power in ONE A solution is provided by the singleton pattern: Enforcing a single global instance that wraps resources you want to protect
  • 50. Creational Patterns Singleton pattern: There is power in ONE example: a logger class Logger { private static _instance: MyClass; private constructor() { // initialisation... } public static getInstance() { return this._instance || (this._instance = new this()); } } const logger = Logger.getInstance();
  • 51. Creational Patterns Singleton pattern: There is power is ONE Global state Not garbage collected There for the entire life of the program * *Once lazy loaded Theoretically accessible from everywhere
  • 52. Resources Another take: The anti patterns http://www.laputan.org/mud/ Build your UML graphs with Lucid Charts https://www.lucidchart.com/pages/examples/uml_diagram_tool Readings Tools