Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 5x 5x 5x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 3x 3x 3x 3x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 7x 1x 6x 4x 1x 3x 4x 1x 3x 6x 1x 5x 3x 1x 2x 16x 1x 15x 2x 1x 1x 7x 1x 6x 8x 1x 7x 14x 1x 13x 13x 1x 12x | import { Layer } from './layer' import { Field } from './field' import { Broadcaster } from './broadcaster' import { Screen } from './screen' import { Spot } from './spot' import { LayerBuilder } from '../builder/layerBuilder' import { FieldBuilder } from '../builder/fieldBuilder' import { BroadcasterBuilder } from '../builder/broadcasterBuilder' import { SpotBuilder } from '../builder/spotBuilder' import { LayerConfig } from '../value/layerConfig' import { BroadcasterConfig } from '../value/broadcasterConfig' import { SpotConfig } from '../value/spotConfig' import { ScreenBuilder } from '../builder/screenBuilder' import { CommentContext } from './commentContext' import { CommentSupplier } from './commentSupplier' import { CommentDeployer } from './commentDeployer' import { CommentSupplierBuilder } from '../builder/commentSupplierBuilder' import { CommentSupplierConfig } from '../value/commentSupplierConfig' import { CommentDeployerConfig } from '../value/commentDeployerConfig' import { CommentDeployerBuilder } from '../builder/commentDeployerBuilder' import { CommentContextSupplier } from './commentContextSupplier' import { Scorer } from './scorer' import { ScorerBuilder } from '../builder/scorerBuilder' import { ScorerConfig } from '../value/scorerConfig' import { Ticker } from './ticker' import { TickerBuilder } from '../builder/tickerBuilder' import { TickerConfig } from '../value/tickerConfig' import { FieldConfig } from '../value/fieldConfig' import { ScreenConfig } from '../value/screenConfig' import { CommentContextConfig } from '../value/commentContextConfig' import { LiveContextConfig } from '../value/liveContextConfig' import { LiveContext } from './liveContext' /** * 本ゲームが動作する g.Scene が持つゲーム情報を格納したパラメタ一覧です. */ export interface LiveOnAirScene { /** * レイアウト情報. */ readonly layer: Layer /** * マップ情報. */ readonly field: Field /** * 放送者(プレイヤー)情報. */ readonly broadcaster: Broadcaster /** * 生放送環境情報. */ readonly screen: Screen /** * 生放送中に利用可能な環境情報(ユーザ定義分) */ readonly liveContext: Partial<LiveContext> /** * スポット情報一覧. */ readonly spots: Spot[] /** * 条件付きコメントを表示する際に利用可能な環境情報 */ readonly commentContext: CommentContext /** * コメント生成器 */ readonly commentSupplier: CommentSupplier /** * コメント配置器 */ readonly commentDeployer: CommentDeployer /** * 得点制御器. */ readonly scorer: Scorer /** * 残り時間制御器 */ readonly ticker: Ticker } export class LiveOnAirSceneImpl extends g.Scene implements LiveOnAirScene { private context: { loaded: false } | { loaded: true, layer: Layer, field: Field, broadcaster: Broadcaster, screen: Screen, liveContext: Partial<LiveContext>, spots: Set<Spot>, commentContext: CommentContext, commentSupplier: CommentSupplier, commentDeployer: CommentDeployer, scorer: Scorer, ticker: Ticker } constructor (param: g.SceneParameterObject & { layer: LayerConfig, field: FieldConfig, broadcaster: BroadcasterConfig, spots: readonly SpotConfig[], commentContext: CommentContextConfig, commentSupplier: CommentSupplierConfig, commentDeployer: CommentDeployerConfig, screen: ScreenConfig, liveContext: LiveContextConfig, scorer: ScorerConfig, ticker: TickerConfig }) { super(param) this.context = { loaded: false } this.onLoad.add(() => { const layer = new LayerBuilder(this) .field(param.layer.field) .screen(param.layer.screen) .comment(param.layer.comment) .header(param.layer.header) .vars(param.layer.vars) .build() const field = new FieldBuilder(this) .vars(param.field.vars) .build() field.container = layer.field const broadcaster = new BroadcasterBuilder(this) .location({ x: param.broadcaster.x, y: param.broadcaster.y }) .speed(param.broadcaster.speed) .asset(param.broadcaster.asset) .vars(param.broadcaster.vars) .build() broadcaster.standOn(field) const screen = new ScreenBuilder(this) .vars(param.screen.vars) .build() screen.container = layer.screen const liveContext = param.liveContext screen.customLiveContext = liveContext const spots = new Set<Spot>() for (const spot of param.spots) { const inst = new SpotBuilder(this) .location({ x: spot.x, y: spot.y }) .image(spot) .name(spot.name) .labelFont(spot.labelFont) .liveClass(spot.liveClass) .vars(spot.vars) .build() inst.deployOn(field) inst.attach(screen) spots.add(inst) } const commentSupplier = new CommentSupplierBuilder(this) .interval(param.commentSupplier.interval) .comments(param.commentSupplier.comments) .vars(param.commentSupplier.vars) .build() const commentDeployer = new CommentDeployerBuilder(this) .speed(param.commentDeployer.speed) .intervalY(param.commentDeployer.intervalY) .font(param.commentDeployer.font) .vars(param.commentDeployer.vars) .build() commentDeployer.container = layer.comment const commentContextSupplier = new CommentContextSupplier({ ...param.commentContext, broadcaster, field, screen }) commentSupplier.addDeployer(commentDeployer) commentSupplier.start(commentContextSupplier) const scorer = new ScorerBuilder(this) .font(param.scorer.font) .digit(param.scorer.digit) .prefix(param.scorer.prefix) .suffix(param.scorer.suffix) .refrainsSendingScore(param.scorer.refrainsSendingScore) .vars(param.scorer.vars) .build() scorer.container = layer.header commentSupplier.onSupply.add(() => scorer.add(1)) scorer.enable() const ticker = new TickerBuilder(this) .frame(param.ticker.frame) .font(param.ticker.font) .digit(param.ticker.digit) .prefix(param.ticker.prefix) .suffix(param.ticker.suffix) .vars(param.ticker.vars) .build() ticker.container = layer.header ticker.onExpire.addOnce(() => scorer.disable()) ticker.enable() this.context = { loaded: true, layer, field, broadcaster, screen, liveContext, spots, commentContext: commentContextSupplier.get(), commentSupplier, commentDeployer, scorer, ticker } }) } get layer (): Layer { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.layer } get field (): Field { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.field } get broadcaster (): Broadcaster { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.broadcaster } get screen (): Screen { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.screen } get liveContext (): Partial<LiveContext> { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.liveContext } get spots (): Spot[] { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return [...this.context.spots] } get commentContext (): CommentContext { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.commentContext } get commentSupplier (): CommentSupplier { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.commentSupplier } get commentDeployer (): CommentDeployer { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.commentDeployer } get scorer (): Scorer { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.scorer } get ticker (): Ticker { if (!this.context.loaded) { throw new Error('onLoad が実行されていません. onLoad が実行されてから本パラメタを取得してください') } return this.context.ticker } } |