Home
last modified time | relevance | path

Searched refs:StarType (Results 1 – 25 of 53) sorted by relevance

123

/dports/astro/celestia-gtk/celestia-1.6.1/src/celengine/
H A Dstellarclass.h22 enum StarType enum
87 inline StellarClass(StarType,
92 inline StarType getStarType() const;
111 StarType starType;
124 StellarClass::StellarClass(StarType t, in StellarClass()
144 StellarClass::StarType StellarClass::getStarType() const in getStarType()
H A Dstellarclass.cpp68 StellarClass::StarType st = getStarType(); in str()
161 starType = static_cast<StellarClass::StarType>(st >> 12); in unpack()
242 StellarClass::StarType starType = StellarClass::NormalStar; in parse()
/dports/astro/celestia/celestia-1.6.1/src/celengine/
H A Dstellarclass.h22 enum StarType enum
87 inline StellarClass(StarType,
92 inline StarType getStarType() const;
111 StarType starType;
124 StellarClass::StellarClass(StarType t, in StellarClass()
144 StellarClass::StarType StellarClass::getStarType() const in getStarType()
H A Dstellarclass.cpp68 StellarClass::StarType st = getStarType(); in str()
161 starType = static_cast<StellarClass::StarType>(st >> 12); in unpack()
242 StellarClass::StarType starType = StellarClass::NormalStar; in parse()
/dports/games/freeorion/freeorion-0.4.10.2/universe/
H A DSystem.h59StarType GetStarType() const { return m_star; } ///< returns the type … in GetStarType()
60 StarType NextOlderStarType() const;
61 StarType NextYoungerStarType() const;
117 … void SetStarType(StarType type); ///< sets the type of the star in this Systems to \a StarType
136 System(StarType star, const std::string& name, double x, double y);
139 System(StarType star, const std::map<int, bool>& lanes_and_holes,
153 StarType m_star;
H A DSystem.cpp23 System::System(StarType star, const std::string& name, double x, double y) : in System()
35 System::System(StarType star, const std::map<int, bool>& lanes_and_holes, in System()
232 StarType System::NextOlderStarType() const { in NextOlderStarType()
237 …return StarType(m_star + 1); // STAR_BLUE -> STAR_WHITE -> STAR_YELLOW -> STAR_ORANGE -> STAR_R… in NextOlderStarType()
240 StarType System::NextYoungerStarType() const { in NextYoungerStarType()
247 …return StarType(m_star - 1); // STAR_BLUE <- STAR_WHITE <- STAR_YELLOW <- STAR_ORANGE <- STAR_R… in NextYoungerStarType()
437 void System::SetStarType(StarType type) { in SetStarType()
H A DEnumsFwd.h5 enum StarType : int;
H A DEnums.h28 GG_ENUM(StarType,
H A DValueRefs.cpp516 std::string Constant<StarType>::Dump(unsigned short ntabs) const in Dump()
724 StarType Variable<StarType>::Eval(const ScriptingContext& context) const in Eval()
728 IF_CURRENT_VALUE(StarType) in Eval()
737 std::function<StarType (const System&)> system_property{nullptr}; in Eval()
752 LOG_UNKNOWN_VARIABLE_PROPERTY_TRACE(StarType) in Eval()
1390 StarType ComplexVariable<StarType>::Eval(const ScriptingContext& context) const in Eval()
/dports/games/freeorion/freeorion-0.4.10.2/UI/
H A DModeratorActionsWnd.h25 StarType SelectedStarType() const;
38 mutable boost::signals2::signal<void (StarType)> CreateSystemActionSelectedSignal;
57 StarType StarTypeFromIndex(std::size_t i) const;
H A DModeratorActionsWnd.cpp68 …for (StarType star_type = STAR_BLUE; star_type != NUM_STAR_TYPES; star_type = StarType(star_type +… in CompleteConstruction()
254 StarType ModeratorActionsWnd::SelectedStarType() const in SelectedStarType()
336 StarType ModeratorActionsWnd::StarTypeFromIndex(std::size_t i) const { in StarTypeFromIndex()
339 …return StarType(i); // assumes first enum and first index are value 0, and that items in list … in StarTypeFromIndex()
H A DClientUI.h211 static std::map<StarType, std::string>& StarTypeFilePrefixes();
212 static std::map<StarType, std::string>& HaloStarTypeFilePrefixes();
H A DSidePanel.cpp311 const std::map<StarType, std::vector<float>>& GetStarLightColors() { in GetStarLightColors()
312 static std::map<StarType, std::vector<float>> light_colors; in GetStarLightColors()
338 light_colors[StarType(i)].resize(4, 1.0); in GetStarLightColors()
346 const std::vector<float>& StarLightColour(StarType star_type) { in StarLightColour()
358 StarType star_type) in RenderPlanet()
513 PlanetPanel(GG::X w, int planet_id, StarType star_type);
601 StarType m_star_type;
634 void SetPlanets(const std::vector<int>& planet_ids, StarType star_type);
685 RotatingPlanetControl(GG::X x, GG::Y y, int planet_id, StarType star_type) : in RotatingPlanetControl()
774 StarType m_star_type;
[all …]
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/lottie-ios/lottie-swift/src/Private/Model/ShapeItems/
H A DStar.swift10 enum StarType: Int, Codable {
44 let starType: StarType
68 self.starType = try container.decode(StarType.self, forKey: .starType)
/dports/games/freeorion/freeorion-0.4.10.2/test/parse/
H A DTestEnumParser.cpp317 CHECK_ENUM_EXPR_AND_RESULT("Blue", STAR_BLUE, StarType, parse::detail::star_type_parser_rules); in BOOST_AUTO_TEST_CASE()
318 … CHECK_ENUM_EXPR_AND_RESULT("White", STAR_WHITE, StarType, parse::detail::star_type_parser_rules); in BOOST_AUTO_TEST_CASE()
319 …CHECK_ENUM_EXPR_AND_RESULT("Yellow", STAR_YELLOW, StarType, parse::detail::star_type_parser_rules); in BOOST_AUTO_TEST_CASE()
320 …CHECK_ENUM_EXPR_AND_RESULT("Orange", STAR_ORANGE, StarType, parse::detail::star_type_parser_rules); in BOOST_AUTO_TEST_CASE()
321 CHECK_ENUM_EXPR_AND_RESULT("Red", STAR_RED, StarType, parse::detail::star_type_parser_rules); in BOOST_AUTO_TEST_CASE()
322 …CHECK_ENUM_EXPR_AND_RESULT("Neutron", STAR_NEUTRON, StarType, parse::detail::star_type_parser_rule… in BOOST_AUTO_TEST_CASE()
323 …CHECK_ENUM_EXPR_AND_RESULT("BlackHole", STAR_BLACK, StarType, parse::detail::star_type_parser_rule… in BOOST_AUTO_TEST_CASE()
324 … CHECK_ENUM_EXPR_AND_RESULT("NoStar", STAR_NONE, StarType, parse::detail::star_type_parser_rules); in BOOST_AUTO_TEST_CASE()
325 CHECK_FAILED_ENUM_EXPR(StarType, parse::detail::star_type_parser_rules); in BOOST_AUTO_TEST_CASE()
/dports/devel/py-mypy/mypy-0.910/mypy/
H A Dtypetraverser.py8 Overloaded, TypeType, CallableArgument, UnboundType, TypeList, StarType, EllipsisType,
85 def visit_star_type(self, t: StarType) -> None: argument
H A Dtype_visitor.py25 UnboundType, ErasedType, StarType, EllipsisType, TypeList, CallableArgument,
119 def visit_star_type(self, t: StarType) -> T: argument
323 def visit_star_type(self, t: StarType) -> T: argument
/dports/games/freeorion/freeorion-0.4.10.2/util/
H A DModeratorAction.h114 CreateSystem(double x, double y, StarType star_type);
122 StarType m_star_type;
H A DModeratorAction.cpp151 Moderator::CreateSystem::CreateSystem(double x, double y, StarType star_type) : in CreateSystem()
/dports/games/freeorion/freeorion-0.4.10.2/parse/
H A DConditionParser7.h16 single_or_bracketed_repeat<value_ref_rule<StarType>>
H A DConditionParser7.cpp17 …inline ostream& operator<<(ostream& os, const std::vector<ValueRef::ValueRef<StarType>*>&) { retur… in operator <<() argument
69 … [ _val = construct_movable_(new_<Condition::StarType>(deconstruct_movable_vector_(_1, _pass))) ] in condition_parser_rules_7()
/dports/astro/celestia-gtk/celestia-1.6.1/src/tools/stardb/
H A Dstartextdump.cpp83 StellarClass::StarType st = (StellarClass::StarType) (sc >> 12); in printStellarClass()
/dports/astro/celestia/celestia-1.6.1/src/tools/stardb/
H A Dstartextdump.cpp83 StellarClass::StarType st = (StellarClass::StarType) (sc >> 12); in printStellarClass()
/dports/astro/celestia-gtk/celestia-1.6.1/src/
H A Dreadstars.cpp61 StellarClass sc((StellarClass::StarType) (stellarClass >> 12), in main()
/dports/astro/celestia/celestia-1.6.1/src/
H A Dreadstars.cpp61 StellarClass sc((StellarClass::StarType) (stellarClass >> 12), in main()

123