際際滷

際際滷Share a Scribd company logo
S53

#3
3-1 MVC, Model - Render
3-2 Canvas
3-3 Model
3-4 Render
3-5 Child
3-6 Event

2012.10.31 20:30 ~ 22:30
Model, View, Controller   Model - Render
         Model                     Model
  Data, Business Logic      Data, Business Logic


                                  Render
       Controller
    Handler, Adapter

                                   View
          View                   Controller
       UI, Present
Canvas #1
                     PixelMap

            Array = [r,g,b,a, r,g,b,a, ...]

            context.fillRect( 0, 0, 2, 1 );

             [0,0,0,0xff, 0,0,0,0xff, ...]

               context.lineTo( 2, 0 );
                 context.stroke();

             [0,0,0,0xff, 0,0,0,0xff, ...]
Canvas #2
    State 1                               State 2                               State 3
  lineWidth                             lineWidth                             lineWidth
    lineCap     context.save()            lineCap     context.save()            lineCap
 strokeStyle                           strokeStyle                           strokeStyle
    fillStyle                             fillStyle                             fillStyle
       font                                  font                                  font
textBaseline                          textBaseline                          textBaseline
   textAlign                             textAlign                             textAlign
   translate                             translate                             translate
                  context.restore()                     context.restore()
         .                                     .                                     .
         .                                     .                                     .
         .                                     .                                     .
Model
          Canvas                                             Children
           context                    child 1             child 2                     child 3
                                       state               state                       state
        width, height                                                                                       ...
                                       draw                draw                        draw
          isUpdated                     etc                 etc                         etc

function Model( $width, $height ){                    Model.prototype.update = function(){
       var canvas, context;                                   this.isUpdated = false;
       canvas = document.createElement( 'canvas' );   };
       canvas.width = $width;                         Model.prototype.setSize = function( $width, $height ){
       canvas.height = $height;                               this.canvas.width = this.width = $width;
       context = canvas.getContext( '2d' );                   this.canvas.height = this.height = $height;
       this.canvas = canvas;                          };
       this.width = $width;                           Model.prototype.addChild = function( $child ){
       this.height = $height;                                 $child.parent = this;
       this.context = context;                                this.children.push( $child );
       this.children = [];                            };
       this.isUpdated = true;                         Model.prototype.removeChild = function( $child ){
}                                                       this.children.splice( this.children.indexOf( $child ), 1 );
                                                      };
                                                      Model.prototype.getIndex = function( $child ){
var model = new Model( 500, 500 );                            return this.children.indexOf( $child );
var stage = document.getElementById('stage');         };
stage.appendChild( model.canvas );                    Model.prototype.swapIndex = function( $from, $to ){
                                                        var to = this.children[$to];
model.addChild( new Child(...) );                       this.children[$to] = this.children[$from];
                                                        this.children[$from] = to;
setInterval( model.render, 17 );                      }
Render

             ! isUpdated
                                     Model.prototype.render = function(){
         context.clearRect();          var i, j;
                                       if( this.isUpdated ) return;
           Loop Children               this.context.clearRect( 0, 0, this.width, this.height );
                                       for( i = 0, j = this.children.length ; i < j ; i++ ){
           context.save();               this.context.save();
                                         this.children[i].render( this.context );
    children[i].render( context );       this.context.restore();
                                       }
          context.restore();           this.isUpdated = true;
                                     }

          isUpdated = true;
