2014-08-23 22:00:35 -04:00
|
|
|
CocoView = require 'views/kinds/CocoView'
|
|
|
|
template = require 'templates/play/level/level-flags-view'
|
|
|
|
{me} = require 'lib/auth'
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
RealTimeCollection = require 'collections/RealTimeCollection'
|
2014-08-23 22:00:35 -04:00
|
|
|
|
|
|
|
module.exports = class LevelFlagsView extends CocoView
|
|
|
|
id: 'level-flags-view'
|
|
|
|
template: template
|
|
|
|
|
|
|
|
subscriptions:
|
|
|
|
'playback:real-time-playback-started': 'onRealTimePlaybackStarted'
|
|
|
|
'playback:real-time-playback-ended': 'onRealTimePlaybackEnded'
|
|
|
|
'surface:stage-mouse-down': 'onStageMouseDown'
|
|
|
|
'god:new-world-created': 'onNewWorld'
|
|
|
|
'god:streaming-world-updated': 'onNewWorld'
|
2014-08-24 19:09:06 -04:00
|
|
|
'surface:remove-flag': 'onRemoveFlag'
|
2014-08-29 18:10:04 -04:00
|
|
|
'real-time-multiplayer:joined-game': 'onJoinedMultiplayerGame'
|
|
|
|
'real-time-multiplayer:left-game': 'onLeftMultiplayerGame'
|
2014-08-23 22:00:35 -04:00
|
|
|
|
|
|
|
events:
|
|
|
|
'click .green-flag': -> @onFlagSelected color: 'green', source: 'button'
|
|
|
|
'click .black-flag': -> @onFlagSelected color: 'black', source: 'button'
|
|
|
|
'click .violet-flag': -> @onFlagSelected color: 'violet', source: 'button'
|
|
|
|
|
|
|
|
shortcuts:
|
|
|
|
'g': -> @onFlagSelected color: 'green', source: 'shortcut'
|
|
|
|
'b': -> @onFlagSelected color: 'black', source: 'shortcut'
|
|
|
|
'v': -> @onFlagSelected color: 'violet', source: 'shortcut'
|
|
|
|
'esc': -> @onFlagSelected color: null, source: 'shortcut'
|
2014-08-24 19:09:06 -04:00
|
|
|
'delete, del, backspace': 'onDeletePressed'
|
2014-08-23 22:00:35 -04:00
|
|
|
|
|
|
|
constructor: (options) ->
|
|
|
|
super options
|
|
|
|
@world = options.world
|
|
|
|
|
|
|
|
onRealTimePlaybackStarted: (e) ->
|
|
|
|
@realTime = true
|
|
|
|
@$el.show()
|
|
|
|
@flags = {}
|
|
|
|
@flagHistory = []
|
|
|
|
|
|
|
|
onRealTimePlaybackEnded: (e) ->
|
2014-08-24 19:48:59 -04:00
|
|
|
@onFlagSelected color: null
|
2014-08-25 00:39:34 -04:00
|
|
|
@realTime = false
|
2014-08-23 22:00:35 -04:00
|
|
|
@$el.hide()
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
@multiplayerSession?.set 'state', 'coding'
|
2014-08-23 22:00:35 -04:00
|
|
|
|
|
|
|
onFlagSelected: (e) ->
|
2014-08-25 00:39:34 -04:00
|
|
|
return unless @realTime
|
2014-08-25 17:02:23 -04:00
|
|
|
color = if e.color is @flagColor then null else e.color
|
2014-08-23 22:00:35 -04:00
|
|
|
@flagColor = color
|
2014-08-24 19:09:06 -04:00
|
|
|
Backbone.Mediator.publish 'level:flag-color-selected', color: color
|
2014-08-23 22:00:35 -04:00
|
|
|
@$el.find('.flag-button').removeClass('active')
|
|
|
|
@$el.find(".#{color}-flag").addClass('active') if color
|
|
|
|
|
|
|
|
onStageMouseDown: (e) ->
|
|
|
|
return unless @flagColor and @realTime
|
|
|
|
pos = x: e.worldPos.x, y: e.worldPos.y
|
2014-08-24 01:24:00 -04:00
|
|
|
flag = player: me.id, team: me.team, color: @flagColor, pos: pos, time: @world.dt * @world.frames.length, active: true
|
2014-08-23 22:00:35 -04:00
|
|
|
@flags[@flagColor] = flag
|
|
|
|
@flagHistory.push flag
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
@realTimeFlags?.create flag
|
2014-08-23 22:00:35 -04:00
|
|
|
Backbone.Mediator.publish 'level:flag-updated', flag
|
2014-08-24 19:09:06 -04:00
|
|
|
#console.log 'trying to place flag at', @world.age, 'and think it will happen by', flag.time
|
2014-08-23 22:00:35 -04:00
|
|
|
|
2014-08-24 19:09:06 -04:00
|
|
|
onDeletePressed: (e) ->
|
|
|
|
return unless @realTime
|
|
|
|
Backbone.Mediator.publish 'surface:remove-selected-flag', {}
|
|
|
|
|
|
|
|
onRemoveFlag: (e) ->
|
2014-08-23 22:00:35 -04:00
|
|
|
delete @flags[e.color]
|
2014-08-24 01:24:00 -04:00
|
|
|
flag = player: me.id, team: me.team, color: e.color, time: @world.dt * @world.frames.length, active: false
|
2014-08-23 22:00:35 -04:00
|
|
|
@flagHistory.push flag
|
|
|
|
Backbone.Mediator.publish 'level:flag-updated', flag
|
2014-08-24 19:09:06 -04:00
|
|
|
#console.log e.color, 'deleted at time', flag.time
|
2014-08-23 22:00:35 -04:00
|
|
|
|
|
|
|
onNewWorld: (event) ->
|
|
|
|
return unless event.world.name is @world.name
|
2014-08-25 00:39:34 -04:00
|
|
|
@world = @options.world = event.world
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
|
2014-08-29 18:10:04 -04:00
|
|
|
onJoinedMultiplayerGame: (e) ->
|
|
|
|
@realTimeFlags = new RealTimeCollection('multiplayer_level_sessions/' + e.session.id + '/flagHistory')
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
@realTimeFlags.on 'add', @onRealTimeMultiplayerFlagAdded
|
|
|
|
|
2014-08-29 18:10:04 -04:00
|
|
|
onLeftMultiplayerGame: (e) ->
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
@multiplayerState = null
|
|
|
|
if @multiplayerSession
|
|
|
|
@multiplayerSession.off()
|
|
|
|
@multiplayerSession = null
|
|
|
|
if @realTimeFlags
|
|
|
|
@realTimeFlags.off()
|
|
|
|
@realTimeFlags = null
|
|
|
|
|
|
|
|
onRealTimeMultiplayerFlagAdded: (e) =>
|
|
|
|
if e.get('player') != me.id
|
|
|
|
# TODO: what is @flags used for?
|
|
|
|
# Build local flag from Backbone.Model flag
|
|
|
|
flag =
|
|
|
|
player: e.get('player')
|
|
|
|
team: e.get('team')
|
|
|
|
color: e.get('color')
|
|
|
|
pos: e.get('pos')
|
|
|
|
time: e.get('time')
|
|
|
|
active: e.get('active')
|
|
|
|
@flagHistory.push flag
|
|
|
|
Backbone.Mediator.publish 'level:flag-updated', flag
|