This commit is contained in:
Jonas Zeunert
2020-03-11 23:53:05 +01:00
parent 46b07b3889
commit 45c733989f
87 changed files with 42 additions and 46 deletions

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class Bank(Target): class Bank(Target):
def __init__(self, points, name, targets): def __init__(self, points, name, targets):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class BankTarget(Target): class BankTarget(Target):
def __init__(self, points): def __init__(self, points):

View File

@@ -1,7 +1,3 @@
from targets import *
from targets.BankTarget import BankTarget
class TargetFactory: class TargetFactory:
@staticmethod @staticmethod
def createAllTargets(): def createAllTargets():

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class ReboundContactTarget(Target): class ReboundContactTarget(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftInlaneTarget(Target): class LeftInlaneTarget(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftOutlaneTarget(Target): class LeftOutlaneTarget(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class RightInlaneTarget(Target): class RightInlaneTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class RightOutlaneKickerTarget(Target): class RightOutlaneKickerTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class RightOutlaneTarget(Target): class RightOutlaneTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class CanalButtonTopTarget(Target): class CanalButtonTopTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftLaneButton4Target(Target): class LeftLaneButton4Target(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftLaneButton3Target(Target): class LeftLaneButton3Target(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftLaneButton2Target(Target): class LeftLaneButton2Target(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftLaneButton1Target(Target): class LeftLaneButton1Target(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class FixedTarget1(Target): class FixedTarget1(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class FixedTarget2(Target): class FixedTarget2(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class FixedTarget3(Target): class FixedTarget3(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class FixedTarget4(Target): class FixedTarget4(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class FixedTarget5(Target): class FixedTarget5(Target):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class LeftBankLeft(BankTarget): class LeftBankLeft(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class LeftBankMiddleLeft(BankTarget): class LeftBankMiddleLeft(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class LeftBankMiddleRight(BankTarget): class LeftBankMiddleRight(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftBankLeft(Target): class LeftBankLeft(Target):

View File

@@ -1,4 +1,4 @@
from targets.Bank import Bank from Bank import Bank
class LeftBankTarget(Bank): class LeftBankTarget(Bank):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftPopTarget(Target): class LeftPopTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class RightPopTarget(Target): class RightPopTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Bank import Bank from Bank import Bank
from targets.right_bank import RightBankLeft from targets.right_bank import RightBankLeft
from targets.right_bank import RightBankMiddle from targets.right_bank import RightBankMiddle
from targets.right_bank import RightBankRight from targets.right_bank import RightBankRight

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class RightBankLeft(BankTarget): class RightBankLeft(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class MiddleDropTarget(BankTarget): class MiddleDropTarget(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class RightBankRight(BankTarget): class RightBankRight(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class LeftSlingshotTarget(Target): class LeftSlingshotTarget(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class RightSlingshotTarget(Target): class RightSlingshotTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
# A standup target. When lit, it scores the Orange Special (operator # A standup target. When lit, it scores the Orange Special (operator

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
# A standup target. When lit, it scores the Red Special (operator # A standup target. When lit, it scores the Red Special (operator

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class SpinnerTarget(Target): class SpinnerTarget(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class CreditTarget(Target): class CreditTarget(Target):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class OutholeTarget(Target): class OutholeTarget(Target):
def __init__(self): def __init__(self):

View File

@@ -1,4 +1,4 @@
from targets.Target import Target from Target import Target
class RisingBall(Target): class RisingBall(Target):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class TopBankLeft(BankTarget): class TopBankLeft(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class TopBankMiddle(BankTarget): class TopBankMiddle(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class TopBankMiddleLeft(BankTarget): class TopBankMiddleLeft(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class TopBankMiddleRight(BankTarget): class TopBankMiddleRight(BankTarget):

View File

@@ -1,4 +1,4 @@
from targets.BankTarget import BankTarget from BankTarget import BankTarget
class TopBankRight(BankTarget): class TopBankRight(BankTarget):