/
Mr.Stalin
/
FOnline-Engine
Обзор
Документация
Войти
/
Mr.Stalin
/
FOnline-Engine
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Source/Client/ClientEntity.h
98 строк
4 KB
cvet
Naming fixes (#201)
10 авг 2026, 13:17
Не верифицирован
10 авг 2026, 13:17
dcde7a3
Код
Авторство
О чём код?
// __________ ___ ______ _ // / ____/ __ \____ / (_)___ ___ / ____/___ ____ _(_)___ ___ // / /_ / / / / __ \/ / / __ \/ _ \ / __/ / __ \/ __ `/ / __ \/ _ ` // / __/ / /_/ / / / / / / / / / __/ / /___/ / / / /_/ / / / / / __/ // /_/ \____/_/ /_/_/_/_/ /_/\___/ /_____/_/ /_/\__, /_/_/ /_/\___/ // /____/ // FOnline Engine // https://fonline.ru // https://github.com/cvet/fonline // // MIT License // // Copyright (c) 2006 - 2026, Anton Tsvetinskiy aka cvet <cvet@tut.by> // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // #pragma once #include "Common.h" #include "Entity.h" #include "EntityProtos.h" FO_BEGIN_NAMESPACE class ClientEngine; class ClientEntity : public Entity { public: ClientEntity() = delete; ClientEntity(const ClientEntity&) = delete; ClientEntity(ClientEntity&&) noexcept = delete; auto operator=(const ClientEntity&) = delete; auto operator=(ClientEntity&&) noexcept = delete; ~ClientEntity() override = default; [[nodiscard]] auto GetName() const noexcept -> string_view override { return _name; } [[nodiscard]] auto GetId() const noexcept -> ident_t override { return _id; } [[nodiscard]] auto GetEngine() const noexcept -> ptr<const ClientEngine> { return _engine; } [[nodiscard]] auto GetEngine() noexcept -> ptr<ClientEngine> { return _engine; } void SetId(ident_t id, bool register_entity); void DestroySelf(); protected: ClientEntity(ptr<ClientEngine> engine, ident_t id, ptr<const PropertyRegistrar> registrar, nptr<const Properties> props, nptr<const Properties> base_props); virtual void OnDestroySelf() = 0; ptr<ClientEngine> _engine; string _name {}; private: ident_t _id; bool _registered {}; }; class CustomEntityView : public ClientEntity, public EntityProperties { public: CustomEntityView(ptr<ClientEngine> engine, ident_t id, ptr<const PropertyRegistrar> registrar, nptr<const Properties> props, nptr<const Properties> base_props) : ClientEntity(engine, id, registrar, props, base_props), EntityProperties(*GetInitRef()) { } void OnDestroySelf() override; }; class CustomEntityWithProtoView : public CustomEntityView, public EntityWithProto { public: CustomEntityWithProtoView(ptr<ClientEngine> engine, ident_t id, ptr<const PropertyRegistrar> registrar, ptr<const ProtoEntity> proto) : CustomEntityView(engine, id, registrar, proto->GetProperties(), proto->GetProperties()), EntityWithProto(proto) { } }; FO_END_NAMESPACE