{"id":19838467,"url":"https://github.com/dreamycecil/se1-ecc","last_synced_at":"2026-01-17T22:00:47.270Z","repository":{"id":64988871,"uuid":"580144359","full_name":"DreamyCecil/SE1-ECC","owner":"DreamyCecil","description":"Source code of the entity class compiler from Serious Engine 1 with support of wider range of engine versions and with new features.","archived":false,"fork":false,"pushed_at":"2026-01-17T00:36:43.000Z","size":970,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-17T13:13:27.295Z","etag":null,"topics":["ecc","entity-compiler","entity-pack","entity-source","serious-engine","serious-sam"],"latest_commit_sha":null,"homepage":"","language":"Yacc","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DreamyCecil.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-19T20:39:08.000Z","updated_at":"2026-01-14T22:14:34.000Z","dependencies_parsed_at":"2023-02-15T07:00:49.730Z","dependency_job_id":"16d1a096-f110-479e-82bd-6ddf4f2784e6","html_url":"https://github.com/DreamyCecil/SE1-ECC","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/DreamyCecil/SE1-ECC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DreamyCecil%2FSE1-ECC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DreamyCecil%2FSE1-ECC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DreamyCecil%2FSE1-ECC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DreamyCecil%2FSE1-ECC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DreamyCecil","download_url":"https://codeload.github.com/DreamyCecil/SE1-ECC/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DreamyCecil%2FSE1-ECC/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28519276,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T18:55:29.170Z","status":"ssl_error","status_checked_at":"2026-01-17T18:55:03.375Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["ecc","entity-compiler","entity-pack","entity-source","serious-engine","serious-sam"],"created_at":"2024-11-12T12:17:52.772Z","updated_at":"2026-01-17T22:00:47.246Z","avatar_url":"https://github.com/DreamyCecil.png","language":"Yacc","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Entity Class Compiler\n\nThis is the source code of an Entity Class Compiler (ECC), which is a custom build tool used to compile entity source files (`.es`) for Serious Engine 1.\nThis fork of ECC includes new features and also supports other engine versions, such as Serious Engine 1.50 and Serious Sam Revolution.\n\nOriginal source code is taken from [Serious Engine 1.10](https://github.com/Croteam-official/Serious-Engine).\n\nRelease executables are built under the `ClassicsEnhanced` configuration and are compatible with entity sources from most versions of Serious Engine 1.\n\n# Building\n\n### Available ECC versions\n\n| Visual Studio configuration | CMake option         | Description | Compatibility |\n| --------------------------- | -------------------- | ----------- | ------------- |\n| `Classics`                  | `ECC_FOR_CLASSICS=1` | ECC for entities from vanilla games. Serves as a base for the rest of the compilers. | 1.05; 1.07; 1.10 |\n| `ClassicsEnhanced`          | `ECC_FOR_ENHANCED=1` | ECC designed specifically for [this Serious Engine 1 Mod SDK](https://github.com/DreamyCecil/SE1-ModSDK). | 1.05; 1.07; 1.10; SSR |\n| `SE150`                     | `ECC_FOR_SE150=1`    | ECC for entities from Serious Engine 1.50 that support its features. | b1.50; 1.50 |\n| `SSR`                       | `ECC_FOR_SSR=1`      | ECC for entities from **Serious Sam Classics: Revolution** that support its features. | SSR |\n\n## Windows\n\n### Prerequisite\nProject files require **Visual Studio 2010** or later.\n\nQuick repository setup in some directory:\n```\ngit clone --recurse-submodules -j8 https://github.com/DreamyCecil/SE1-ECC.git\n```\n\n### Instructions\n1. Open `EntityClassCompiler.sln` solution.\n2. Select an appropriate build configuration for the desired ECC version.\n3. Press F7 or **Build** -\u003e **Build solution** to build the entire project.\n\n## Linux\n\n### Prerequisite\nBefore building, you need to install certain modules if they aren't already there.\n\nQuick repository setup in some directory:\n```\nsudo apt install git cmake build-essential libopenal-dev\ngit clone --recurse-submodules -j8 https://github.com/DreamyCecil/SE1-ECC.git\ncd ./SE1-ECC\n```\n\n### Instructions via terminal\n1. Create a build directory with `mkdir cmake-build` and then enter it with `cd cmake-build`\n2. Configure CMake project with `cmake ..` or with some options like `cmake -DCMAKE_BUILD_TYPE=Release -DECC_FOR_ENHANCED=1 ..`\n3. Build the project with `make`\n\n### Instructions via CMake\nAdd subdirectory with this project to your CMake project to build it with everything else, something like this:\n```cmake\n# Relative to the initial CMakeLists.txt\nadd_subdirectory(${CMAKE_SOURCE_DIR}/ThirdParty/SE1-ECC)\n\n# Or relative to the file\nadd_subdirectory(SE1-ECC)\n```\n\n# License\n\nThis project is licensed under GNU GPL v2 (see LICENSE file).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdreamycecil%2Fse1-ecc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdreamycecil%2Fse1-ecc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdreamycecil%2Fse1-ecc/lists"}