mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
bruh
This commit is contained in:
parent
1d77158f29
commit
04867c9691
4 changed files with 4 additions and 63 deletions
|
|
@ -9,13 +9,13 @@
|
|||
| GNU/Hurd | 1% | В работе |
|
||||
| Solaris/OpenSolaris | 1% | В работе |
|
||||
| RedoxOS | 0% | Не хватает библеотек |
|
||||
| Android | 3% | В работе |
|
||||
| Android | 4% | В работе |
|
||||
| PS Vita | 0% | В работе |
|
||||
| PSP | 1% | В работе |
|
||||
| Emspritein(web) | 11% | Нет хватает библеотек<br> * Нужно написать порт библеотеки libsigc++2<br>(А лучше 3 и переписать движок)<br> * Проблемы с компиляцией и зависимостями |
|
||||
| HaikuOS | 0% | В работе |
|
||||
| DOS | 0.1% | Не в работе |
|
||||
| Ubuntu Touch | 60% | Будет почти готово тогда когда Linux порт будет доведён до ума |
|
||||
| DOS | 0.2% | Не в работе |
|
||||
| Ubuntu Touch | 61% | Будет почти готово тогда когда Linux порт будет доведён до ума |
|
||||
| Аврора ОС | 0% | Возможно, но пока не в работе |
|
||||
| ChromeOS/ChromiumOS | 0% | Неизвестное |
|
||||
| ChromeOS/ChromiumOS | 0.4% | Неизвестное |
|
||||
| MacOS | 10% | Неизвестное, но работа ведётся |
|
||||
|
|
|
|||
|
|
@ -1,31 +0,0 @@
|
|||
@echo off
|
||||
setlocal
|
||||
|
||||
echo Sunshine installer
|
||||
set /p oneshot_path=Enter the Oneshot 2016 installation path:
|
||||
set /p install_path=Enter the path to install Sunshine:
|
||||
|
||||
set "TARGET=%install_path%\oneshot.exe"
|
||||
set "ICON=%install_path%\icon.ico"
|
||||
|
||||
if not exist "%install_path%\" mkdir "%install_path%"
|
||||
|
||||
echo Copying the files of the original Oneshot
|
||||
xcopy "%oneshot_path%\*" "%install_path%\" /E /I /Y
|
||||
if errorlevel 1 echo Warning: xcopy from oneshot_path returned non-zero code.
|
||||
|
||||
echo Patching the original game
|
||||
xcopy "Sunshine\*" "%install_path%\" /E /I /Y
|
||||
if errorlevel 1 echo Warning: xcopy from Sunshine returned non-zero code.
|
||||
|
||||
echo (create .int files) :: <-- реализуйте здесь если нужно
|
||||
|
||||
powershell -NoProfile -Command ^
|
||||
"$s=New-Object -ComObject WScript.Shell; $l=$s.CreateShortcut('%USERPROFILE%\Desktop\Sunshine.lnk'); $l.TargetPath='%TARGET%'; $l.IconLocation='%ICON%'; $l.WorkingDirectory=(Split-Path '%TARGET%'); $l.Save()"
|
||||
|
||||
powershell -NoProfile -Command ^
|
||||
"$s=New-Object -ComObject WScript.Shell; $l=$s.CreateShortcut('%APPDATA%\Microsoft\Windows\Start Menu\Programs\Sunshine.lnk'); $l.TargetPath='%TARGET%'; $l.IconLocation='%ICON%'; $l.WorkingDirectory=(Split-Path '%TARGET%'); $l.Save()"
|
||||
|
||||
echo Done!
|
||||
endlocal
|
||||
pause
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
read -rp "Enter your Oneshot 2016 installation path: " oneshot_path
|
||||
read -rp "Enter path for installation: " install_path
|
||||
|
||||
mkdir -p $install_path
|
||||
cp -r $oneshot_path/* "$install_path/"
|
||||
cp -r Sunshine/* "$install_path/"
|
||||
|
||||
echo """[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Oneshot: Sunshine
|
||||
Comment=Oneshot mod
|
||||
Exec=/bin/sh $install_path/oneshot.sh
|
||||
Icon=$install_path/icon.png
|
||||
Categories=Game;
|
||||
""" > $HOME/.local/share/applications/sunshine.desktop
|
||||
set +u
|
||||
echo "LD_LIBRARY_PATH=$install_path:$LD_LIBRARY_PATH $install_path/oneshot" > $install_path/oneshot.sh
|
||||
chmod +x $install_path/oneshot.sh
|
||||
chmod +x $install_path/oneshot
|
||||
|
||||
echo "Done!"
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
#/bin/sh
|
||||
TMP=$(mktemp)
|
||||
find src > $TMP
|
||||
python3 create-android-project.py cats.catwindowteam.sunshine --variant symlink --output ./android-project < $TMP
|
||||
Loading…
Reference in a new issue