wakeuponactivation.java

来自「JAVA3D矩陈的相关类」· Java 代码 · 共 66 行

JAVA
66
字号
/* * $RCSfile: WakeupOnActivation.java,v $ * * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved. * * Use is subject to license terms. * * $Revision: 1.4 $ * $Date: 2007/02/09 17:18:30 $ * $State: Exp $ */package javax.media.j3d;/** * Class specifying a wakeup the first time an active Viewplatform's * activation * volume intersects with this object's scheduling region. * This gives the behavior an explicit means of executing code when  * it is activated. */public final class WakeupOnActivation extends WakeupCriterion {    // different types of WakeupIndexedList that use in BehaviorStructure    static final int COND_IN_BS_LIST = 0;    // total number of different IndexedUnorderedSet types    static final int TOTAL_INDEXED_UNORDER_SET_TYPES = 1;    /**     * Constructs a new WakeupOnActivation criterion.     */    public WakeupOnActivation() {	WakeupIndexedList.init(this, TOTAL_INDEXED_UNORDER_SET_TYPES);    }    /**     * This is a callback from BehaviorStructure. It is      * used to add wakeupCondition to behavior structure.     */    void addBehaviorCondition(BehaviorStructure bs) {	behav.wakeupArray[BehaviorRetained.WAKEUP_ACTIVATE_INDEX]++;	behav.wakeupMask |= BehaviorRetained.WAKEUP_ACTIVATE;	bs.wakeupOnActivation.add(this);    }    /**     * This is a callback from BehaviorStructure. It is      * used to remove wakeupCondition from behavior structure.     */    void removeBehaviorCondition(BehaviorStructure bs) {	behav.wakeupArray[BehaviorRetained.WAKEUP_ACTIVATE_INDEX]--;	if (behav.wakeupArray[BehaviorRetained.WAKEUP_ACTIVATE_INDEX] == 0) {	    behav.wakeupMask &= ~BehaviorRetained.WAKEUP_ACTIVATE;	}	bs.wakeupOnActivation.remove(this);    }    /**     * Perform task in addBehaviorCondition() that has to be     * set every time the condition met.     */    void resetBehaviorCondition(BehaviorStructure bs) {}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?