Removed alt button, set level to max level for generation on team creation as to prevent confusion. Feature Complete for 1.0 beta.

This commit is contained in:
Deukhoofd 2016-02-20 15:18:22 +01:00
parent 1114909caf
commit ed924b9957
5 changed files with 207 additions and 204 deletions

View File

@ -1,189 +1,189 @@
# eventName should be one of "challenge" or "find battle"
# opts may include whether to enable clauses, for example
@challengePaneArray = []
class @challengePaneObject
constructor: (@object) ->
@event = @object.eventName
@button = @object.button
@populate = @object.populate
@clauses = @object.defaultClauses
@blockedClauses = @object.blockedClauses
@SelectedTeamID = null
@SelectedFormat = null
@ChallengePaneOpts =
SelectedTeamID : null
SelectedFormat : null
SelectedAlt : null
@createChallengeButton = (opts) ->
$button = opts.button
$eventName = opts.eventName
$clauses = opts.clauses
capitalizedEventName = "#{$eventName[0].toUpperCase()}#{$eventName.substr(1)}"
acceptEventName = "accept#{capitalizedEventName}"
rejectEventName = "reject#{capitalizedEventName}"
cancelEventName = "cancel#{capitalizedEventName}"
getSelectedTeam = ->
PokeBattle.TeamStore.get(@ChallengePaneOpts.SelectedTeamID) || PokeBattle.TeamStore.at(0)
cancelChallenge = ->
#enableButtons()
format = getChallengeOpts().SelectedFormat
PokeBattle.primus.send(cancelEventName, format)
$button.trigger('cancelChallenge')
getChallengeOpts = ->
return @ChallengePaneOpts
disableButtons = ->
$('.select').addClass('disabled')
#$buttons.addClass('disabled')
defaultformat = ->
return @DEFAULT_FORMAT
$button.on 'click.challenge', ->
# Start requesting for notify permission here
PokeBattle.requestNotifyPermission()
options = getChallengeOpts()
if options.SelectedFormat != null
format = options.SelectedFormat
else
format = defaultformat()
# Toggle state when you press the button.
if !$button.hasClass('disabled')
team = getSelectedTeam()
unless team
alert("You need to create a team using the Teambuilder before you can battle.")
PokeBattle.navigation.showTeambuilder()
return
disableButtons()
teamJSON = team.toNonNullJSON().pokemon
# Send the event
PokeBattle.primus.send($eventName, format, teamJSON, options.selectedAlt)
$button.addClass('disabled').trigger('challenge')
else
cancelChallenge()
@createChallengePaneNew = (opts) ->
$wrapper = opts.populate
$accept = opts.acceptButton || $()
$reject = opts.rejectButton || $()
generation = opts.generation
getSelectedTeam = ->
PokeBattle.TeamStore.get(@ChallengePaneOpts.SelectedTeamID) || PokeBattle.TeamStore.at(0)
renderCurrentTeam = ($context) ->
$selectTeam = $context.find('.select-team')
if PokeBattle.TeamStore.length > 0
currentTeam = getSelectedTeam()
html = JST['team_dropdown'](window: window, team: currentTeam)
$selectTeam.html(html)
else
$selectTeam.html("You have no teams!")
disableButtons = ->
$('.select').addClass('disabled')
$wrapper.html(JST['new_battle']({window}))
$selectFormat = $wrapper.find(".select-format")
# Clicking the alts dropdown brings down an alt selection dropdown menu
$wrapper.find('.select-alt').click (e) ->
html = JST['alt_dropdown'](alts: PokeBattle.alts.list, username: PokeBattle.username)
$wrapper.find('.alt-dropdown').html(html)
setAlt = (altname) ->
@ChallengePaneOpts.SelectedAlt = altname
# Selecting an alt from the dropdown
$wrapper.find('.alt-dropdown').on 'click', '.select-alt-dropdown-item', (e) ->
setAlt($(this).data('alt-name'))
$wrapper.find('.select-alt').html($(this).html())
# When add alt is clicked, show the alt input form
$wrapper.find('.alt-dropdown').on 'click', '.add-alt-dropdown-item', (e) ->
toggleAltInput(true)
# Clicking the Add Alt Button
$wrapper.find('.alt-input .add-button').click (e) ->
altName = $wrapper.find('.alt-input input').val().trim()
PokeBattle.alts.createAlt(altName)
# Clicking the Cancel Add Alt Button
$wrapper.find('.alt-input .cancel-button').click (e) ->
toggleAltInput(false)
# Clicking the team dropdown brings down a team selection menu.
# Also updates the allTeams collection
$wrapper.find('.select-team').click (e) ->
allTeams = PokeBattle.TeamStore.models || []
html = JST['team_dropdown'](window: window, teams: allTeams)
$wrapper.find('.team-dropdown').html(html)
setTeam = (slot) ->
@ChallengePaneOpts.SelectedTeamID = PokeBattle.TeamStore.at(slot).id
# Selecting a team from the menu
$wrapper.find('.team-dropdown').on 'click', '.select-team-dropdown-item', (e) ->
slot = $(e.currentTarget).data('slot')
setTeam(slot)
renderCurrentTeam($wrapper)
# Selecting build team from the menu
$wrapper.find('.team-dropdown').on 'click', '.build-team-option', (e) ->
PokeBattle.navigation.showTeambuilder()
setFormat = (format) ->
@ChallengePaneOpts.SelectedFormat = format
# Selecting the format changes the dropdown.
$wrapper.find('.format-dropdown').on 'click', '.select-format-dropdown-item', (e) ->
$target = $(e.currentTarget)
format = $target.data('format')
$selectFormat.text($target.text())
setFormat(format)
$selectFormat.data('format', format)
# Select non-alt option
$wrapper.find('.select-alt').html(JST['alt_dropdown'](alt: null, username: PokeBattle.username))
# Auto-select format.
if generation
# If a generation is passed, auto-select it.
$format = $wrapper.find(".format-dropdown a[data-format='#{generation}']")
$format.first().click()
$wrapper.find('.select-format').addClass('disabled')
else
# Auto-select first available format.
$wrapper.find('.format-dropdown a').first().click()
isAttachedToDom = ->
$.contains(document, $wrapper.get(0))
renderCurrentTeam($wrapper)
# Called when a team has been updated
teamUpdated = ->
# If this challenge panel no longer exists, remove the callback
if not isAttachedToDom()
PokeBattle.TeamStore.off 'add remove reset saved', teamUpdated
return
# Rerender the current team
renderCurrentTeam($wrapper)
# Start listening for team updated events
PokeBattle.TeamStore.on 'add remove reset saved', teamUpdated
# eventName should be one of "challenge" or "find battle"
# opts may include whether to enable clauses, for example
@challengePaneArray = []
class @challengePaneObject
constructor: (@object) ->
@event = @object.eventName
@button = @object.button
@populate = @object.populate
@clauses = @object.defaultClauses
@blockedClauses = @object.blockedClauses
@SelectedTeamID = null
@SelectedFormat = null
@ChallengePaneOpts =
SelectedTeamID : null
SelectedFormat : null
SelectedAlt : null
@createChallengeButton = (opts) ->
$button = opts.button
$eventName = opts.eventName
$clauses = opts.clauses
capitalizedEventName = "#{$eventName[0].toUpperCase()}#{$eventName.substr(1)}"
acceptEventName = "accept#{capitalizedEventName}"
rejectEventName = "reject#{capitalizedEventName}"
cancelEventName = "cancel#{capitalizedEventName}"
getSelectedTeam = ->
PokeBattle.TeamStore.get(@ChallengePaneOpts.SelectedTeamID) || PokeBattle.TeamStore.at(0)
cancelChallenge = ->
#enableButtons()
format = getChallengeOpts().SelectedFormat
PokeBattle.primus.send(cancelEventName, format)
$button.trigger('cancelChallenge')
getChallengeOpts = ->
return @ChallengePaneOpts
disableButtons = ->
$('.select').addClass('disabled')
#$buttons.addClass('disabled')
defaultformat = ->
return @DEFAULT_FORMAT
$button.on 'click.challenge', ->
# Start requesting for notify permission here
PokeBattle.requestNotifyPermission()
options = getChallengeOpts()
if options.SelectedFormat != null
format = options.SelectedFormat
else
format = defaultformat()
# Toggle state when you press the button.
if !$button.hasClass('disabled')
team = getSelectedTeam()
unless team
alert("You need to create a team using the Teambuilder before you can battle.")
PokeBattle.navigation.showTeambuilder()
return
disableButtons()
teamJSON = team.toNonNullJSON().pokemon
# Send the event
PokeBattle.primus.send($eventName, format, teamJSON, options.selectedAlt)
$button.addClass('disabled').trigger('challenge')
else
cancelChallenge()
@createChallengePaneNew = (opts) ->
$wrapper = opts.populate
$accept = opts.acceptButton || $()
$reject = opts.rejectButton || $()
generation = opts.generation
getSelectedTeam = ->
PokeBattle.TeamStore.get(@ChallengePaneOpts.SelectedTeamID) || PokeBattle.TeamStore.at(0)
renderCurrentTeam = ($context) ->
$selectTeam = $context.find('.select-team')
if PokeBattle.TeamStore.length > 0
currentTeam = getSelectedTeam()
html = JST['team_dropdown'](window: window, team: currentTeam)
$selectTeam.html(html)
else
$selectTeam.html("You have no teams!")
disableButtons = ->
$('.select').addClass('disabled')
$wrapper.html(JST['new_battle']({window}))
$selectFormat = $wrapper.find(".select-format")
# Clicking the alts dropdown brings down an alt selection dropdown menu
$wrapper.find('.select-alt').click (e) ->
html = JST['alt_dropdown'](alts: PokeBattle.alts.list, username: PokeBattle.username)
$wrapper.find('.alt-dropdown').html(html)
setAlt = (altname) ->
@ChallengePaneOpts.SelectedAlt = altname
# Selecting an alt from the dropdown
$wrapper.find('.alt-dropdown').on 'click', '.select-alt-dropdown-item', (e) ->
setAlt($(this).data('alt-name'))
$wrapper.find('.select-alt').html($(this).html())
# When add alt is clicked, show the alt input form
$wrapper.find('.alt-dropdown').on 'click', '.add-alt-dropdown-item', (e) ->
toggleAltInput(true)
# Clicking the Add Alt Button
$wrapper.find('.alt-input .add-button').click (e) ->
altName = $wrapper.find('.alt-input input').val().trim()
PokeBattle.alts.createAlt(altName)
# Clicking the Cancel Add Alt Button
$wrapper.find('.alt-input .cancel-button').click (e) ->
toggleAltInput(false)
# Clicking the team dropdown brings down a team selection menu.
# Also updates the allTeams collection
$wrapper.find('.select-team').click (e) ->
allTeams = PokeBattle.TeamStore.models || []
html = JST['team_dropdown'](window: window, teams: allTeams)
$wrapper.find('.team-dropdown').html(html)
setTeam = (slot) ->
@ChallengePaneOpts.SelectedTeamID = PokeBattle.TeamStore.at(slot).id
# Selecting a team from the menu
$wrapper.find('.team-dropdown').on 'click', '.select-team-dropdown-item', (e) ->
slot = $(e.currentTarget).data('slot')
setTeam(slot)
renderCurrentTeam($wrapper)
# Selecting build team from the menu
$wrapper.find('.team-dropdown').on 'click', '.build-team-option', (e) ->
PokeBattle.navigation.showTeambuilder()
setFormat = (format) ->
@ChallengePaneOpts.SelectedFormat = format
# Selecting the format changes the dropdown.
$wrapper.find('.format-dropdown').on 'click', '.select-format-dropdown-item', (e) ->
$target = $(e.currentTarget)
format = $target.data('format')
$selectFormat.text($target.text())
setFormat(format)
$selectFormat.data('format', format)
# Select non-alt option
$wrapper.find('.select-alt').html(JST['alt_dropdown'](alt: null, username: PokeBattle.username))
# Auto-select format.
if generation
# If a generation is passed, auto-select it.
$format = $wrapper.find(".format-dropdown a[data-format='#{generation}']")
$format.first().click()
$wrapper.find('.select-format').addClass('disabled')
else
# Auto-select first available format.
$wrapper.find('.format-dropdown a').first().click()
isAttachedToDom = ->
$.contains(document, $wrapper.get(0))
renderCurrentTeam($wrapper)
# Called when a team has been updated
teamUpdated = ->
# If this challenge panel no longer exists, remove the callback
if not isAttachedToDom()
PokeBattle.TeamStore.off 'add remove reset saved', teamUpdated
return
# Rerender the current team
renderCurrentTeam($wrapper)
# Start listening for team updated events
PokeBattle.TeamStore.on 'add remove reset saved', teamUpdated
@createChallengePane = (opts) ->
$wrapper = opts.populate
$button = opts.button
@ -373,4 +373,4 @@ class @challengePaneObject
renderCurrentTeam($wrapper)
# Start listening for team updated events
PokeBattle.TeamStore.on 'add remove reset saved', teamUpdated
PokeBattle.TeamStore.on 'add remove reset saved', teamUpdated

