SlideShare ist ein Scribd-Unternehmen logo
1 von 49
激闘!戦国絵巻 Flashのcanvas移植 作成者:野津手  昌美 所属チーム /上位部署: :UIT室 Mobile UIチーム UXデザインセンター 連絡先:masami.notsute@nhn.com
自己紹介  UIT室 Mobile UIチーム 野津手 昌美 masaminotsute 現在はJavaScript の開発を 担当しています。 以前はJavaでサーバーサイドの開発もやっていました。 趣味は 犬とネットショッピング
目次 1 はじめに 2.1  ゲームの紹介 2 Flashのcanvas移植 2.2  canvasアニメーションについて 2.3  Flashエリアの構造について 2.4  Flashとcanvasのデータ連携 2.5  実装方法 2.6  はまったところ 3 さいごに 3.1  Flash と canvas
はじめに ゲームの紹介
Flashのcanvas移植 激闘!戦国絵巻のご紹介 ・2009年11月よりサービス開始。 ・「携帯版ハンゲーム」で 人気のシミュレーションゲーム  ⇒戦闘や探索を行い自分の領地を発展させて   勢力を拡大していく ゲーム。
Flashのcanvas移植 Flashのエリアの構造について
Flashのcanvas移植 Flashのエリアの構造について ①背景、建物が 独立したオブジェクトデータ (swfファイル) ②独立したオブジェクトデータを プログラムで合成させている。
Flashのcanvas移植 canvasのアニメーション
Flashのcanvas移植 canvasのアニメーション canvas canvas canvas 1frame 2frame 3frame
Flashのcanvas移植 canvasのアニメーション cx.drawImage(  ImgElement,  x, y,  Img.width,  Img.height  ) (x, y) (0, 0)
Flashのcanvas移植 canvasのアニメーション TimeLineで2枚の画像を切り替えて アニメーションさせている。 A image Bimage A A A A B B  B B 0 1 2 3 4 5 6 7 8 TimeLine
別な方法で実装することも…
Flashのcanvas移植 canvasのアニメーション Cimage 一枚の画像で映画のフィルムのようにみせることもできる。 A B C D E F G H
Flashのcanvas移植 Flashとcanvasのデータ連携
Flashのcanvas移植 Flashとcanvasのデータ連携
(携帯側) http://swf.hange.jp/sengoku/sengoku_main.php?id=sd1|bd-b00178f0-s005672e-s0028e28-l001bd4d-s0041465-s001d867-s010547c-s020bb81-s006189a-s0185e97-s00944ab-s003c2ad-s011db9b-s02351c6-s0199cc6-n00278f0-n0017839-n00578f0
(スマートフォン側) background: {id: 'b001', x: 120, y: 240}, building: [{id:'s005', x:103, y:46},     {id:'s002', x:142, y:40},     {id:'s003', x:20, y:101},     {id:'l001', x:126, y:107},     {id:'s009', x:216, y:103},     {id:'n001', x:120, y:57},     {id:'n005', x:120, y:240}]
(携帯側) http://swf.hange.jp/sengoku/sengoku_main.php?id=sd1|bd-b00178f0-  ・・・(省略) s0199cc6-n00278f0-n0017839-n00578f0 建物のID + x座標 + y座標 change (n001) (78) (39) (スマートフォン側) background: {id: 'b001', x: 120, y: 240}, building: [{id:'s005', x:103, y:46},         ・・・(省略)      {id:'n005', x:120, y:240}]
Flashのcanvas移植 実装方法
独立したデータを どのように管理していくのか?
sengoku.effects = {  s001: { timeLine: 0,   imgs: ['sp_s001_0000.png'],   drawImgList: [],   init: function() {    // 初期化   },   animation: function(elCanvas) {    // setIntevalで呼ばれる。   }  },  s002: { // 省略 },  s003: { // 省略 },  s004: { // 省略 },  s005: { // 省略 } }
Flashのcanvas移植 Flashとcanvasのデータ連携 実装方法 (初期化時) ① canvas内で利用する全ての画像のLoad
sengoku.effects = {  s001: { timeLine: 0,   imgs: ['sp_s001_0000.png'],   drawImgList: [],   init: function() {    // 初期化   },   animation: function(elCanvas) {    // setIntevalで呼ばれる。   }  },  s002: { // 省略 },  s003: { // 省略 },  s004: { // 省略 },  s005: { // 省略 } }
Flashのcanvas移植 Flashとcanvasのデータ連携 実装方法 (初期化時) ① canvas内で利用する全ての画像のLoad ② Loadしてきた画像から、  imgのelementの生成、  canvas描画用のx座標とy座標の算出
sengoku.effects = {  s001: { timeLine: 0,   imgs: ['sp_s001_0000.png'],   drawImgList: [],   init: function() {    // 初期化   },   animation: function(elCanvas) {    // setIntevalで呼ばれる。   }  },  s002: { // 省略 },  s003: { // 省略 },  s004: { // 省略 },  s005: { // 省略 } }
Flashのcanvas移植 Flashとcanvasのデータ連携 canvasでsetする座標 (0, 0) (x, y)
Flashのcanvas移植 Flashとcanvasのデータ連携 実装方法 (初期化時) ① canvas内で利用する全ての画像のLoad ② Loadしてきた画像から、  imgのelementの生成、  canvas描画用のx座標とy座標の算出 ③ sengoku.effectsの ${建物id}.init()の  実行をかける。
sengoku.effects = {  s001: { timeLine: 0,   imgs: ['sp_s001_0000.png'],   drawImgList: [],   init: function() {    // 初期化   },   animation: function(elCanvas) {    // setIntevalで呼ばれる。   }  },  s002: { // 省略 },  s003: { // 省略 },  s004: { // 省略 },  s005: { // 省略 } }
Flashのcanvas移植 Flashとcanvasのデータ連携 実装方法 (最後に) ひたすら、setInterval()で sengoku.effectsの ${建物id}.animation() 実行をかけるだけ。
sengoku.effects = {  s001: { timeLine: 0,   imgs: ['sp_s001_0000.png'],   drawImgList: [],   init: function() {    // 初期化   },   animation: function(elCanvas) {    // setIntevalで呼ばれる。   }  },  s002: { // 省略 },  s003: { // 省略 },  s004: { // 省略 },  s005: { // 省略 } }
Flashのcanvas移植 はまったところ
Flashのcanvas移植 はまったところ canvasの座標に小数値を設定すると・・・ ■整数値 ■小数値 例) (126, 107) 例) (126.5, 107.5)
何が困るの?
Flashのcanvas移植 はまったところ 移動などのアニメーション処理に注意!! 移動
Androidの1.6と2.1には バグあった・・・
Flashのcanvas移植 はまったところ バグその① alpha値(透明度)がおかしい。 × ○ 正常 バグ
Flashのcanvas移植 はまったところ バグその① - 解決策 - 解決していない。 ※特にゲームとしての動作に支障が無いために そのままにしてます。。
Flashのcanvas移植 はまったところ バグその② 画像描画時に1.5倍拡大されてしまう。 × ○ 正常 バグ
Flashのcanvas移植 はまったところ バグその② - 解決策 - 縮小して描画 cx.drawImage(elImg, setX*2/3, setY*2/3, elImg.width*2/3, elImg.height*2/3);
Androidの1.6と2.1のバグは、 発生しない端末もあるため、注意が必要です。
さいごに Flash と canvas
今回の移植では、Flashは プロトタイピングとして役に立ちました。
正直いうと、 Flash から canvas 移植なんてとても大変
Flash ・ツールを利用して誰でも簡単に  アニメーションを作成することができる ・ブラウザの違いに影響を受けない。 ・ライブラリーが充実している ・pluginがないと見れない。  (iOSで標準で見ることができない) etc・・・
HTML5  - canvas - ・コンパイルを必要としない。 ・iOSでも、Androidでも動く。 ・ライブラリーが充実していない。 ・アニメーション作成用のツールがない ・情報が少ない etc・・・
canvasの方がマイナス要素が多いけど・・・ 解決できる要因が多い。 ツールも開発中っぽい。 ライブラリも少しずつだが増えてきている。 情報も増えてきている。
canvasには、明るい未来が・・・ 1  
Thank you. 作成者:野津手  昌美 所属チーム /上位部署: :UIT室 Mobile UIチーム UXデザインセンター 連絡先:masami.notsute@nhn.com
続きは・・・ news.uxdc.jp blog: http://news.uxdc.jp/ uit twitter: nhnuit 1  

Weitere ähnliche Inhalte

Empfohlen

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...DevGAMM Conference
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationErica Santiago
 

Empfohlen (20)

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 

NHN HTML5勉強会 Flashのcanvas移植