|
| 1 | +<!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 --> |
| 2 | +<a name="readme-top"></a> |
| 3 | + |
| 4 | +<!-- PROJECT SHIELDS --> |
| 5 | +<!-- |
| 6 | +*** I'm using markdown "reference style" links for readability. |
| 7 | +*** Reference links are enclosed in brackets [ ] instead of parentheses ( ). |
| 8 | +*** See the bottom of this document for the declaration of the reference variables |
| 9 | +*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use. |
| 10 | +*** https://www.markdownguide.org/basic-syntax/#reference-style-links |
| 11 | +--> |
| 12 | +[![Contributors][contributors-shield]][contributors-url] |
| 13 | +[![Forks][forks-shield]][forks-url] |
| 14 | +[![Stargazers][stars-shield]][stars-url] |
| 15 | +[![Issues][issues-shield]][issues-url] |
| 16 | +[![MIT License][license-shield]][license-url] |
| 17 | + |
| 18 | + |
| 19 | + |
| 20 | +<!-- PROJECT LOGO --> |
| 21 | +<br /> |
| 22 | +<div align="center"> |
| 23 | + <!-- TODO: Add logo: <a href="https://github.com/scratchcpp/scratchcpp-player"> |
| 24 | + <img src="images/logo.png" alt="Logo" width="80" height="80"> |
| 25 | + </a> --> |
| 26 | + |
| 27 | +<h3 align="center">ScratchCPP Player</h3> |
| 28 | + |
| 29 | + <p align="center"> |
| 30 | + ScratchCPP is an application which runs Scratch projects, written in C++ and QML. |
| 31 | + It uses the <a href="https://github.com/scratchcpp/scratchcpp-render">scratchcpp-render</a> library for rendering, |
| 32 | + which uses <a href="https://github.com/scratchcpp/libscratchcpp">libscratchcpp</a> to parse and run Scratch projects. |
| 33 | + <br /> |
| 34 | + <!-- TODO: Add link to documentation: <a href="https://github.com/scratchcpp/scratchcpp-player"><strong>Explore the docs »</strong></a> |
| 35 | + <br /> --> |
| 36 | + <br /> |
| 37 | + <a href="https://github.com/scratchcpp/scratchcpp-player/issues">Report Bug</a> |
| 38 | + · |
| 39 | + <a href="https://github.com/scratchcpp/scratchcpp-player/issues">Request Feature</a> |
| 40 | + </p> |
| 41 | +</div> |
| 42 | + |
| 43 | + |
| 44 | + |
| 45 | +<!-- TABLE OF CONTENTS --> |
| 46 | +<details> |
| 47 | + <summary>Table of Contents</summary> |
| 48 | + <ol> |
| 49 | + <li> |
| 50 | + <a href="#about-the-project">About The Project</a> |
| 51 | + </li> |
| 52 | + <li> |
| 53 | + <a href="#getting-started">Getting Started</a> |
| 54 | + </li> |
| 55 | + <li><a href="#usage">Usage</a></li> |
| 56 | + <li><a href="#roadmap">Roadmap</a></li> |
| 57 | + <li><a href="#contributing">Contributing</a></li> |
| 58 | + <li><a href="#license">License</a></li> |
| 59 | + </ol> |
| 60 | +</details> |
| 61 | + |
| 62 | + |
| 63 | + |
| 64 | +<!-- ABOUT THE PROJECT --> |
| 65 | +## About The Project |
| 66 | + |
| 67 | +**ScratchCPP** is an ongoing project to build a fast and lightweight Scratch project player. |
| 68 | +It might not be as fast as TurboWarp (yet), but the main goal is to develop a project player |
| 69 | +that is **lightweight**. |
| 70 | + |
| 71 | +Scratch requires a web browser to run and web browsers typically require a lot of resources (memory). |
| 72 | +The ScratchCPP project player doesn't depend on a web browsers and uses less memory. |
| 73 | + |
| 74 | +## NOTE |
| 75 | +This application is still in development and it doesn't run most Scratch projects correctly. |
| 76 | + |
| 77 | +<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 78 | + |
| 79 | + |
| 80 | + |
| 81 | +<!-- GETTING STARTED --> |
| 82 | +## Getting Started |
| 83 | + |
| 84 | +We're working on the documentation, it'll be available soon. |
| 85 | +<!-- TODO: Add link to documentation --> |
| 86 | + |
| 87 | +<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 88 | + |
| 89 | + |
| 90 | + |
| 91 | +<!-- USAGE EXAMPLES --> |
| 92 | +## Usage |
| 93 | +The UI is very simple to use. Paste the project URL in the text box and press the `Load` button. |
| 94 | +When the project loads, click on the green flag button to run it. |
| 95 | + |
| 96 | +<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 97 | + |
| 98 | + |
| 99 | + |
| 100 | +<!-- ROADMAP --> |
| 101 | +## Roadmap |
| 102 | + |
| 103 | +- [x] Loading from URL |
| 104 | +- [ ] Loading from a local file (path to the file can be used as a URL until this is implemented) |
| 105 | +- [x] Green flag button |
| 106 | +- [x] Stop button |
| 107 | +- [ ] Turbo mode |
| 108 | +- [ ] FPS options |
| 109 | +- [ ] Stage size options |
| 110 | +- [ ] HQ pen |
| 111 | +- [ ] Mute sounds |
| 112 | +- [ ] Theme options (light/dark mode, accent color, etc.) |
| 113 | + |
| 114 | +See the [open issues](https://github.com/scratchcpp/scratchcpp-player/issues) for a full list of proposed features (and known issues). |
| 115 | + |
| 116 | +<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 117 | + |
| 118 | + |
| 119 | + |
| 120 | +<!-- CONTRIBUTING --> |
| 121 | +## Contributing |
| 122 | + |
| 123 | +Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. |
| 124 | + |
| 125 | +If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". |
| 126 | +Don't forget to give the project a star! Thanks again! |
| 127 | + |
| 128 | +1. Fork the Project |
| 129 | +2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) |
| 130 | +3. Format changed source files (`clang-format src/some_file.cpp`) |
| 131 | +4. Commit your Changes (`git add -A && git commit -m 'Add some AmazingFeature'`) |
| 132 | +5. Push to the Branch (`git push origin feature/AmazingFeature`) |
| 133 | +6. Open a Pull Request |
| 134 | + |
| 135 | +<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 136 | + |
| 137 | + |
| 138 | + |
| 139 | +<!-- LICENSE --> |
| 140 | +## License |
| 141 | + |
| 142 | +Distributed under the GNU General Public License. See [LICENSE](LICENSE) for more information. |
| 143 | + |
| 144 | +<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 145 | + |
| 146 | + |
| 147 | + |
| 148 | +<!-- MARKDOWN LINKS & IMAGES --> |
| 149 | +<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --> |
| 150 | +[contributors-shield]: https://img.shields.io/github/contributors/scratchcpp/scratchcpp-player.svg?style=for-the-badge |
| 151 | +[contributors-url]: https://github.com/scratchcpp/scratchcpp-player/graphs/contributors |
| 152 | +[forks-shield]: https://img.shields.io/github/forks/scratchcpp/scratchcpp-player.svg?style=for-the-badge |
| 153 | +[forks-url]: https://github.com/scratchcpp/scratchcpp-player/network/members |
| 154 | +[stars-shield]: https://img.shields.io/github/stars/scratchcpp/scratchcpp-player.svg?style=for-the-badge |
| 155 | +[stars-url]: https://github.com/scratchcpp/scratchcpp-player/stargazers |
| 156 | +[issues-shield]: https://img.shields.io/github/issues/scratchcpp/scratchcpp-player.svg?style=for-the-badge |
| 157 | +[issues-url]: https://github.com/scratchcpp/scratchcpp-player/issues |
| 158 | +[license-shield]: https://img.shields.io/github/license/scratchcpp/scratchcpp-player.svg?style=for-the-badge |
| 159 | +[license-url]: https://github.com/scratchcpp/scratchcpp-player/blob/master/LICENSE |
0 commit comments