예제 #1
0
def dim1():
    cls()
    print(
        col.green(
            "You are a time traveling interdimensional being\nYou were captured, and to escape you need to make your way through a maze.\nThere is a portal at the end of each maze.\nA "
        ) + col.bblue("blue ") +
        col.green("portal will take you to the next level.\nA ") +
        col.byellow("yellow ") + col.green(
            "portal will take you to the next dimension\nThat is all you need to know for now. You will learn everything else later\nGood Luck!"
        ))
    raw_input(col.red('Press Enter to Continue'))
    cls()

    print(
        col.green(
            "Please place and click your mouse in the window to continue."))

    display = pygame.display.set_mode((60, 60))
    display.fill((255, 255, 0))

    exit = False
    while not exit:
        for event in pygame.event.get():
            if event.type == pygame.MOUSEBUTTONDOWN:
                exit = True

    mainLoop([1, 0])
예제 #2
0
def l30intro():
    cls()
    print(
        col.green(
            "Now for the confusing part...\nFor each Y position (Up and down) there will/won't be dashes above and bellow the maze\nThese tell you if you can move back and forth between the layers\nIf the dash is above the maze then the available spot is one layer down and\nif it is below the maze then there is an available spot is one layer up"
        ))
    print(col.red('Press j to continue'))
    exit = False
    while not exit:
        for event in pygame.event.get():
            if event.type == pygame.KEYDOWN:
                if event.key == pygame.K_j:
                    exit = True
예제 #3
0
파일: levels.py 프로젝트: JackV101/InterDim
def level10():
    array = [[[[['H','red'],SPACE,SPACE,SPACE,['O','bblue']]]]]
    goal = [4,0,0,0]
    coordinates = [0,0,0,0]
    special = (col.green("Press") + col.red(" A") + col.green(" and") + col.red(" D") + col.green(" to move left and right"))
    return [array,goal,coordinates,'lvl',special]
예제 #4
0
파일: levels.py 프로젝트: JackV101/InterDim
def level41():
    array = [[[[['H','red'],BLANK,BLANK,BLANK,BLANK],
               [SPACE,BLANK,BLANK,BLANK,BLANK],
               BLROW,BLROW,
               BLROW],
    [BLROW,
     [SPACE,BLANK,BLANK,BLANK,BLANK],
     [SPACE,SPACE,SPACE,BLANK,BLANK],
     BLROW,BLROW],
    [BLROW,
     [BLANK,SPACE,SPACE,SPACE,SPACE],
     BLROW,
     [BLANK,BLANK,['O','bblue'],BLANK,BLANK],
     [BLANK,BLANK,SPACE,SPACE,SPACE]],
    [BLROW,
     [SPACE,SPACE,BLANK,BLANK,SPACE],
     [SPACE,BLANK,BLANK,BLANK,SPACE],
     [SPACE,BLANK,BLANK,BLANK,SPACE],
     [SPACE,BLANK,BLANK,BLANK,SPACE]]],
    [[BLROW,
      BLROW,
      BLROW,
      BLROW,
      [BLANK,BLANK,BLANK,BLANK,SPACE]],
    [BLROW,
     BLROW,
     [BLANK,BLANK,SPACE,BLANK,BLANK],
     [SPACE,SPACE,SPACE,BLANK,BLANK],
     [BLANK,BLANK,BLANK,BLANK,SPACE]],
    [[SPACE,SPACE,BLANK,BLANK,BLANK],
     [SPACE,BLANK,BLANK,BLANK,BLANK],
     [SPACE,BLANK,BLANK,BLANK,BLANK],
     [SPACE,BLANK,BLANK,BLANK,BLANK],
     [BLANK,BLANK,BLANK,BLANK,SPACE]],
    [[SPACE,BLANK,BLANK,BLANK,BLANK],
     [BLANK,BLANK,SPACE,SPACE,BLANK],
     [BLANK,BLANK,BLANK,SPACE,BLANK],
     [BLANK,BLANK,BLANK,SPACE,BLANK],
     [SPACE,SPACE,SPACE,SPACE,BLANK]]],
    [[BLROW,
      BLROW,
      [BLANK,BLANK,BLANK,BLANK,SPACE],
      [BLANK,BLANK,BLANK,BLANK,SPACE],
      [BLANK,BLANK,BLANK,BLANK,SPACE]],
    [[BLANK,BLANK,BLANK,SPACE,BLANK],
     [BLANK,BLANK,BLANK,SPACE,BLANK],
     [BLANK,BLANK,BLANK,SPACE,SPACE],
     BLROW,
     BLROW],
    [[BLANK,SPACE,SPACE,SPACE,BLANK],
     BLROW,
     BLROW,
     [BLANK,BLANK,SPACE,SPACE,SPACE],
     [BLANK,BLANK,BLANK,BLANK,SPACE]],
    [BLROW,
     [BLANK,SPACE,SPACE,BLANK,BLANK],
     [BLANK,SPACE,BLANK,BLANK,BLANK],
     [BLANK,SPACE,SPACE,BLANK,BLANK],
     BLROW]]]
    goal = [2,3,2,0]
    coordinates = [0,0,0,0]
    special = col.green('Good Luck')
    return [array,goal,coordinates,'lvl',special]
                                                                                                                                
