當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Range.getValue函數代碼示例

本文整理匯總了TypeScript中math/Range.getValue函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript getValue函數的具體用法?TypeScript getValue怎麽用?TypeScript getValue使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了getValue函數的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: fire

  public fire(angle : number, position : Vector, velocity : Vector, isMine : boolean, commitFireFn : (fireEnergy : number, fireDelay : number, recoilAcceleration : number) => boolean) : any {
    let level = this.level_.getValue();
    if (level < 0) {
      return null;
    }

    let fireEnergy = this.getFireEnergy_();
    let fireDelay = this.getFireDelay_();
    let recoilAcceleration = isMine ? 0 : this.getRecoilAcceleration_();

    if (!commitFireFn(fireEnergy, fireDelay, recoilAcceleration)) {
      return null;
    }

    let lifetime = this.getLifetime_();
    let damage = this.getDamage_();
    let bounceCount = this.getBounceCount_();
    let blastRadius = this.getBlastRadius_();
    let proxRadius = this.getProxRadius_();
    let newVelocity = isMine ? Vector.ZERO : velocity.add(Vector.fromPolar(this.getBombSpeed_(), angle));
    let projectile = this.simulation_.modelObjectFactory.newBomb(this.owner_, level, position, newVelocity, lifetime, damage, bounceCount, blastRadius, proxRadius);

    this.owner_.addProjectile(projectile);

    return {
      'type': this.getType(),
      'level': level,
      'vel': newVelocity.toArray(),
      'bounceCount': bounceCount
    };
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:31,代碼來源:BombBay.ts

示例2: fire

  public fire(angle : number, position : Vector, velocity : Vector, commitFireFn : (fireEnergy : number, fireDelay : number) => boolean) : any {
    let fireEnergy = this.getFireEnergy_();
    let fireDelay = this.getFireDelay_();
    let level = this.level_.getValue();

    if (level < 0 || !commitFireFn(fireEnergy, fireDelay)) {
      return null;
    }

    let factory = this.simulation_.modelObjectFactory;
    let lifetime = this.getLifetime_();
    let damage = this.getDamage_();
    let bounceCount = this.getBounceCount_();
    let bulletSpeed = this.getBulletSpeed_();
    let multifireAngle = (this.multifireState_ == ToggleState.ENABLED) ? this.gunSettings_['multifire']['angle'] : 0;

    let bullets = new Array<Bullet>();
    if (this.gunSettings_['doubleBarrel']) {
      let bulletVelocity = velocity.add(Vector.fromPolar(bulletSpeed, angle));
      let leftPosition = position.add(Vector.fromPolar(10, angle - Math.PI / 2));
      let rightPosition = position.add(Vector.fromPolar(10, angle + Math.PI / 2));

      bullets.push(factory.newBullet(this.owner_, level, leftPosition, bulletVelocity, lifetime, damage, bounceCount));
      bullets.push(factory.newBullet(this.owner_, level, rightPosition, bulletVelocity, lifetime, damage, bounceCount));
    } else {
      let bulletVelocity = velocity.add(Vector.fromPolar(bulletSpeed, angle));
      bullets.push(factory.newBullet(this.owner_, level, position, bulletVelocity, lifetime, damage, bounceCount));
    }

    if (this.multifireState_ == ToggleState.ENABLED) {
      let leftVelocity = velocity.add(Vector.fromPolar(bulletSpeed, angle - multifireAngle));
      let rightVelocity = velocity.add(Vector.fromPolar(bulletSpeed, angle + multifireAngle));
      bullets.push(factory.newBullet(this.owner_, level, position, leftVelocity, lifetime, damage, bounceCount));
      bullets.push(factory.newBullet(this.owner_, level, position, rightVelocity, lifetime, damage, bounceCount));
    }

    for (let i = 0; i < bullets.length; ++i) {
      this.owner_.addProjectile(bullets[i]);
    }

    new BulletGroup(bullets);

    return {
      'type': this.getType(),
      'angle': angle,
      'level': level,
      'bounceCount': bounceCount,
      'multifire': this.multifireState_ == ToggleState.ENABLED
    }
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:50,代碼來源:Gun.ts

示例3: onFired

  public onFired(timeDiff : number, position : Vector, velocity : Vector, weaponData : any) {
    assert(weaponData['type'] == this.getType(), 'Cannot fire bomb with incorrect weapon type: ' + weaponData['type']);

    let level = weaponData['level'];
    let bounceCount = weaponData['bounceCount'];
    velocity = Vector.fromArray(weaponData['vel']);

    // Make sure the level is correct so the following getters use the right value for their calculations.
    this.level_.setValue(level);

    let projectile = this.simulation_.modelObjectFactory.newBomb(this.owner_, this.level_.getValue(), position, velocity, this.getLifetime_(), this.getDamage_(), bounceCount, this.getBlastRadius_(), this.getProxRadius_());
    for (let i = 0; i < timeDiff; ++i) {
      projectile.advanceTime();
    }
    this.owner_.addProjectile(projectile);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:16,代碼來源:BombBay.ts

示例4: getLevel

 public getLevel() : number {
   return this.level_.getValue();
 }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:3,代碼來源:BombBay.ts

示例5: getProxRadius_

 private getProxRadius_() : number {
   return this.bombBaySettings_['proxRadius'] + this.level_.getValue() * this.bombBaySettings_['proxRadiusUpgrade'];
 }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:3,代碼來源:BombBay.ts

示例6: getDamage_

 private getDamage_() : number {
   return this.bombBaySettings_['damage'] + this.level_.getValue() * this.bombBaySettings_['damageUpgrade'];
 }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:3,代碼來源:BombBay.ts

示例7: getFireEnergy_

 private getFireEnergy_() : number {
   let baseEnery = this.multifireState_ == ToggleState.ENABLED
     ? this.gunSettings_['multifire']['fireEnergy']
     : this.gunSettings_['fireEnergy'];
   return baseEnery * (this.level_.getValue() + 1);
 }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:6,代碼來源:Gun.ts


注:本文中的math/Range.getValue函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。