WPILibC++  unspecified
frc::Subsystem Class Reference
Inheritance diagram for frc::Subsystem:
Collaboration diagram for frc::Subsystem:

Public Member Functions

 Subsystem (const std::string &name)
 Creates a subsystem with the given name. More...
 
void SetDefaultCommand (Command *command)
 Sets the default command. More...
 
CommandGetDefaultCommand ()
 Returns the default command (or null if there is none). More...
 
void SetCurrentCommand (Command *command)
 Sets the current command. More...
 
CommandGetCurrentCommand () const
 Returns the command which currently claims this subsystem. More...
 
virtual void Periodic ()
 When the run method of the scheduler is called this method will be called.
 
virtual void InitDefaultCommand ()
 Initialize the default command for this subsystem. More...
 
std::string GetName () const override
 
void InitTable (std::shared_ptr< nt::NetworkTable > subtable) override
 Initializes a table for this sendable object. More...
 
std::string GetSmartDashboardType () const override
 
- Public Member Functions inherited from frc::ErrorBase
 ErrorBase (const ErrorBase &)=delete
 
ErrorBaseoperator= (const ErrorBase &)=delete
 
virtual ErrorGetError ()
 Retrieve the current error. More...
 
virtual const ErrorGetError () const
 
virtual void SetErrnoError (llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const
 Set error information associated with a C library call that set an error to the "errno" global variable. More...
 
virtual void SetImaqError (int success, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const
 Set the current error information associated from the nivision Imaq API. More...
 
virtual void SetError (Error::Code code, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const
 Set the current error information associated with this sensor. More...
 
virtual void SetErrorRange (Error::Code code, int32_t minRange, int32_t maxRange, int32_t requestedValue, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const
 Set the current error information associated with this sensor. More...
 
virtual void SetWPIError (llvm::StringRef errorMessage, Error::Code code, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const
 Set the current error information associated with this sensor. More...
 
virtual void CloneError (const ErrorBase &rhs) const
 
virtual void ClearError () const
 Clear the current error information associated with this sensor.
 
virtual bool StatusIsFatal () const
 Check if the current error code represents a fatal error. More...
 

Protected Attributes

nt::NetworkTableEntry m_hasDefaultEntry
 
nt::NetworkTableEntry m_defaultEntry
 
nt::NetworkTableEntry m_hasCommandEntry
 
nt::NetworkTableEntry m_commandEntry
 
- Protected Attributes inherited from frc::ErrorBase
Error m_error
 

Friends

class Scheduler
 

Additional Inherited Members

- Static Public Member Functions inherited from frc::ErrorBase
static void SetGlobalError (Error::Code code, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber)
 
static void SetGlobalWPIError (llvm::StringRef errorMessage, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber)
 
static ErrorGetGlobalError ()
 Retrieve the current global error.
 
- Static Protected Attributes inherited from frc::ErrorBase
static std::mutex _globalErrorMutex
 
static Error _globalError
 

Constructor & Destructor Documentation

Subsystem::Subsystem ( const std::string &  name)
explicit

Creates a subsystem with the given name.

Parameters
namethe name of the subsystem

Member Function Documentation

Command * Subsystem::GetCurrentCommand ( ) const

Returns the command which currently claims this subsystem.

Returns
the command which currently claims this subsystem
Command * Subsystem::GetDefaultCommand ( )

Returns the default command (or null if there is none).

Returns
the default command
std::string Subsystem::GetName ( ) const
overridevirtual
Returns
the name of the subtable of SmartDashboard that the Sendable object will use

Implements frc::NamedSendable.

std::string Subsystem::GetSmartDashboardType ( ) const
overridevirtual
Returns
the string representation of the named data type that will be used by the smart dashboard for this sendable

Implements frc::Sendable.

void Subsystem::InitDefaultCommand ( )
virtual

Initialize the default command for this subsystem.

This is meant to be the place to call SetDefaultCommand in a subsystem and will be called on all the subsystems by the CommandBase method before the program starts running by using the list of all registered Subsystems inside the Scheduler.

This should be overridden by a Subsystem that has a default Command

void Subsystem::InitTable ( std::shared_ptr< nt::NetworkTable subtable)
overridevirtual

Initializes a table for this sendable object.

Parameters
subtableThe table to put the values in.

Implements frc::Sendable.

void Subsystem::SetCurrentCommand ( Command command)

Sets the current command.

Parameters
commandthe new current command
void Subsystem::SetDefaultCommand ( Command command)

Sets the default command.

If this is not called or is called with null, then there will be no default command for the subsystem.

WARNING: This should NOT be called in a constructor if the subsystem is a singleton.

Parameters
commandthe default command (or null if there should be none)

The documentation for this class was generated from the following files: