当前位置: 首页>>代码示例>>Java>>正文


Java AttributeEvent.MISSION_DRONIE_CREATED属性代码示例

本文整理汇总了Java中com.o3dr.services.android.lib.drone.attribute.AttributeEvent.MISSION_DRONIE_CREATED属性的典型用法代码示例。如果您正苦于以下问题:Java AttributeEvent.MISSION_DRONIE_CREATED属性的具体用法?Java AttributeEvent.MISSION_DRONIE_CREATED怎么用?Java AttributeEvent.MISSION_DRONIE_CREATED使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.o3dr.services.android.lib.drone.attribute.AttributeEvent的用法示例。


在下文中一共展示了AttributeEvent.MISSION_DRONIE_CREATED属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onReceive

@Override
public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    switch (action) {
        case AttributeEvent.MISSION_DRONIE_CREATED:
        case AttributeEvent.MISSION_UPDATED:
        case AttributeEvent.MISSION_RECEIVED:
            Mission droneMission = drone.getAttribute(AttributeType.MISSION);
            load(droneMission);
            break;
    }
}
 
开发者ID:mxiao6,项目名称:Tower-develop,代码行数:12,代码来源:MissionProxy.java

示例2: onReceive

@Override
public void onReceive(Context context, Intent intent) {
    final String action = intent.getAction();
    switch (action) {
        case AttributeEvent.AUTOPILOT_ERROR:
            String errorName = intent.getStringExtra(AttributeEventExtra.EXTRA_AUTOPILOT_ERROR_ID);
            final ErrorType errorType = ErrorType.getErrorById(errorName);
            onAutopilotError(errorType);
            break;

        case AttributeEvent.STATE_ARMING:
        case AttributeEvent.STATE_CONNECTED:
        case AttributeEvent.STATE_DISCONNECTED:
        case AttributeEvent.STATE_UPDATED:
            enableSlidingUpPanel(dpApp.getDrone());
            break;

        case AttributeEvent.FOLLOW_START:
            //Extend the sliding drawer if collapsed.
            if (!mSlidingPanelCollapsing.get() && mSlidingPanel.isSlidingEnabled() &&
                    !mSlidingPanel.isPanelExpanded()) {
                mSlidingPanel.expandPanel();
            }
            break;

        case AttributeEvent.MISSION_DRONIE_CREATED:
            float dronieBearing = intent.getFloatExtra(AttributeEventExtra.EXTRA_MISSION_DRONIE_BEARING, -1);
            if (dronieBearing != -1)
                updateMapBearing(dronieBearing);
            break;
    }
}
 
开发者ID:sommishra,项目名称:DroidPlanner-Tower,代码行数:32,代码来源:FlightActivity.java

示例3: onReceive

@Override
public void onReceive(Context context, Intent intent) {
    final String action = intent.getAction();
    switch (action) {
        case AttributeEvent.STATE_ARMING:
        case AttributeEvent.STATE_CONNECTED:
        case AttributeEvent.STATE_DISCONNECTED:
        case AttributeEvent.STATE_UPDATED:
            setupButtonsByFlightState();
            break;

        case AttributeEvent.STATE_VEHICLE_MODE:
            updateFlightModeButtons();
            break;

        case AttributeEvent.FOLLOW_START:
        case AttributeEvent.FOLLOW_STOP:
            final FollowState followState = getDrone().getAttribute(AttributeType.FOLLOW_STATE);
            if (followState != null) {
                String eventLabel = null;
                switch (followState.getState()) {
                    case FollowState.STATE_START:
                        eventLabel = "FollowMe enabled";
                        break;

                    case FollowState.STATE_RUNNING:
                        eventLabel = "FollowMe running";
                        break;

                    case FollowState.STATE_END:
                        eventLabel = "FollowMe disabled";
                        break;

                    case FollowState.STATE_INVALID:
                        eventLabel = "FollowMe error: invalid state";
                        break;

                    case FollowState.STATE_DRONE_DISCONNECTED:
                        eventLabel = "FollowMe error: drone not connected";
                        break;

                    case FollowState.STATE_DRONE_NOT_ARMED:
                        eventLabel = "FollowMe error: drone not armed";
                        break;
                }

                if (eventLabel != null) {
                    HitBuilders.EventBuilder eventBuilder = new HitBuilders.EventBuilder()
                            .setCategory(GAUtils.Category.FLIGHT)
                            .setAction(ACTION_FLIGHT_ACTION_BUTTON)
                            .setLabel(eventLabel);
                    GAUtils.sendEvent(eventBuilder);

                    Toast.makeText(getActivity(), eventLabel, Toast.LENGTH_SHORT).show();
                }
            }

            /* FALL - THROUGH */
        case AttributeEvent.FOLLOW_UPDATE:
            updateFlightModeButtons();
            updateFollowButton();
            break;

        case AttributeEvent.MISSION_DRONIE_CREATED:
            //Get the bearing of the dronie mission.
            float bearing = intent.getFloatExtra(AttributeEventExtra.EXTRA_MISSION_DRONIE_BEARING, -1);
            if (bearing >= 0) {
                final FlightControlManagerFragment parent = (FlightControlManagerFragment) getParentFragment();
                if (parent != null) {
                    parent.updateMapBearing(bearing);
                }
            }
            break;
    }
}
 
