awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

Awesome GitHub RepositoriesGameplay State Synchronization

Synchronizing gameplay abilities, attributes, and effects across clients and server in a networked game environment.

Distinct from Multiplayer Synchronization: Distinct from Multiplayer Synchronization: focuses on game-specific state synchronization rather than general collaborative application sync.

Explore 3 awesome GitHub repositories matching web development · Gameplay State Synchronization. Refine with filters or upvote what's useful.

Awesome Gameplay State Synchronization GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • vcmi/vcmiالصورة الرمزية لـ vcmi

    vcmi/vcmi

    5,692عرض على GitHub↗

    vcmi هو محرك ألعاب مفتوح المصدر لـ Heroes of Might and Magic III يعيد إنشاء طريقة اللعب والمنطق والعرض للعبة الاستراتيجية الأصلية. يعمل كمحرك ألعاب عبر الأنظمة الأساسية يدعم Windows و Linux و macOS و Android و iOS، ويوفر محاكاة استراتيجية قائمة على الأدوار للتنقل في خريطة العالم الاستراتيجية والقتال التكتيكي. تم بناء المشروع كإطار عمل ألعاب قابل للتعديل (moddable)، ويتميز بنظام تعديل قائم على البيانات وتكامل برمجي بـ Lua في بيئة معزولة. تسمح هذه الميزات بتعريف منطق اللعب المخصص، وتأثيرات التعاويذ، وإضافة فصائل وشخصيات وأصول جديدة من خلال ملفات تكوين خارجية والتحقق من صحة المخطط. يتضمن المحرك مزامناً لحالة اللعب الجماعي ينسق الأدوار المتزامنة وتحديثات حالة اللعبة بين العملاء عبر التسلسل الثنائي. كما يدمج ذكاءً اصطناعياً لمحاكاة الاستراتيجية، ونظاماً مخصصاً لتأليف وتوليد الخرائط، وأدوات لتجاوز الأصول والتعريب. يدعم البرنامج تكوينات البناء متعددة الأنظمة ويوفر أدوات لاستخراج بيانات اللعبة وتصحيح حالات اللعبة.

    Synchronizes gameplay attributes and state across clients in a networked turn-based environment.

    C++
    عرض على GitHub↗5,692
  • tranek/gasdocumentationالصورة الرمزية لـ tranek

    tranek/GASDocumentation

    5,620عرض على GitHub↗

    This is a documentation and sample project for learning Unreal Engine's Gameplay Ability System (GAS), focused on building networked gameplay abilities that synchronize correctly in a multiplayer environment. The project provides a step-by-step guide to implementing GAS, covering the core concepts of defining gameplay mechanics through a data-driven attribute system that separates ability logic from character state management. The documentation explores key architectural patterns for multiplayer ability design, including a predicted-action network model that uses client-side prediction and se

    Synchronizes gameplay abilities, attributes, and effects across clients and server in a networked environment.

    C++
    عرض على GitHub↗5,620
  • space-wizards/space-station-14الصورة الرمزية لـ space-wizards

    space-wizards/space-station-14

    3,523عرض على GitHub↗

    Space Station 14 is a C# multiplayer game and roleplay simulation framework. It is built upon an Entity-Component-System (ECS) game engine that separates logic into systems and data into components to manage complex entity interactions. The project functions as a grid-based physics simulator with a YAML data-driven prototype system for defining game objects. The project features a specialized 2D sprite rendering engine that maps server-side appearance data to client-side shaders. It implements a networking model with client-side prediction and dirty-flagged state synchronization to reduce inp

    Implements client-side logic simulation to eliminate perceived input lag while waiting for server confirmation.

    C#c-sharpgamehacktoberfest
    عرض على GitHub↗3,523
  1. Home
  2. Web Development
  3. Multiplayer Synchronization
  4. Gameplay State Synchronization

استكشف الوسوم الفرعية

  • Input PredictionSimulates player actions locally to eliminate perceived input lag while awaiting server confirmation. **Distinct from Gameplay State Synchronization:** Specifically focuses on latency compensation via local simulation, rather than general gameplay state sync.