{"id":22349703,"url":"https://github.com/crissnamon/progressive","last_synced_at":"2025-03-26T11:23:03.853Z","repository":{"id":37858583,"uuid":"410877616","full_name":"CrissNamon/progressive","owner":"CrissNamon","description":"Open source framework to create game logic easily with IoC/DI container, auto-injection, state management, game objects with game scripts","archived":false,"fork":false,"pushed_at":"2023-01-31T16:07:20.000Z","size":4197,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-31T12:35:03.746Z","etag":null,"topics":["collaborate","contributions-welcome","dependency-injection","di-container","framework","game-development","game-engine","game-framework","gamedev","games","github","good-first-issue","java","jetbrains","libgdx","proxy","text-game","text-game-engine","text-games","text-quest"],"latest_commit_sha":null,"homepage":"https://hiddenproject.tech/p/progressive","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CrissNamon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-09-27T12:35:12.000Z","updated_at":"2025-01-09T19:58:59.000Z","dependencies_parsed_at":"2023-02-01T03:16:03.476Z","dependency_job_id":null,"html_url":"https://github.com/CrissNamon/progressive","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrissNamon%2Fprogressive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrissNamon%2Fprogressive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrissNamon%2Fprogressive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrissNamon%2Fprogressive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CrissNamon","download_url":"https://codeload.github.com/CrissNamon/progressive/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245641760,"owners_count":20648730,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["collaborate","contributions-welcome","dependency-injection","di-container","framework","game-development","game-engine","game-framework","gamedev","games","github","good-first-issue","java","jetbrains","libgdx","proxy","text-game","text-game-engine","text-games","text-quest"],"created_at":"2024-12-04T11:09:00.496Z","updated_at":"2025-03-26T11:23:03.833Z","avatar_url":"https://github.com/CrissNamon.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Progressive\n\n[![Build Status](https://app.travis-ci.com/CrissNamon/progressive.svg?branch=main)](https://app.travis-ci.com/CrissNamon/progressive) ![release](https://img.shields.io/github/v/release/crissnamon/progressive?include_prereleases) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/tech.hiddenproject/progressive/badge.svg)](https://maven-badges.herokuapp.com/maven-central/tech.hiddenproject/progressive)\n\u003cp\u003eProgressive is a simple game framework, which provides you predefined way to develop your game logic.\u003c/p\u003e\n\n#### About project\n\n___\n\u003cp\u003e\nProgressive gives you an IoC/DI container with auto injections feature through annotations, game objects, game scripts and much more! It's is like a constructor. You can add game objects and attach game scripts to them.\n\nMain features:\n\n- Extendable IoC/DI containers with auto injections through annotations, frame updates\n- GameObjects and GameScripts\n- State machine\n- Storage (Persistence api)\n- The global observer for components connection\n- Proxy classes and proxy objects creation through annotations with custom method interceptors\n\n\u003c/p\u003e \n\n#### Usage\n\n##### Maven\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003etech.hiddenproject\u003c/groupId\u003e\n  \u003cartifactId\u003eprogressive-all\u003c/artifactId\u003e\n  \u003cversion\u003e0.7.11\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n\u003cdetails\u003e\n  \u003csummary\u003eIf you don't need all components\u003c/summary\u003e\n\n- progressive-api required for each component\n\n```xml\n\n\u003cdependency\u003e\n  \u003cgroupId\u003etech.hiddenproject\u003c/groupId\u003e\n  \u003cartifactId\u003eprogressive-api\u003c/artifactId\u003e\n  \u003cversion\u003e0.7.11\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n- progressive-game contains Game and related classes\n\n```xml\n\n\u003cdependency\u003e\n  \u003cgroupId\u003etech.hiddenproject\u003c/groupId\u003e\n  \u003cartifactId\u003eprogressive-game\u003c/artifactId\u003e\n  \u003cversion\u003e0.7.11\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n- progressive-injection contains DIContainer and related classes\n\n```xml\n\n\u003cdependency\u003e\n  \u003cgroupId\u003etech.hiddenproject\u003c/groupId\u003e\n  \u003cartifactId\u003eprogressive-injection\u003c/artifactId\u003e\n  \u003cversion\u003e0.7.11\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n- progressive-persistence contains Storage and related classes\n\n```xml\n\n\u003cdependency\u003e\n  \u003cgroupId\u003etech.hiddenproject\u003c/groupId\u003e\n  \u003cartifactId\u003eprogressive-persistence\u003c/artifactId\u003e\n  \u003cversion\u003e0.7.11\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n- progressive-proxy contains ProxyCreator and related classes\n\n```xml\n\n\u003cdependency\u003e\n  \u003cgroupId\u003etech.hiddenproject\u003c/groupId\u003e\n  \u003cartifactId\u003eprogressive-proxy\u003c/artifactId\u003e\n  \u003cversion\u003e0.7.11\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n\u003c/details\u003e\n\n##### Gradle\n\n````groovy\nimplementation 'tech.hiddenproject:progressive-all:0.7.11'\n````\n\n\u003cdetails\u003e\n  \u003csummary\u003eIf you don't need all components\u003c/summary\u003e\n\nUse same artifacts from maven\n\n\u003c/details\u003e\n\n#### Resources\n\n___\n\n* Learn more at Progressive [Wiki](https://github.com/CrissNamon/progressive/wiki)\n* Look at some examples\n  in [example](https://github.com/CrissNamon/progressive/blob/main/src/main/java/tech/hiddenproject/example/) package\n* See javadoc [here](https://hiddenproject.tech/progressive/javadoc)\n\n#### Dependencies and source\n\n___\n\n[BasicProxyCreator](https://github.com/CrissNamon/progressive/blob/main/src/main/java/ru/hiddenproject/progressive/basic/BasicProxyCreator.java)\nuses [ByteBuddy](https://bytebuddy.net/) for proxy creation. You need to add byte-buddy lib to be able to use proxy\nclasses in your project. For android development you also need to\nadd [byte-buddy-android](https://github.com/raphw/byte-buddy/tree/master/byte-buddy-android) lib.\n\u003cp\u003eAll other parts of Progressive have no dependencies and use only Java 8.\u003c/p\u003e \n\n#### Repository info\n\n___\n\n* The main branch contains stable release\n* Development branch contains WIP code\n* Progressive is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0)\n\n#### Authors\n\n___\n\n* [Danila Rassokhin](https://gihub.com/crissnamon) [![Twitter](https://img.shields.io/twitter/follow/kpekepsalt_en?style=social)](https://twitter.com/kpekepsalt_en)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrissnamon%2Fprogressive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrissnamon%2Fprogressive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrissnamon%2Fprogressive/lists"}