예제 #5
0
파일: levels.py 프로젝트: JackV101/InterDim
def level40():
    array = [[[[['H','red'],BLANK],[SPACE,BLANK]],[[BLANK,BLANK],[SPACE,SPACE]]],[[[BLANK,BLANK],[BLANK,SPACE]],[[BLANK,BLANK],[BLANK,SPACE]]],[[[['O','bblue'],['*','red']],[BLANK,BLANK]],[[BLANK,SPACE],[BLANK,SPACE]]]]
    goal = [0,0,0,2]
    coordinates = [0,0,0,0]
    special = (col.green("Press") + col.red(' Q') + col.green(' and') + col.red(' E') + col.green(' to move back and fourth in the fourth dimension'))
    return [array,goal,coordinates,'lvl',special]
예제 #6
0
파일: levels.py 프로젝트: JackV101/InterDim
def level30():
    array = [[[[['H','red'],BLANK,BLANK],[SPACE,BLANK,SPACE],[BLANK,BLANK,['O','blue']]],[[BLANK,SPACE,SPACE],[SPACE,BLANK,SPACE],[SPACE,SPACE,BLANK]],[[BLANK,SPACE,BLANK],[BLANK,SPACE,BLANK],[BLANK,SPACE,BLANK]]]]
    goal = [2,2,0,0]
    coordinates = [0,0,0,0]
    special = (col.green("Press")+col.red(' R ')+col.green('and')+col.red(' F ')+col.green('to go back and fourth in the 3rd Dimension'))
    return [array,goal,coordinates,'lvl',special]
예제 #7
0
파일: levels.py 프로젝트: JackV101/InterDim
def level11():
    array = [[[[['H','red']],[SPACE],[SPACE],[SPACE],[['O','byellow']]]]]
    goal = [0,4,0,0]
    coordinates = [0,0,0,0]
    special = (col.green("Press") + col.red(" W") + col.green(" and") + col.red(" S") + col.green(" to move up and down"))
    return [array,goal,coordinates,'dim',special]
