123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- # Copyright 2012 United States Government, as represented by the Secretary of Defense, Under
- # Secretary of Defense (Personnel & Readiness).
- #
- # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
- # in compliance with the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software distributed under the License
- # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
- # or implied. See the License for the specific language governing permissions and limitations under
- # the License.
- ## The component representation of a spin behavior (on move)
- ##
- ## @name spin-on-click.vwf
- ## @namespace
- ---
- extends:
- http://vwf.example.com/node3.vwf
- properties:
-
- ## Spin rate
- ##
- ## @name spin-on-move.vwf#spin-rate
- ## @property
- spin-rate: 40
- ## Spin axis
- ##
- ## @name spin-on-move.vwf#spin-axis
- ## @property
- spin-axis: [ 0, 0, 1 ]
- ## Spin input dimension
- ##
- ## @name spin-on-move.vwf#spin-inputDim
- ## @property
- spin-inputDim: "x"
- ## Spin value
- ##
- ## @name spin-on-move.vwf#spin-value
- ## @property
- spin-value: 0
- events:
- valueChanged:
- methods:
- ## Spin function. Updates component rotations and calls future spin
- ##
- ## @name spin-on-move.vwf#spin
- ## @function
- ##
- ## @returns undefined
- spin:
- ## Initialization function
- ##
- ## @name spin-on-move.vwf#init
- ## @function
- ##
- ## @returns undefined
- init:
- scripts:
- - |
- this.init = function() {
- this.input = {
- "pointerInfo": undefined,
- "pickInfo": undefined,
- "previous": {
- "pointerInfo": undefined,
- "pickInfo": undefined,
- },
- pointerDown: {
- "pointerInfo": undefined,
- "pickInfo": undefined,
- },
- update: function( pointerInfo, pickInfo ){
- this.previous.pointerInfo = this.pointerInfo;
- this.previous.pickInfo = this.pickInfo;
- this.pointerInfo = pointerInfo;
- this.pickInfo = pickInfo;
- },
- clear: function(){
- this.previous.pointerInfo = undefined;
- this.previous.pickInfo = undefined;
- this.pointerInfo = undefined;
- this.pickInfo = undefined;
- },
- change: function() {
- var ret = [ 0, 0 ]
- if ( this.pointerInfo && this.previous.pointerInfo ) {
- ret[0] = this.pointerInfo.position[0] - this.previous.pointerInfo.position[0];
- ret[1] = this.pointerInfo.position[1] - this.previous.pointerInfo.position[1];
- }
- return ret;
- }
- };
- }
- this.pointerDown = function( pointerInfo, pickInfo ) {
- if ( !this.input ) this.init();
- this.input.pointerDown.pointerInfo = pointerInfo;
- this.input.pointerDown.pickInfo = pickInfo;
- this.input.clear();
- }
- this.pointerUp = function( pointerInfo, pickInfo ) {
- if ( !this.input ) this.init();
- this.input.clear();
- }
- this.pointerMove = function( pointerInfo, pickInfo ) {
- this.input.update( pointerInfo, pickInfo );
- var diff = this.input.change();
- switch( this["spin-inputDim"] ) {
- case "x":
- this.spin( diff[0] );
- break;
- case "y":
- this.spin( -diff[1] );
- break;
- default:
- this.spin( Math.sqrt( ( diff[0] * diff[0] ) + ( diff[1] * diff[1] ) ) );
- break;
- }
- }
- this.spin = function( value ){
- var rate = this["spin-rate"];
- var axis = this["spin-axis"];
- //console.info( "this.parent.rotateBy( [ "+axis[0]+", "+axis[1]+", "+axis[2]+", "+(rate * value)+" ], 0 )" );
- this.parent.rotateBy( [ axis[0], axis[1], axis[2], rate * value ], 0 );
- this.valueChanged( this.rotation );
- } //@ sourceURL=spin-on-move.vwf
|