-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathhelpers.h
32 lines (23 loc) · 942 Bytes
/
helpers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma once
#include <robotpy_build.h>
#include <frc2/command/Command.h>
#include <frc2/command/Subsystem.h>
std::vector<std::shared_ptr<frc2::Command>> pyargs2cmdList(py::args cmds);
std::vector<std::shared_ptr<frc2::Subsystem>> pyargs2SharedSubsystemList(py::args subs);
std::vector<frc2::Subsystem*> pyargs2SubsystemList(py::args subs);
template <typename T>
std::shared_ptr<T> convertToSharedPtrHack(T *orig) {
py::gil_scoped_acquire gil;
py::object pyo = py::cast(orig);
return py::cast<std::shared_ptr<T>>(pyo);
}
class CommandIterator {
public:
std::shared_ptr<frc2::Command> cmd;
bool called_initialize = false;
explicit CommandIterator(std::shared_ptr<frc2::Command> cmd);
std::shared_ptr<frc2::Command> operator*() const;
CommandIterator& operator++();
};
class CommandIteratorSentinel {};
bool operator==(const CommandIterator& it, const CommandIteratorSentinel&);