예제 #8
0
def mainLoop(level):
    cls()

    game = True
    charX = 0
    charY = 0
    charZ = 0
    charW = 0
    addition = ""
    String = ""
    array = []
    printList = []

    if level[0] == 1:
        if level[1] == 0:
            info = levels.level10()

        if level[1] == 1:
            info = levels.level11()

    if level[0] == 2:
        if level[1] == 0:
            info = levels.level20()

        if level[1] == 1:
            info = levels.level21()

    if level[0] == 3:
        if level[1] == 0:
            info = levels.level30()

    charX = int(info[2][0])
    charY = int(info[2][1])
    charZ = int(info[2][2])
    charW = int(info[2][3])
    goalX = int(info[1][0])
    goalY = int(info[1][1])
    goalZ = int(info[1][2])
    goalW = int(info[1][3])
    array = info[0]
    goalType = str(info[3])
    special = info[4]

    while game:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                quit()
            if event.type == pygame.KEYDOWN:
                if event.key == pygame.K_a:
                    if charX > 0 and array[charW][charZ][charY][charX -
                                                                1][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charX -= 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

                if event.key == pygame.K_d:
                    if charX < len(array[charW][charZ][charY]) - 1 and array[
                            charW][charZ][charY][charX + 1][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charX += 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

                if event.key == pygame.K_w:
                    if charY > 0 and array[charW][charZ][charY -
                                                         1][charX][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charY -= 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

                if event.key == pygame.K_s:
                    if charY < len(array[charW][charZ]) - 1 and array[charW][
                            charZ][charY + 1][charX][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charY += 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

                if event.key == pygame.K_r:
                    if charZ < len(array[charW]) - 1 and array[charW][
                            charZ + 1][charY][charX][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charZ += 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

                if event.key == pygame.K_f:
                    if charZ > 0 and array[charW][charZ -
                                                  1][charY][charX][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charZ -= 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

                if event.key == pygame.K_q:
                    if charW > 0 and array[charW -
                                           1][charZ][charY][charX][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charW -= 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

                if event.key == pygame.K_e:
                    if charW < len(array) - 1 and array[
                            charW + 1][charZ][charY][charX][0] != ' ':
                        array[charW][charZ][charY][charX] = ['*', 'green']
                        charW += 1
                        array[charW][charZ][charY][charX] = ['H', 'red']

        for Y in range(len(array[charW][charZ])):

            if charW > 0 and array[charW - 1][charZ][charY][charX][0] != ' ':
                String = col.green(" |")

            else:
                String = '  '
            for X in array[charW][charZ][Y]:
                String += getattr(col, X[1])(X[0]) + " "  # + addition

            if charW < len(array) - 1 and array[
                    charW + 1][charZ][charY][charX][0] != ' ':
                String += col.green('| ')

            printList += [String]

        cls()
        #print charY

        print special

        availableUp = '  '
        if charZ < len(array[charW]) - 1:
            for i in array[charW][charZ + 1][charY]:
                if i[0] == ' ':
                    availableUp += "  "

                else:
                    availableUp += col.green('- ')

        print(availableUp)

        for X in printList:
            print(X)

        availableDown = '  '
        if charZ > 0:
            for i in array[charW][charZ - 1][charY]:
                if i[0] == ' ':
                    availableDown += "  "

                else:
                    availableDown += col.green('- ')

        print availableDown

        if charX == goalX and charY == goalY and charZ == goalZ and charW == goalW:
            if goalType == "lvl":
                level[1] += 1

            if goalType == "dim":
                level[0] += 1
                level[1] = 0

            if level[0] == 1:
                if level[1] == 0:
                    info = levels.level10()

                if level[1] == 1:
                    info = levels.level11()

            if level[0] == 2:
                if level[1] == 0:
                    info = levels.level20()

                if level[1] == 1:
                    info = levels.level21()

            if level[0] == 3:
                if level[1] == 0:
                    l30intro()
                    info = levels.level30()

                if level[1] == 1:
                    info = levels.level31()

            if level[0] == 4:
                if level[1] == 0:
                    info = levels.level40()

                if level[1] == 1:
                    info = levels.level41()

                if level[1] == 2:
                    winner()

            charX = int(info[2][0])
            charY = int(info[2][1])
            charZ = int(info[2][2])
            charW = int(info[2][3])
            goalX = int(info[1][0])
            goalY = int(info[1][1])
            goalZ = int(info[1][2])
            goalW = int(info[1][3])
            array = info[0]
            goalType = str(info[3])
            special = info[4]

        printList = []

        clock.tick(30)