Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
749 changes: 501 additions & 248 deletions EdgeWare/config.pyw

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions EdgeWare/configDefault.dat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version,versionplusplus,delay,fill,replace,webMod,popupMod,audioMod,promptMod,vidMod,replaceThresh,slowMode,pip_installed,is_configed,fill_delay,start_on_logon,hibernateMode,hibernateMin,hibernateMax,wakeupActivity,pypres_installed,showDiscord,pil_installed,showLoadingFlair,showCaptions,maxFillThreads,panicButton,panicDisabled,promptMistakes,squareLim,mitosisMode,onlyVid,webPopup,rotateWallpaper,wallpaperTimer,wallpaperVariance,timeoutPopups,popupTimeout,mitosisStrength,avoidList,booruName,booruMinScore,desktopIcons,tagList,downloadEnabled,downloadMode,useWebResource,runOnSaveQuit,timerMode,timerSetupTime,safeword,lkCorner,lkScaling,lkToggle,videoVolume,denialMode,denialChance,popupSubliminals,drivePath,wallpaperDat,maxAudioBool,maxAudio,maxVideoBool,maxVideos,subliminalsChance,maxSubliminals,safeMode,antiOrLanczos,toggleInternet,buttonless,hibernateType,hibernateLength,fixWallpaper,toggleHibSkip,toggleMoodSet,corruptionMode,corruptionTime,pumpScareOffset,corruptionFadeType,vlcMode,captionFilename,singleMode,multiClick,themeType,themeNoConfig,presetsDanger
2.4.2_A,9.3a,1000,0,0,0,100,0,0,10,500,0,0,0,0,0,0,240,300,20,0,1,0,1,0,8,e,0,3,800,0,0,0,0,30,0,0,0,2,EdgeWare>AppData,,-5,1,all,0,All,0,0,0,0,password,0,100,0,25,0,0,0,C:/Users/,WPAPER_DEF,1,1,0,10,100,200,0,1,0,0,Original,15,0,0,0,0,60,0,Normal,0,1,0,0,Original,0,0
version,versionplusplus,delay,fill,replace,webMod,popupMod,audioMod,promptMod,vidMod,replaceThresh,slowMode,pip_installed,is_configed,fill_delay,start_on_logon,hibernateMode,hibernateMin,hibernateMax,wakeupActivity,pypres_installed,showDiscord,pil_installed,showLoadingFlair,showCaptions,maxFillThreads,panicButton,panicDisabled,promptMistakes,squareLim,mitosisMode,onlyVid,webPopup,rotateWallpaper,wallpaperTimer,wallpaperVariance,timeoutPopups,popupTimeout,mitosisStrength,avoidList,booruName,booruMinScore,desktopIcons,tagList,downloadEnabled,downloadMode,useWebResource,runOnSaveQuit,timerMode,timerSetupTime,safeword,lkCorner,lkScaling,lkToggle,videoVolume,denialMode,denialChance,popupSubliminals,drivePath,wallpaperDat,maxAudioBool,maxAudio,maxVideoBool,maxVideos,subliminalsChance,maxSubliminals,safeMode,antiOrLanczos,toggleInternet,buttonless,hibernateType,hibernateLength,fixWallpaper,toggleHibSkip,toggleMoodSet,corruptionMode,corruptionTime,pumpScareOffset,corruptionFadeType,vlcMode,captionFilename,singleMode,multiClick,themeType,themeNoConfig,presetsDanger,corruptionTrigger,corruptionPopups,corruptionLaunches,corruptionDevMode,corruptionWallpaperCycle,corruptionThemeCycle,corruptionPurityMode,corruptionFullPerm,sMessageChance,sMessageDuration,sMessageTransparency,movingChance,movingSpeed,movingRandom,capPopChance,capPopOpacity,capPopTimer,capPopMood
2.4.2_A,10a,1000,0,0,0,100,0,0,10,500,0,0,0,0,0,0,240,300,20,0,0,0,1,0,8,e,0,3,800,0,0,0,0,30,0,0,0,2,EdgeWare>AppData,,-5,1,all,0,All,0,0,0,0,password,0,100,0,25,0,0,0,C:/Users/,WPAPER_DEF,1,1,0,10,100,200,0,1,0,0,Original,15,0,0,0,0,60,0,Normal,0,1,0,0,Original,0,0,Timed,5,2,0,0,0,0,1,0,300,80,0,5,1,0,100,300,1
13 changes: 11 additions & 2 deletions EdgeWare/debugScript.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ echo 1: Start.pyw (Edgeware)
echo 2: Popup.pyw (Popup only)
echo 2a: Popup.pyw (Video only)
echo 3: Config.pyw (Config)
echo =EdgeWare++=
echo 4: Sublabel.pyw (Subliminal Message)
set /p usrSelect=Select number:
if %usrSelect%==1 goto startLbl
if %usrSelect%==2 goto popupLbl
if %usrSelect%==2a goto popup2Lbl
if %usrSelect%==3 goto configLbl
echo Must enter selection number (1, 2, 3)
if %usrSelect%==4 goto subLbl
echo Must enter selection number (1, 2, 3, 4)
pause
goto top
:startLbl
Expand All @@ -31,8 +34,14 @@ py popup.pyw -video
echo Done.
pause
goto quitLbl
:subLbl
echo Running sublabel.pyw...
py sublabel.pyw
echo Done.
pause
goto quitLbl
:configLbl
echo Running config.pyw
echo Running config.pyw...
py config.pyw
echo Done.
pause
Expand Down
Binary file added EdgeWare/default_assets/corruption_abruptfade.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified EdgeWare/default_assets/corruption_defaultfade.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added EdgeWare/default_assets/corruption_noisefade.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 9 additions & 7 deletions EdgeWare/panic.pyw
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
import ctypes
import os
import pathlib
PATH = str(pathlib.Path(__file__).parent.absolute())
from pathlib import Path
from utils import utils

PATH = Path(__file__).parent

timeObjPath = os.path.join(PATH, 'hid_time.dat')
HIDDEN_ATTR = 0x02
SHOWN_ATTR = 0x08

#checking timer
try:
ctypes.windll.kernel32.SetFileAttributesW(timeObjPath, SHOWN_ATTR)
utils.show_file(timeObjPath)
except:
''
if os.path.exists(os.path.join(PATH, 'hid_time.dat')):
ctypes.windll.kernel32.SetFileAttributesW(timeObjPath, HIDDEN_ATTR)
utils.hide_file(timeObjPath)
#sudoku if timer after hiding file again
os.kill(os.getpid(), 9)
else:
#continue if no timer
ctypes.windll.user32.SystemParametersInfoW(20, 0, PATH + '\\default_assets\\default_win10.jpg', 0)
utils.set_wallpaper(os.path.join(PATH, 'default_assets', 'default_win10.jpg'))

os.startfile('panic.bat')
utils.panic_script()
Loading