zoukankan      html  css  js  c++  java
  • 「网易官方」极客战记(codecombat)攻略-沙漠-强壮的沙牦牛-the-mighty-sand-yak

    (点击图片进入关卡)

    在沙漠里通过避开强壮的沙牦牛测试你的勇气

    简介

    如果一只牦牛在 10 米以内,通过在 hero.pos.x 上加 10 以躲到右边!

    x = hero.pos.x
    y = hero.pos.y
    x = x + 10
    hero.moveXY(x, y)

    默认代码

    # 当牦牛靠近时向右移动10米来躲避
    # 躲避4头牦牛完成此关
    while True:
        # 使用你的灵石获取你当前的 x 和 y 位置。
        x = hero.pos.x
        y = hero.pos.y

     

        # 找到最近的耗牛。
        yak = hero.findNearestEnemy()

     

        # 使用 if 仅仅当牦牛少于10米距离的时候。
        if hero.distanceTo(yak) < 10:
            # 向右移动,添加10到你的x位置。

     

            # 使用 moveXY 来移动!

     

            pass

     

    概览

    hero.pos 属性代表你的英雄的当前位置。 这个 pos 对象有两个属性, x 和 y :

    x = hero.pos.x
    y = hero.pos.y

    这些号码代表英雄在地图上的位置。

    所以,如果你想将你的英雄移动 10 米到他当前位置的右侧,那将是:

    x = x + 10

    y 也是一样的(没有上下运动)。

    用 hero.moveXY(x, y) 移动到新的坐标。

    有时你可能会看到这一切都写在一行上,比如:

    hero.moveXY(hero.pos.x + 10, hero.pos.y)

    强壮的沙牦牛 解法

    # 当牦牛靠近时向右移动10米来躲避
    # 躲避4头牦牛完成此关
    while True:
        # 使用你的灵石获取你当前的 x 和 y 位置。
        x = hero.pos.x
        y = hero.pos.y

     

        # 找到最近的耗牛。
        yak = hero.findNearestEnemy()

     

        # 使用 if 仅仅当牦牛少于10米距离的时候。
        if hero.distanceTo(yak) < 10:
            # 向右移动,添加10到你的x位置。
            x += 10
            # Use moveXY to move!
            hero.moveXY(x, y)
     
  • 相关阅读:
    FSBQPIDMI总线的区别
    为什么PCI-e比SATA快这么多?
    chage命令管理用户口令时效
    账户管理groupadd groupmod groupdel usermod usermod userdel
    linux 里 /etc/passwd 、/etc/shadow和/etc/group 文件内容解释
    RPM常见用法
    智力逻辑题
    Android ROM 制作教程
    智能家居项目(2):项目project框架的搭建
    5999卖999!是噱头还是颠覆
  • 原文地址:https://www.cnblogs.com/codecombat/p/12966959.html
Copyright © 2011-2022 走看看