{"id":21030247,"url":"https://github.com/whoxer/decryptix","last_synced_at":"2025-07-07T08:39:11.606Z","repository":{"id":183605573,"uuid":"670437192","full_name":"whoxer/decryptix","owner":"whoxer","description":"Jogo de decodificação de padrões criados a partir de um sistema.","archived":false,"fork":false,"pushed_at":"2023-08-14T20:34:41.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-20T15:18:34.603Z","etag":null,"topics":["cli","development","game","project"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/whoxer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-25T03:58:38.000Z","updated_at":"2023-08-02T03:53:15.000Z","dependencies_parsed_at":"2023-08-14T23:39:03.469Z","dependency_job_id":null,"html_url":"https://github.com/whoxer/decryptix","commit_stats":null,"previous_names":["whoxer/decriptyx","whoxer/decryptix"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whoxer%2Fdecryptix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whoxer%2Fdecryptix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whoxer%2Fdecryptix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whoxer%2Fdecryptix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whoxer","download_url":"https://codeload.github.com/whoxer/decryptix/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243466986,"owners_count":20295310,"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":["cli","development","game","project"],"created_at":"2024-11-19T12:17:17.293Z","updated_at":"2025-07-07T08:39:11.600Z","avatar_url":"https://github.com/whoxer.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Decriptyx\n\nJogo de decodificação de padrões pseudoaleatórios. O *Decriptyx* é um projeto de jogo que foi desenvolvido a partir de um livro chamado *\"C++ de A à Z\"*. Comecei a desenvolvê-lo quando estava estudando a linguagem C++, contudo fui indo para outras fontes e deixando de lado o livro que por ser muito antigo eu achei que não fosse o melhor lugar para estudar o C++ moderno. O jogo em questão aparenta não estar em lugar algum da internet, nem mesmo o executável, nem mesmo o código fonte, então pela nostalgia e por eu querer que isto esteja disponível na web tanto para fins educacionais quanto para fins históricos transformarei este repositório num museu.\n\n###### Requisitos para compilação\n\n1. C++98\n2. G++ Compiler\n3. Makefile\n\t\n## Configurações de ambiente\n\nPara este projeto estou utilizando o Visual Studio Code com algumas configurações especiais no diretório ``.vscode``, não é obrigatório então apenas faça se souber o que está fazendo. As configurações são as que seguem:\n\n1. c_cpp_properties.json\n\n```json\n\n{\n    \"configurations\": [\n        {\n            \"name\": \"Linux\",  // Ou \"Win32\" se for Windows\n            \"includePath\": [\n                \"${workspaceFolder}/include\",  // Seus headers locais\n                \"/usr/include\"                // Headers do sistema\n            ],\n            \"defines\": [\n                \"DEBUG\"                      // Define DEBUG se necessário\n            ],\n            \"compilerPath\": \"/usr/bin/g++\",  // Caminho do compilador\n            \"cStandard\": \"c99\",              // Padrão C (opcional)\n            \"cppStandard\": \"c++98\",           // Padrão C++98\n            \"intelliSenseMode\": \"linux-gcc-x64\",  // Modo de IntelliSense\n            \"configurationProvider\": \"ms-vscode.makefile-tools\"  // Se usar extensão Makefile Tools\n        }\n    ],\n    \"version\": 4\n}\n```\n\n2. launch.json\n\n```json\n\n{\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n        {\n            \"name\": \"Debug C++\",\n            \"type\": \"cppdbg\",\n            \"request\": \"launch\",\n            \"program\": \"${workspaceFolder}/bin/debug\",\n            \"args\": [],\n            \"stopAtEntry\": false,\n            \"cwd\": \"${workspaceFolder}\",\n            \"environment\": [],\n            \"externalConsole\": false,\n            \"MIMode\": \"gdb\",\n            \"setupCommands\": [\n                {\n                    \"description\": \"Habilitar pretty-printing para gdb\",\n                    \"text\": \"-enable-pretty-printing\",\n                    \"ignoreFailures\": true\n                }\n            ],\n            \"preLaunchTask\": \"build-debug\",\n            \"miDebuggerPath\": \"/usr/bin/gdb\"\n        }\n    ]\n}\n```\n\n3. tasks.json\n\n\n```json\n{\n    \"version\": \"2.0.0\",\n    \"tasks\": [\n        {\n            \"label\": \"build-debug\",\n            \"type\": \"shell\",\n            \"command\": \"make debug\",\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": true\n            },\n            \"problemMatcher\": []\n        },\n        {\n            \"label\": \"build-release\",\n            \"type\": \"shell\",\n            \"command\": \"make release\",\n            \"problemMatcher\": []\n        }\n    ]\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhoxer%2Fdecryptix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhoxer%2Fdecryptix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhoxer%2Fdecryptix/lists"}