// // TShape.swift // Privyet // // Created by Amy Bowersox on 5/24/20. // Copyright © 2020 Erbosoft Metaverse Design Solutions. All rights reserved. // import Foundation class TShape: Shape { /* Orientation 0: | * | 0 | | | 1 | 2 | 3 | Orientation 90: | * | 1 | | | | 2 | 0 | | | 3 | | Orientation 180: | * | | | | 3 | 2 | 1 | | | 0 | | Orientation 270: | * | 3 | | | 0 | 2 | | | | 1 | | * marks the row/column indicator for the shape */ override var color: BlockColor? { return .Yellow } override var blockRowColumnPositions: [Orientation : Array<(columnDiff: Int, rowDiff: Int)>] { return [ Orientation.Zero: [(1, 0), (0, 1), (1, 1), (2, 1)], Orientation.Ninety: [(2, 1), (1, 0), (1, 1), (1, 2)], Orientation.OneEighty: [(1, 2), (2, 1), (1, 1), (0, 1)], Orientation.TwoSeventy: [(0, 1), (1, 2), (1, 1), (1, 0)] ] } override var bottomBlocksForOrientations: [Orientation : Array] { return [ Orientation.Zero: [blocks[SecondBlockIdx], blocks[ThirdBlockIdx], blocks[FourthBlockIdx]], Orientation.Ninety: [blocks[FirstBlockIdx], blocks[FourthBlockIdx]], Orientation.OneEighty: [blocks[FirstBlockIdx], blocks[SecondBlockIdx], blocks[FourthBlockIdx]], Orientation.TwoSeventy: [blocks[FirstBlockIdx], blocks[SecondBlockIdx]] ] } }