2013-12-15 18:30:16 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2015-06-25 15:07:55 -04:00
|
|
|
/* Copyright (c) FIRST 2008. All Rights Reserved.
|
|
|
|
|
*/
|
2013-12-15 18:30:16 -05:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include "RobotBase.h"
|
|
|
|
|
|
|
|
|
|
#include "DriverStation.h"
|
2014-01-06 10:12:21 -05:00
|
|
|
//#include "NetworkCommunication/FRCComm.h"
|
|
|
|
|
//#include "NetworkCommunication/symModuleLink.h"
|
|
|
|
|
//#include "NetworkCommunication/UsageReporting.h"
|
2014-08-08 17:05:49 -04:00
|
|
|
#include "RobotState.h"
|
|
|
|
|
#include "HLUsageReporting.h"
|
|
|
|
|
#include "Internal/HardwareHLReporting.h"
|
2013-12-15 18:30:16 -05:00
|
|
|
#include "Utility.h"
|
|
|
|
|
#include <cstring>
|
2014-05-02 17:54:01 -04:00
|
|
|
#include "HAL/HAL.hpp"
|
2014-12-29 14:15:55 -05:00
|
|
|
#include <cstdio>
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
#ifdef __vxworks
|
|
|
|
|
// VXWorks needs som special unloading code
|
|
|
|
|
#include <moduleLib.h>
|
|
|
|
|
#include <unldLib.h>
|
|
|
|
|
#include <taskLib.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
RobotBase *RobotBase::m_instance = NULL;
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
void RobotBase::setInstance(RobotBase *robot) {
|
|
|
|
|
wpi_assert(m_instance == NULL);
|
|
|
|
|
m_instance = robot;
|
2013-12-15 18:30:16 -05:00
|
|
|
}
|
|
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
RobotBase &RobotBase::getInstance() { return *m_instance; }
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
void RobotBase::robotSetup(RobotBase *robot) {
|
|
|
|
|
robot->Prestart();
|
|
|
|
|
robot->StartCompetition();
|
2014-12-17 07:35:55 -08:00
|
|
|
}
|
|
|
|
|
|
2013-12-15 18:30:16 -05:00
|
|
|
/**
|
|
|
|
|
* Constructor for a generic robot program.
|
2015-06-25 15:07:55 -04:00
|
|
|
* User code should be placed in the constructor that runs before the Autonomous
|
|
|
|
|
* or Operator
|
|
|
|
|
* Control period starts. The constructor will run to completion before
|
|
|
|
|
* Autonomous is entered.
|
2014-10-20 10:41:01 -04:00
|
|
|
*
|
2015-06-25 15:07:55 -04:00
|
|
|
* This must be used to ensure that the communications code starts. In the
|
|
|
|
|
* future it would be
|
|
|
|
|
* nice to put this code into it's own task that loads on boot so ensure that it
|
|
|
|
|
* runs.
|
2013-12-15 18:30:16 -05:00
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
RobotBase::RobotBase() : m_task(NULL), m_ds(NULL) {
|
|
|
|
|
m_ds = DriverStation::GetInstance();
|
|
|
|
|
RobotState::SetImplementation(DriverStation::GetInstance());
|
|
|
|
|
HLUsageReporting::SetImplementation(new HardwareHLReporting());
|
|
|
|
|
|
|
|
|
|
RobotBase::setInstance(this);
|
|
|
|
|
|
|
|
|
|
FILE *file = NULL;
|
|
|
|
|
file = fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
|
|
|
|
|
|
|
|
|
|
fputs("2015 C++ 1.2.0", file);
|
|
|
|
|
if (file != NULL) fclose(file);
|
2013-12-15 18:30:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Free the resources for a RobotBase class.
|
2015-06-25 15:07:55 -04:00
|
|
|
* This includes deleting all classes that might have been allocated as
|
|
|
|
|
* Singletons to they
|
2013-12-15 18:30:16 -05:00
|
|
|
* would never be deleted except here.
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
RobotBase::~RobotBase() {
|
|
|
|
|
SensorBase::DeleteSingletons();
|
|
|
|
|
delete m_task;
|
|
|
|
|
m_task = NULL;
|
|
|
|
|
m_instance = NULL;
|
2013-12-15 18:30:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the Robot is currently enabled.
|
|
|
|
|
* @return True if the Robot is currently enabled by the field controls.
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
bool RobotBase::IsEnabled() const { return m_ds->IsEnabled(); }
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the Robot is currently disabled.
|
|
|
|
|
* @return True if the Robot is currently disabled by the field controls.
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
bool RobotBase::IsDisabled() const { return m_ds->IsDisabled(); }
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
/**
|
2014-12-09 02:30:34 +00:00
|
|
|
* Determine if the robot is currently in Autonomous mode.
|
2015-06-25 15:07:55 -04:00
|
|
|
* @return True if the robot is currently operating Autonomously as determined
|
|
|
|
|
* by the field controls.
|
2013-12-15 18:30:16 -05:00
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
bool RobotBase::IsAutonomous() const { return m_ds->IsAutonomous(); }
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the robot is currently in Operator Control mode.
|
2015-06-25 15:07:55 -04:00
|
|
|
* @return True if the robot is currently operating in Tele-Op mode as
|
|
|
|
|
* determined by the field controls.
|
2013-12-15 18:30:16 -05:00
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
bool RobotBase::IsOperatorControl() const { return m_ds->IsOperatorControl(); }
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the robot is currently in Test mode.
|
2015-06-25 15:07:55 -04:00
|
|
|
* @return True if the robot is currently running tests as determined by the
|
|
|
|
|
* field controls.
|
2013-12-15 18:30:16 -05:00
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
bool RobotBase::IsTest() const { return m_ds->IsTest(); }
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2014-12-09 02:30:34 +00:00
|
|
|
/**
|
2015-06-25 15:07:55 -04:00
|
|
|
* This hook is called right before startCompetition(). By default, tell the DS
|
|
|
|
|
* that the robot is now ready to
|
|
|
|
|
* be enabled. If you don't want for the robot to be enabled yet, you can
|
|
|
|
|
* override this method to do nothing.
|
|
|
|
|
* If you do so, you will need to call
|
|
|
|
|
* HALNetworkCommunicationObserveUserProgramStarting() from your code when
|
2014-12-29 14:09:37 -05:00
|
|
|
* you are ready for the robot to be enabled.
|
2014-12-09 02:30:34 +00:00
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
void RobotBase::Prestart() {
|
|
|
|
|
HALNetworkCommunicationObserveUserProgramStarting();
|
2014-12-09 02:30:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-12-15 18:30:16 -05:00
|
|
|
/**
|
|
|
|
|
* Indicates if new data is available from the driver station.
|
2015-06-25 15:07:55 -04:00
|
|
|
* @return Has new data arrived over the network since the last time this
|
|
|
|
|
* function was called?
|
2013-12-15 18:30:16 -05:00
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
bool RobotBase::IsNewDataAvailable() const { return m_ds->IsNewControlData(); }
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
/**
|
2015-06-25 15:07:55 -04:00
|
|
|
* This class exists for the sole purpose of getting its destructor called when
|
|
|
|
|
* the module unloads.
|
|
|
|
|
* Before the module is done unloading, we need to delete the RobotBase derived
|
|
|
|
|
* singleton. This should delete
|
|
|
|
|
* the other remaining singletons that were registered. This should also stop
|
|
|
|
|
* all tasks that are using
|
2013-12-15 18:30:16 -05:00
|
|
|
* the Task class.
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
class RobotDeleter {
|
|
|
|
|
public:
|
|
|
|
|
RobotDeleter() {}
|
|
|
|
|
~RobotDeleter() { delete &RobotBase::getInstance(); }
|
2013-12-15 18:30:16 -05:00
|
|
|
};
|
|
|
|
|
static RobotDeleter g_robotDeleter;
|