$darkmode
wheel.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2022 Robert Bosch GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  * SPDX-License-Identifier: Apache-2.0
17  */
22 #pragma once
23 
24 #include <fable/json.hpp> // for to_json
25 
26 #include <sol/sol.hpp> // for Lua related aspects
27 
28 namespace cloe {
29 
30 struct Wheel {
32  double rotation{0.0};
33 
35  double velocity{0.0};
36 
38  double spring_compression{0.0};
39 
40  friend void to_json(fable::Json& j, const Wheel& w) {
41  j = fable::Json{
42  {"rotation", w.rotation},
43  {"velocity", w.velocity},
44  {"spring_compression", w.spring_compression},
45  };
46  }
47  friend void to_lua(sol::state_view view, Wheel* /* value */) {
48  sol::usertype<Wheel> usertype_table = view.new_usertype<Wheel>("Wheel");
49  usertype_table["rotation"] = &Wheel::rotation;
50  usertype_table["velocity"] = &Wheel::velocity;
51  usertype_table["spring_compression"] = &Wheel::spring_compression;
52  }
53 };
54 
55 } // namespace cloe
nlohmann::json Json
Definition: fable_fwd.hpp:35
Definition: wheel.hpp:30
double spring_compression
Compression of the spring in [m].
Definition: wheel.hpp:38
double rotation
Rotational angle of wheel around y-axis in [rad].
Definition: wheel.hpp:32
double velocity
Translative velocity of the wheel in [m/s].
Definition: wheel.hpp:35