开发者ID:mxiao6,项目名称:Tower-develop,代码行数:75,代码来源:CopterFlightControlFragment.java

示例4: onReceive

@Override
public void onReceive(Context context, Intent intent) {
    final String action = intent.getAction();
    switch (action) {
        case AttributeEvent.AUTOPILOT_ERROR:
            String errorName = intent.getStringExtra(AttributeEventExtra.EXTRA_AUTOPILOT_ERROR_ID);
            final ErrorType errorType = ErrorType.getErrorById(errorName);
            onAutopilotError(errorType);
            break;

        case AttributeEvent.AUTOPILOT_MESSAGE:
            final int logLevel = intent.getIntExtra(AttributeEventExtra.EXTRA_AUTOPILOT_MESSAGE_LEVEL, Log.VERBOSE);
            final String message = intent.getStringExtra(AttributeEventExtra.EXTRA_AUTOPILOT_MESSAGE);
            onAutopilotError(logLevel, message);
            break;

        case AttributeEvent.STATE_ARMING:
        case AttributeEvent.STATE_CONNECTED:
        case AttributeEvent.STATE_DISCONNECTED:
        case AttributeEvent.STATE_UPDATED:
        case AttributeEvent.TYPE_UPDATED:
            enableSlidingUpPanel(getDrone());
            break;

        case AttributeEvent.FOLLOW_START:
            //Extend the sliding drawer if collapsed.
            if (!mSlidingPanelCollapsing.get()
                    && mSlidingPanel.isEnabled()
                    && mSlidingPanel.getPanelState() != SlidingUpPanelLayout.PanelState.EXPANDED) {
                mSlidingPanel.setPanelState(SlidingUpPanelLayout.PanelState.EXPANDED);
            }
            break;

        case AttributeEvent.MISSION_DRONIE_CREATED:
            float dronieBearing = intent.getFloatExtra(AttributeEventExtra.EXTRA_MISSION_DRONIE_BEARING, -1);
            if (dronieBearing != -1)
                updateMapBearing(dronieBearing);
            break;


    }
}
 
开发者ID:mxiao6,项目名称:Tower-develop,代码行数:42,代码来源:FlightDataFragment.java

示例5: onReceive

@Override
public void onReceive(Context context, Intent intent) {
    final String action = intent.getAction();
    switch (action) {
        case AttributeEvent.STATE_ARMING:
        case AttributeEvent.STATE_CONNECTED:
        case AttributeEvent.STATE_DISCONNECTED:
        case AttributeEvent.STATE_UPDATED:
            setupButtonsByFlightState();
            break;

        case AttributeEvent.STATE_VEHICLE_MODE:
            updateFlightModeButtons();
            break;

        case AttributeEvent.FOLLOW_START:
        case AttributeEvent.FOLLOW_STOP:
            final FollowState followState = getDrone().getAttribute(AttributeType.FOLLOW_STATE);
            if (followState != null) {
                String eventLabel = null;
                switch (followState.getState()) {
                    case FollowState.STATE_START:
                        eventLabel = "FollowMe enabled";
                        break;

                    case FollowState.STATE_RUNNING:
                        eventLabel = "FollowMe running";
                        break;

                    case FollowState.STATE_END:
                        eventLabel = "FollowMe disabled";
                        break;

                    case FollowState.STATE_INVALID:
                        eventLabel = "FollowMe error: invalid state";
                        break;

                    case FollowState.STATE_DRONE_DISCONNECTED:
                        eventLabel = "FollowMe error: drone not connected";
                        break;

                    case FollowState.STATE_DRONE_NOT_ARMED:
                        eventLabel = "FollowMe error: drone not armed";
                        break;
                }

                if (eventLabel != null) {
                    HitBuilders.EventBuilder eventBuilder = new HitBuilders.EventBuilder()
                            .setCategory(GAUtils.Category.FLIGHT)
                            .setAction(ACTION_FLIGHT_ACTION_BUTTON)
                            .setLabel(eventLabel);
                    GAUtils.sendEvent(eventBuilder);

                    Toast.makeText(getActivity(), eventLabel, Toast.LENGTH_SHORT).show();
                }
            }

            /* FALL - THROUGH */
        case AttributeEvent.FOLLOW_UPDATE:
            updateFlightModeButtons();
            updateFollowButton();
            break;

        case AttributeEvent.MISSION_DRONIE_CREATED:
            //Get the bearing of the dronie mission.
            float bearing = intent.getFloatExtra(AttributeEventExtra.EXTRA_MISSION_DRONIE_BEARING, -1);
            if (bearing >= 0) {
                final FlightActivity flightActivity = (FlightActivity) getActivity();
                if (flightActivity != null) {
                    flightActivity.updateMapBearing(bearing);
                }
            }
            break;
    }
}
 
开发者ID:sommishra,项目名称:DroidPlanner-Tower,代码行数:75,代码来源:CopterFlightControlFragment.java


注:本文中的com.o3dr.services.android.lib.drone.attribute.AttributeEvent.MISSION_DRONIE_CREATED属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。