-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delete carriage-return characters from 16 text files
- Loading branch information
1 parent
197ae3e
commit 03d2115
Showing
16 changed files
with
1,490 additions
and
1,490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
// Note: "common.gradle" in the root project contains additional initialization | ||
// for this project. This initialization is applied in the "build.gradle" | ||
// of the root project. | ||
|
||
ext { | ||
buildDir = 'build' | ||
} | ||
|
||
dependencies { | ||
implementation heartCoordinates | ||
implementation imgscalrCoordinates | ||
} | ||
|
||
// generate textures | ||
|
||
tasks.register('textures') { | ||
dependsOn = [ 'banks', 'mine', 'raft', 'rock' ] | ||
description 'Generates texture assets for the Fuze Creek Project.' | ||
} | ||
|
||
tasks.register('banks', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeBanks' | ||
outputs.files([ | ||
"$buildDir/leftBankMinusMinus.png", | ||
"$buildDir/leftBankMinusPlus.png", | ||
"$buildDir/leftBankMinusZero.png", | ||
"$buildDir/leftBankPlusMinus.png", | ||
"$buildDir/leftBankPlusPlus.png", | ||
"$buildDir/leftBankPlusZero.png", | ||
"$buildDir/leftBankZeroMinus.png", | ||
"$buildDir/leftBankZeroPlus.png", | ||
"$buildDir/leftBankZeroZero.png", | ||
"$buildDir/rightBankMinusMinus.png", | ||
"$buildDir/rightBankMinusPlus.png", | ||
"$buildDir/rightBankMinusZero.png", | ||
"$buildDir/rightBankPlusMinus.png", | ||
"$buildDir/rightBankPlusPlus.png", | ||
"$buildDir/rightBankPlusZero.png", | ||
"$buildDir/rightBankZeroMinus.png", | ||
"$buildDir/rightBankZeroPlus.png", | ||
"$buildDir/rightBankZeroZero.png" | ||
]) | ||
} | ||
|
||
tasks.register('mine', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeMine' | ||
outputs.files(["$buildDir/mine.png"]) | ||
} | ||
|
||
tasks.register('raft', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeRaft' | ||
outputs.files(["$buildDir/raft2.png"]) | ||
} | ||
|
||
tasks.register('rock', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeRock' | ||
outputs.files(["$buildDir/rock.png"]) | ||
// Note: "common.gradle" in the root project contains additional initialization | ||
// for this project. This initialization is applied in the "build.gradle" | ||
// of the root project. | ||
|
||
ext { | ||
buildDir = 'build' | ||
} | ||
|
||
dependencies { | ||
implementation heartCoordinates | ||
implementation imgscalrCoordinates | ||
} | ||
|
||
// generate textures | ||
|
||
tasks.register('textures') { | ||
dependsOn = [ 'banks', 'mine', 'raft', 'rock' ] | ||
description 'Generates texture assets for the Fuze Creek Project.' | ||
} | ||
|
||
tasks.register('banks', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeBanks' | ||
outputs.files([ | ||
"$buildDir/leftBankMinusMinus.png", | ||
"$buildDir/leftBankMinusPlus.png", | ||
"$buildDir/leftBankMinusZero.png", | ||
"$buildDir/leftBankPlusMinus.png", | ||
"$buildDir/leftBankPlusPlus.png", | ||
"$buildDir/leftBankPlusZero.png", | ||
"$buildDir/leftBankZeroMinus.png", | ||
"$buildDir/leftBankZeroPlus.png", | ||
"$buildDir/leftBankZeroZero.png", | ||
"$buildDir/rightBankMinusMinus.png", | ||
"$buildDir/rightBankMinusPlus.png", | ||
"$buildDir/rightBankMinusZero.png", | ||
"$buildDir/rightBankPlusMinus.png", | ||
"$buildDir/rightBankPlusPlus.png", | ||
"$buildDir/rightBankPlusZero.png", | ||
"$buildDir/rightBankZeroMinus.png", | ||
"$buildDir/rightBankZeroPlus.png", | ||
"$buildDir/rightBankZeroZero.png" | ||
]) | ||
} | ||
|
||
tasks.register('mine', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeMine' | ||
outputs.files(["$buildDir/mine.png"]) | ||
} | ||
|
||
tasks.register('raft', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeRaft' | ||
outputs.files(["$buildDir/raft2.png"]) | ||
} | ||
|
||
tasks.register('rock', JavaExec) { | ||
mainClass = 'com.github.stephengold.textures.fc.MakeRock' | ||
outputs.files(["$buildDir/rock.png"]) | ||
} |
60 changes: 30 additions & 30 deletions
60
FuzeCreekTextures/src/main/java/com/github/stephengold/textures/fc/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
/* | ||
Copyright (c) 2021, Stephen Gold | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
* Neither the name of the copyright holder nor the names of its contributors | ||
may be used to endorse or promote products derived from this software without | ||
specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
/** | ||
* Classes to generate texture assets for the Fuze Creek Project. | ||
*/ | ||
package com.github.stephengold.textures.fc; | ||
/* | ||
Copyright (c) 2021, Stephen Gold | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
* Neither the name of the copyright holder nor the names of its contributors | ||
may be used to endorse or promote products derived from this software without | ||
specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
/** | ||
* Classes to generate texture assets for the Fuze Creek Project. | ||
*/ | ||
package com.github.stephengold.textures.fc; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
// Note: "common.gradle" in the root project contains additional initialization | ||
// for this project. This initialization is applied in the "build.gradle" | ||
// of the root project. | ||
|
||
ext { | ||
buildDir = 'build' | ||
} | ||
|
||
dependencies { | ||
implementation heartCoordinates | ||
implementation imgscalrCoordinates | ||
} | ||
|
||
// generate textures | ||
|
||
tasks.register('textures') { | ||
dependsOn = ['cross', 'lozenge', 'mascle', 'pin', 'ring', | ||
'saltire', 'solidCircle', 'square'] | ||
description 'Generates texture assets included in the Heart Library.' | ||
} | ||
|
||
tasks.register('cross', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeCross' | ||
outputs.files(["$buildDir/cross.png"]) | ||
} | ||
tasks.register('lozenge', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeLozenge' | ||
outputs.files(["$buildDir/lozenge.png"]) | ||
} | ||
tasks.register('mascle', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeMascle' | ||
outputs.files(["$buildDir/mascle.png"]) | ||
} | ||
tasks.register('pin', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakePin' | ||
outputs.files(["$buildDir/pin.png"]) | ||
} | ||
tasks.register('ring', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeRing' | ||
outputs.files(["$buildDir/ring.png"]) | ||
} | ||
tasks.register('saltire', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeSaltire' | ||
outputs.files(["$buildDir/saltire.png"]) | ||
} | ||
tasks.register('solidCircle', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeSolidCircle' | ||
outputs.files(["$buildDir/solid circle.png"]) | ||
} | ||
tasks.register('square', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeSquare' | ||
outputs.files(["$buildDir/square.png"]) | ||
// Note: "common.gradle" in the root project contains additional initialization | ||
// for this project. This initialization is applied in the "build.gradle" | ||
// of the root project. | ||
|
||
ext { | ||
buildDir = 'build' | ||
} | ||
|
||
dependencies { | ||
implementation heartCoordinates | ||
implementation imgscalrCoordinates | ||
} | ||
|
||
// generate textures | ||
|
||
tasks.register('textures') { | ||
dependsOn = ['cross', 'lozenge', 'mascle', 'pin', 'ring', | ||
'saltire', 'solidCircle', 'square'] | ||
description 'Generates texture assets included in the Heart Library.' | ||
} | ||
|
||
tasks.register('cross', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeCross' | ||
outputs.files(["$buildDir/cross.png"]) | ||
} | ||
tasks.register('lozenge', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeLozenge' | ||
outputs.files(["$buildDir/lozenge.png"]) | ||
} | ||
tasks.register('mascle', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeMascle' | ||
outputs.files(["$buildDir/mascle.png"]) | ||
} | ||
tasks.register('pin', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakePin' | ||
outputs.files(["$buildDir/pin.png"]) | ||
} | ||
tasks.register('ring', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeRing' | ||
outputs.files(["$buildDir/ring.png"]) | ||
} | ||
tasks.register('saltire', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeSaltire' | ||
outputs.files(["$buildDir/saltire.png"]) | ||
} | ||
tasks.register('solidCircle', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeSolidCircle' | ||
outputs.files(["$buildDir/solid circle.png"]) | ||
} | ||
tasks.register('square', JavaExec) { | ||
mainClass = 'jme3utilities.debug.textures.MakeSquare' | ||
outputs.files(["$buildDir/square.png"]) | ||
} |
Oops, something went wrong.