Child
function Child( $image ){                     Child.prototype.setAttribute = function( $attr, $val ){
       this.image = $image;                          if( this[$attr] === undefined ) return;
       this.width = image.width;                     this[$attr] = $val;
       this.height = image.height;                   this.parent.update();
       this.x = 0;                            };
       this.y = 0;                            Child.prototype.render = function( $context ){
       this.rotation = 0;                            $context.translate( this.x, this.y );
       this.parent = null;                           if( this.rotation ){
}                                                          $context.rotate( toRadian * this.rotation );
                                                     }
var img, child;                                      $context.drawImage(
img = new Image;                                           this.image, 0, 0, this.width, this.height
img.src = /slideshow/javascript-model-render-canvas-sample/14976525/&                                );
img.onload = function(){                      };
      child = new Child( img );
      child.setAttribute( 'x', 30 );          //toRadian = 2 * pi / 360
      child.setAttribute( 'y', 30 );
      child.setAttribute( 'rotation', 90 );
      model.addChild( child );
};
Event
canvas.addEventListener( 'click', controller )      function Child( $image ){
                                                           ...
function controller( $e ){
                                                           this.click = [];
  var i, j;
                                                    }
  for( i = 0, j = model.children ; i < j ; i++ ){
    model.children[i].click( $e );                  Child.prototype.addEventListener = function( $type, $listener ){
  }                                                           if( this[$type] === undefined ) return;
}                                                             this[$attr].push( $listener );
                                                    };
                                                    Child.prototype.click = function( $e ){
                                                       var i, j, x, y;
                                                       if(
                                                           this.x < $e.localX && $e. localX < this.x + this.width &&
                                                           this.y < $e.localY && $e. localY < this.y + this.height
                                                       ){
                                                               $e.localX -= this.x;
                                                           $e.localY -= this.y;
                                                           for( i = 0, j = this.click ; i < j ; i++ ){
                                                                    this.chick[i]( $e );
                                                           }
child.addEventListener( 'click', function( $e ){
                                                       }
   alert( $e.localX + ":" + $e.localY );
                                                    };
};

More Related Content

Similar to javascript Model- Render & canvas sample (20)

The Canvas API for Rubyists
The Canvas API for RubyistsThe Canvas API for Rubyists
The Canvas API for Rubyists
deanhudson
?
Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)
Leonardo Soto
?
Jython: Python para la plataforma Java (JRSL 09)
Jython: Python para la plataforma Java (JRSL 09)Jython: Python para la plataforma Java (JRSL 09)
Jython: Python para la plataforma Java (JRSL 09)
Leonardo Soto
?
20160227 Granma
20160227 Granma20160227 Granma
20160227 Granma
Sharon Liu
?
J slider
J sliderJ slider
J slider
Sesum Dragomir
?
Bindings: the zen of montage
Bindings: the zen of montageBindings: the zen of montage
Bindings: the zen of montage
Kris Kowal
?
React Native - Workshop
React Native - WorkshopReact Native - Workshop
React Native - Workshop
Fellipe Chagas
?
ddd+scala
ddd+scaladdd+scala
ddd+scala
匯 紗儲
?
srcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docx
srcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docxsrcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docx
srcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docx
whitneyleman54422
?
Exploring Canvas
Exploring CanvasExploring Canvas
Exploring Canvas
Kevin Hoyt
?
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficientTh 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
Bin Shao
?
Why is crud a bad idea - focus on real scenarios
Why is crud a bad idea - focus on real scenariosWhy is crud a bad idea - focus on real scenarios
Why is crud a bad idea - focus on real scenarios
Divante
?
Virtual Madness @ Etsy
Virtual Madness @ EtsyVirtual Madness @ Etsy
Virtual Madness @ Etsy
Nishan Subedi
?
Bacbkone js
Bacbkone jsBacbkone js
Bacbkone js
Артём Курапов
?
Your code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnConYour code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnCon
Rafael Dohms
?
Fun with flutter animations - Divyanshu Bhargava, GoHighLevel
Fun with flutter animations - Divyanshu Bhargava, GoHighLevelFun with flutter animations - Divyanshu Bhargava, GoHighLevel
Fun with flutter animations - Divyanshu Bhargava, GoHighLevel
DroidConTLV
?
CoffeeScript
CoffeeScriptCoffeeScript
CoffeeScript
None
?
Webgl para JavaScripters
Webgl para JavaScriptersWebgl para JavaScripters
Webgl para JavaScripters
gerbille
?
ES6 Overview
ES6 OverviewES6 Overview
ES6 Overview
Bruno Scopelliti
?
Building mobile web apps with Mobello
Building mobile web apps with MobelloBuilding mobile web apps with Mobello
Building mobile web apps with Mobello
Jeong-Geun Kim
?
The Canvas API for Rubyists
The Canvas API for RubyistsThe Canvas API for Rubyists
The Canvas API for Rubyists
deanhudson
?
Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)
Leonardo Soto
?
Jython: Python para la plataforma Java (JRSL 09)
Jython: Python para la plataforma Java (JRSL 09)Jython: Python para la plataforma Java (JRSL 09)
Jython: Python para la plataforma Java (JRSL 09)
Leonardo Soto
?
Bindings: the zen of montage
Bindings: the zen of montageBindings: the zen of montage
Bindings: the zen of montage
Kris Kowal
?
srcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docx
srcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docxsrcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docx
srcArtifact.javasrcArtifact.javaclassArtifactextendsCave{pub.docx
whitneyleman54422
?
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficientTh 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
Bin Shao
?
Why is crud a bad idea - focus on real scenarios
Why is crud a bad idea - focus on real scenariosWhy is crud a bad idea - focus on real scenarios
Why is crud a bad idea - focus on real scenarios
Divante
?
Your code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnConYour code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnCon
Rafael Dohms
?
Fun with flutter animations - Divyanshu Bhargava, GoHighLevel
Fun with flutter animations - Divyanshu Bhargava, GoHighLevelFun with flutter animations - Divyanshu Bhargava, GoHighLevel
Fun with flutter animations - Divyanshu Bhargava, GoHighLevel
DroidConTLV
?
CoffeeScript
CoffeeScriptCoffeeScript
CoffeeScript
None
?
Webgl para JavaScripters
Webgl para JavaScriptersWebgl para JavaScripters
Webgl para JavaScripters
gerbille
?
Building mobile web apps with Mobello
Building mobile web apps with MobelloBuilding mobile web apps with Mobello
Building mobile web apps with Mobello
Jeong-Geun Kim
?

Recently uploaded (20)

From native code gems to Java treasures with jextract
From native code gems to Java treasures with jextractFrom native code gems to Java treasures with jextract
From native code gems to Java treasures with jextract
Ana-Maria Mihalceanu
?
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
?
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AIUiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
DianaGray10
?
The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
?
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp
?
Vibe Coding presentation at Courte University
Vibe Coding presentation at Courte UniversityVibe Coding presentation at Courte University
Vibe Coding presentation at Courte University
RobertMongare3
?
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
?
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
ScyllaDB
?
The Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App DevelopmentThe Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App Development
7Pillars
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
?
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
?
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
?
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
Safer¨s Picks: The 6 FME Transformers You Didn¨t Know You Needed
Safer¨s Picks: The 6 FME Transformers You Didn¨t Know You NeededSafer¨s Picks: The 6 FME Transformers You Didn¨t Know You Needed
Safer¨s Picks: The 6 FME Transformers You Didn¨t Know You Needed
Safe Software
?
Draginoプロダクトカタログ LoRaWAN NB-IoT LTE cat.M1斌瞳リスト
Draginoプロダクトカタログ LoRaWAN  NB-IoT  LTE cat.M1斌瞳リストDraginoプロダクトカタログ LoRaWAN  NB-IoT  LTE cat.M1斌瞳リスト
Draginoプロダクトカタログ LoRaWAN NB-IoT LTE cat.M1斌瞳リスト
CRI Japan, Inc.
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
From native code gems to Java treasures with jextract
From native code gems to Java treasures with jextractFrom native code gems to Java treasures with jextract
From native code gems to Java treasures with jextract
Ana-Maria Mihalceanu
?
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
?
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AIUiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
DianaGray10
?
The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
?
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp
?
Vibe Coding presentation at Courte University
Vibe Coding presentation at Courte UniversityVibe Coding presentation at Courte University
Vibe Coding presentation at Courte University
RobertMongare3
?
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
?
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
ScyllaDB
?
The Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App DevelopmentThe Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App Development
7Pillars
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
?
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
?
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
?
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
Safer¨s Picks: The 6 FME Transformers You Didn¨t Know You Needed
Safer¨s Picks: The 6 FME Transformers You Didn¨t Know You NeededSafer¨s Picks: The 6 FME Transformers You Didn¨t Know You Needed
Safer¨s Picks: The 6 FME Transformers You Didn¨t Know You Needed
Safe Software
?
Draginoプロダクトカタログ LoRaWAN NB-IoT LTE cat.M1斌瞳リスト
Draginoプロダクトカタログ LoRaWAN  NB-IoT  LTE cat.M1斌瞳リストDraginoプロダクトカタログ LoRaWAN  NB-IoT  LTE cat.M1斌瞳リスト
Draginoプロダクトカタログ LoRaWAN NB-IoT LTE cat.M1斌瞳リスト
CRI Japan, Inc.
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?

javascript Model- Render & canvas sample

  • 1. S53 #3 3-1 MVC, Model - Render 3-2 Canvas 3-3 Model 3-4 Render 3-5 Child 3-6 Event 2012.10.31 20:30 ~ 22:30
  • 2. Model, View, Controller Model - Render Model Model Data, Business Logic Data, Business Logic Render Controller Handler, Adapter View View Controller UI, Present
  • 3. Canvas #1 PixelMap Array = [r,g,b,a, r,g,b,a, ...] context.fillRect( 0, 0, 2, 1 ); [0,0,0,0xff, 0,0,0,0xff, ...] context.lineTo( 2, 0 ); context.stroke(); [0,0,0,0xff, 0,0,0,0xff, ...]
  • 4. Canvas #2 State 1 State 2 State 3 lineWidth lineWidth lineWidth lineCap context.save() lineCap context.save() lineCap strokeStyle strokeStyle strokeStyle fillStyle fillStyle fillStyle font font font textBaseline textBaseline textBaseline textAlign textAlign textAlign translate translate translate context.restore() context.restore() . . . . . . . . .
  • 5. Model Canvas Children context child 1 child 2 child 3 state state state width, height ... draw draw draw isUpdated etc etc etc function Model( $width, $height ){ Model.prototype.update = function(){ var canvas, context; this.isUpdated = false; canvas = document.createElement( 'canvas' ); }; canvas.width = $width; Model.prototype.setSize = function( $width, $height ){ canvas.height = $height; this.canvas.width = this.width = $width; context = canvas.getContext( '2d' ); this.canvas.height = this.height = $height; this.canvas = canvas; }; this.width = $width; Model.prototype.addChild = function( $child ){ this.height = $height; $child.parent = this; this.context = context; this.children.push( $child ); this.children = []; }; this.isUpdated = true; Model.prototype.removeChild = function( $child ){ } this.children.splice( this.children.indexOf( $child ), 1 ); }; Model.prototype.getIndex = function( $child ){ var model = new Model( 500, 500 ); return this.children.indexOf( $child ); var stage = document.getElementById('stage'); }; stage.appendChild( model.canvas ); Model.prototype.swapIndex = function( $from, $to ){ var to = this.children[$to]; model.addChild( new Child(...) ); this.children[$to] = this.children[$from]; this.children[$from] = to; setInterval( model.render, 17 ); }
  • 6. Render ! isUpdated Model.prototype.render = function(){ context.clearRect(); var i, j; if( this.isUpdated ) return; Loop Children this.context.clearRect( 0, 0, this.width, this.height ); for( i = 0, j = this.children.length ; i < j ; i++ ){ context.save(); this.context.save(); this.children[i].render( this.context ); children[i].render( context ); this.context.restore(); } context.restore(); this.isUpdated = true; } isUpdated = true;
  • 7. Child function Child( $image ){ Child.prototype.setAttribute = function( $attr, $val ){ this.image = $image; if( this[$attr] === undefined ) return; this.width = image.width; this[$attr] = $val; this.height = image.height; this.parent.update(); this.x = 0; }; this.y = 0; Child.prototype.render = function( $context ){ this.rotation = 0; $context.translate( this.x, this.y ); this.parent = null; if( this.rotation ){ } $context.rotate( toRadian * this.rotation ); } var img, child; $context.drawImage( img = new Image; this.image, 0, 0, this.width, this.height img.src = /slideshow/javascript-model-render-canvas-sample/14976525/& ); img.onload = function(){ }; child = new Child( img ); child.setAttribute( 'x', 30 ); //toRadian = 2 * pi / 360 child.setAttribute( 'y', 30 ); child.setAttribute( 'rotation', 90 ); model.addChild( child ); };
  • 8. Event canvas.addEventListener( 'click', controller ) function Child( $image ){ ... function controller( $e ){ this.click = []; var i, j; } for( i = 0, j = model.children ; i < j ; i++ ){ model.children[i].click( $e ); Child.prototype.addEventListener = function( $type, $listener ){ } if( this[$type] === undefined ) return; } this[$attr].push( $listener ); }; Child.prototype.click = function( $e ){ var i, j, x, y; if( this.x < $e.localX && $e. localX < this.x + this.width && this.y < $e.localY && $e. localY < this.y + this.height ){ $e.localX -= this.x; $e.localY -= this.y; for( i = 0, j = this.click ; i < j ; i++ ){ this.chick[i]( $e ); } child.addEventListener( 'click', function( $e ){ } alert( $e.localX + ":" + $e.localY ); }; };