1
0
mirror of https://gitlab.com/Deukhoofd/BattleSim.git synced 2025-10-28 18:20:04 +00:00

Added Find Battle Unranked

This commit is contained in:
Deukhoofd
2016-02-10 03:10:17 +01:00
parent 398d23a0d6
commit 16ac69171d
23 changed files with 778 additions and 419 deletions

View File

@@ -4,6 +4,57 @@ $ ->
$mainButtons.on 'click', '.teambuilder_button', (e) ->
PokeBattle.navigation.showTeambuilder()
challengeobjunranked =
eventName: "findBattleunranked"
populate: $mainButtons.find('.find_battle_select_team')
button: $mainButtons.find('.find_battle_non_ranked')
defaultClauses: [
Conditions.SLEEP_CLAUSE
Conditions.EVASION_CLAUSE
Conditions.SPECIES_CLAUSE
Conditions.OHKO_CLAUSE
Conditions.PRANKSTER_SWAGGER_CLAUSE
Conditions.UNRELEASED_BAN
Conditions.TIMED_BATTLE
]
blockedClauses: true
challengeobj =
eventName: "findBattle"
populate: $mainButtons.find('.find_battle_select_team')
button: $mainButtons.find('.find_battle')
defaultClauses: [
Conditions.SLEEP_CLAUSE
Conditions.EVASION_CLAUSE
Conditions.SPECIES_CLAUSE
Conditions.OHKO_CLAUSE
Conditions.PRANKSTER_SWAGGER_CLAUSE
Conditions.UNRELEASED_BAN
Conditions.RATED_BATTLE
Conditions.TIMED_BATTLE
]
blockedClauses: true
challengepaneobjunranked = new challengePaneObject(challengeobjunranked)
challengePaneArray.push(challengepaneobjunranked)
challengepaneobj = new challengePaneObject(challengeobj)
challengePaneArray.push(challengepaneobj)
createChallengePane
eventName: "findBattleunranked"
populate: $mainButtons.find('.find_battle_select_team')
button: $mainButtons.find('.find_battle_non_ranked')
defaultClauses: [
Conditions.SLEEP_CLAUSE
Conditions.EVASION_CLAUSE
Conditions.SPECIES_CLAUSE
Conditions.OHKO_CLAUSE
Conditions.PRANKSTER_SWAGGER_CLAUSE
Conditions.UNRELEASED_BAN
Conditions.TIMED_BATTLE
]
blockedClauses: true
createChallengePane
eventName: "findBattle"
populate: $mainButtons.find('.find_battle_select_team')
@@ -26,6 +77,12 @@ $ ->
.addClass('icon-spinner spinner-anim')
.removeClass("icon-earth")
$mainButtons.find('.find_battle_non_ranked').on 'challenge', ->
$this = $(this)
$this.find('.find-icon')
.addClass('icon-spinner spinner-anim')
.removeClass("icon-earth")
$mainButtons.find('.display_credits').click ->
$modal = PokeBattle.modal('modals/credits')
$modal.find('.modal-footer button').first().focus()
@@ -40,11 +97,24 @@ depressFindBattle = ->
.addClass("icon-earth")
$mainButtons.find('.find_battle_select_team .select').removeClass('disabled')
depressFindBattleUnranked = ->
$mainButtons = $('.main_buttons')
$button = $mainButtons.find('.find_battle_non_ranked')
$button.removeClass("disabled")
$button.find('.find-icon')
.removeClass("icon-spinner spinner-anim")
.addClass("icon-earth")
$mainButtons.find('.find_battle_select_team .select').removeClass('disabled')
$(window).load ->
$mainButtons = $('.main_buttons')
PokeBattle.battles.on 'add', (battle) ->
if !battle.get('spectating')
depressFindBattle()
depressFindBattleUnranked()
PokeBattle.primus.on 'findBattleCanceled', depressFindBattle
PokeBattle.events.on 'findBattleCanceled', depressFindBattle
PokeBattle.primus.on 'findBattleCanceledUnranked', depressFindBattleUnranked
PokeBattle.events.on 'findBattleCanceledUnranked', depressFindBattleUnranked