privyet/Privyet/JShape.swift

56 lines
1.6 KiB
Swift

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