View File

@ -183,8 +183,12 @@ class @PokemonEditView extends Backbone.View
value = parseInt($input.val(), 10)
value = @generation.maxLevel if isNaN(value) || value > @generation.maxLevel
value = 1 if value < 1
$input.val(value)
@pokemon.set("level", value)
@changeLevel2(value)
changeLevel2: (level) =>
$levelBox = $(".selected_level")
$levelBox.val(level)
@pokemon.set("level", level)
changeIv: (e) =>
# todo: make changeIv and changeEv DRY
@ -391,6 +395,7 @@ class @PokemonEditView extends Backbone.View
@renderStats()
@renderMoves()
@renderFormat()
@changeLevel2(@generation.maxLevel) if typeof @pokemon.get("level") == "undefined"
# Disable entering values if this is a NullPokemon
$elements = @$el.find("input, select").not(".species input, .species select")

View File

@ -1,15 +1,3 @@
p
strong In-battle display name:
.alt-input.clearfix.hidden
.input-wrapper
input(type="text")
.buttons-wrapper
button.button.add-button Add
button.button.cancel-button Cancel
.alt-dropdown-section.dropdown
.select.select-alt(data-toggle="dropdown")
ul.dropdown-menu.alt-dropdown(role = "menu")
p
strong Format:
.dropdown

