Choreography changes Closes: #12 #82

Closed
nutbuster wants to merge 0 commits from bncf into Monster-Update-6
Member

Since @Bowie has noticed/mentioned my branch that includes both @Nio & his changes, here is the pull request
Also during the merge there is one pain point to look at in script.rpy:

image naser surprised flip = im.Flip("naser/naser surprised.png", horizontal=True)

#double surprised
#<<<<<<< B's
#image naser surprised flip = im.Flip("naser/naser surprised.png", horizontal=True)
#=======
#image naser surprised flip = im.Flip("naser/naserintermediaryshocked.png", horizontal=True)
#image naser surprised = "naser/naserintermediaryshocked.png"
#
#>>>>>>> N's

The only change I have added myself is a new warning for mods/README.md & updating Nio's script filename & labels

Since @Bowie has noticed/mentioned my branch that includes both @Nio & his changes, here is the pull request Also during the merge there is one pain point to look at in `script.rpy`: ``` image naser surprised flip = im.Flip("naser/naser surprised.png", horizontal=True) #double surprised #<<<<<<< B's #image naser surprised flip = im.Flip("naser/naser surprised.png", horizontal=True) #======= #image naser surprised flip = im.Flip("naser/naserintermediaryshocked.png", horizontal=True) #image naser surprised = "naser/naserintermediaryshocked.png" # #>>>>>>> N's ``` The only change I have added myself is a new warning for `mods/README.md` & updating Nio's script filename & labels
nutbuster added 102 commits 2021-10-09 20:01:06 +00:00
nutbuster changed title from WIP: to WIP: Choreography changes Closes: #12 2021-10-09 20:20:31 +00:00
Member

Issue in the OP is resolved by keeping only <<<<<<< B's and rming the duplicate image naserintermediaryshocked.png. show naser surprised will still work in Nios scripts due to the presence of images/naser/naser surprised.png.

There's a few other issues surrounding duplicated backgrounds, CGs and sprites that both Nio and I added separately which'll cause renpy ambiguity errors in case there's a .png and .jpg with the same name. Most of these can be found in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/cgs
although I did also spot a duplicate parkinglot.jpg, parkinglot.png in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/backgrounds

If it makes things easier to trace I reckon most of the troublesome assets are from this commit c05c4ac014

Issue in the OP is resolved by keeping only `<<<<<<< B's` and rming the duplicate image `naserintermediaryshocked.png`. `show naser surprised` will still work in Nios scripts due to the presence of `images/naser/naser surprised.png`. There's a few other issues surrounding duplicated backgrounds, CGs and sprites that both Nio and I added separately which'll cause renpy ambiguity errors in case there's a `.png` and `.jpg` with the same name. Most of these can be found in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/cgs although I did also spot a duplicate `parkinglot.jpg`, `parkinglot.png` in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/backgrounds If it makes things easier to trace I reckon most of the troublesome assets are from this commit https://git.snootgame.xyz/nutbuster/SnootGame/commit/c05c4ac014bac1b9113ee849e734b1acb85cabde
Member

Following files in images/ are unused duplicates and can be rmed

trishfam/chondrahappy
trishfam/chondraneutral
trishfam/rileyconspiratorial
trishfam/rileyneutral
trishfam/rileysmirk
trishfam/talihappy
trishfam/talineutral
trishfam/tanacheer
trishfam/tananeutral
trishfam/trevorawe
trishfam/trevorneutral
Following files in `images/` are unused duplicates and can be rmed ``` trishfam/chondrahappy trishfam/chondraneutral trishfam/rileyconspiratorial trishfam/rileyneutral trishfam/rileysmirk trishfam/talihappy trishfam/talineutral trishfam/tanacheer trishfam/tananeutral trishfam/trevorawe trishfam/trevorneutral ```
Author
Member

There's a few other issues surrounding duplicated backgrounds, CGs and sprites that both Nio and I added separately which'll cause renpy ambiguity errors in case there's a .png and .jpg with the same name. Most of these can be found in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/cgs
although I did also spot a duplicate parkinglot.jpg, parkinglot.png in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/backgrounds

Oddly enough the .jpg duplicates aren't actually jpg, their magic number or their actual filetype is an actual png, for now I'll use the png files

ls * | sed 's/jpg/png/g' | sort | uniq -D
bowlingalley.png
bowlingalley.png
parkinglot.png
parkinglot.png
trishhome.png
trishhome.png
bowlingalley.jpg: PNG image data, 1920 x 1080, 8-bit/color RGB, non-interlaced
parkinglot.jpg: PNG image data, 1920 x 1080, 8-bit/color RGBA, non-interlaced
trishhome.jpg: PNG image data, 1920 x 1080, 8-bit/color RGB, non-interlaced
> There's a few other issues surrounding duplicated backgrounds, CGs and sprites that both Nio and I added separately which'll cause renpy ambiguity errors in case there's a `.png` and `.jpg` with the same name. Most of these can be found in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/cgs > although I did also spot a duplicate `parkinglot.jpg`, `parkinglot.png` in https://git.snootgame.xyz/nutbuster/SnootGame/src/branch/bowieniocombo/game/images/backgrounds Oddly enough the .jpg duplicates aren't actually jpg, their magic number or their actual filetype is an actual png, for now I'll use the png files ``` ls * | sed 's/jpg/png/g' | sort | uniq -D bowlingalley.png bowlingalley.png parkinglot.png parkinglot.png trishhome.png trishhome.png ``` ``` bowlingalley.jpg: PNG image data, 1920 x 1080, 8-bit/color RGB, non-interlaced parkinglot.jpg: PNG image data, 1920 x 1080, 8-bit/color RGBA, non-interlaced trishhome.jpg: PNG image data, 1920 x 1080, 8-bit/color RGB, non-interlaced ```
nutbuster changed title from WIP: Choreography changes Closes: #12 to Choreography changes Closes: #12 2021-10-10 02:14:28 +00:00
nutbuster closed this pull request 2021-10-10 02:49:54 +00:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Cavemanon/SnootGame#82
No description provided.