View File

@ -5496,6 +5496,7 @@
this.changeEv = __bind(this.changeEv, this);
this.focusEv = __bind(this.focusEv, this);
this.changeIv = __bind(this.changeIv, this);
this.changeLevel2 = __bind(this.changeLevel2, this);
this.changeLevel = __bind(this.changeLevel, this);
this.changeGender = __bind(this.changeGender, this);
this.changeItem = __bind(this.changeItem, this);
@ -5750,8 +5751,14 @@
if (value < 1) {
value = 1;
}
$input.val(value);
return this.pokemon.set("level", value);
return this.changeLevel2(value);
};
PokemonEditView.prototype.changeLevel2 = function(level) {
var $levelBox;
$levelBox = $(".selected_level");
$levelBox.val(level);
return this.pokemon.set("level", level);
};
PokemonEditView.prototype.changeIv = function(e) {
@ -6031,6 +6038,9 @@
this.renderStats();
this.renderMoves();
this.renderFormat();
if (typeof this.pokemon.get("level") === "undefined") {
this.changeLevel2(this.generation.maxLevel);
}
$elements = this.$el.find("input, select").not(".species input, .species select");
$elements.prop("disabled", this.pokemon.isNull);
setSelectizeDisabled($elements, this.pokemon.isNull);

View File

@ -626,7 +626,7 @@ buf.push("<p class=\"logo\"></p><h2>Chat</h2><ul class=\"nav nav_rooms\"><li cla
this["JST"]["new_battle"] = function anonymous(locals
/**/) {
var buf = [];
var locals_ = (locals || {}),window = locals_.window,defaultClauses = locals_.defaultClauses;buf.push("<p><strong>In-battle display name:</strong></p><div class=\"alt-input clearfix hidden\"><div class=\"input-wrapper\"><input type=\"text\"/></div><div class=\"buttons-wrapper\"><button class=\"button add-button\">Add</button><button class=\"button cancel-button\">Cancel</button></div></div><div class=\"alt-dropdown-section dropdown\"><div data-toggle=\"dropdown\" class=\"select select-alt\"></div><ul role=\"menu\" class=\"dropdown-menu alt-dropdown\"></ul></div><p><strong>Format:</strong></p><div class=\"dropdown\"><div data-toggle=\"dropdown\" class=\"select select-format\"></div><ul role=\"menu\" class=\"dropdown-menu format-dropdown\">");
var locals_ = (locals || {}),window = locals_.window,defaultClauses = locals_.defaultClauses;buf.push("<p><strong>Format:</strong></p><div class=\"dropdown\"><div data-toggle=\"dropdown\" class=\"select select-format\"></div><ul role=\"menu\" class=\"dropdown-menu format-dropdown\">");
var allformats = window.PokeBattle.conditions.Formats()
// iterate allformats
;(function(){