Skip to content

Commit f9eaa40

Browse files
committed
New manifests.
1 parent 819826c commit f9eaa40

6 files changed

Lines changed: 116 additions & 33 deletions

File tree

build/config.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@
5050

5151
echo <<<EOL
5252
53-
<script src="$path/src/polyfills.js"></script>
54-
5553
<script src="$path/src/pixi/Pixi.js"></script>
5654
<script src="$path/src/pixi/display/DisplayObject.js"></script>
5755
<script src="$path/src/pixi/display/DisplayObjectContainer.js"></script>
@@ -111,7 +109,6 @@
111109
<script src="$path/src/geom/Rectangle.js"></script>
112110
<script src="$path/src/geom/RoundedRectangle.js"></script>
113111
114-
115112
<script src="$path/src/core/Camera.js"></script>
116113
<script src="$path/src/core/State.js"></script>
117114
<script src="$path/src/core/StateManager.js"></script>

filters/pixi/.jshintrc

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"globals" : { "Phaser": false, "PIXI": false, "p2": false },
3+
// Ignore Environment Globals
4+
"browser" : true, // Standard browser globals e.g. `window`, `document`.
5+
6+
// Development
7+
"devel" : true, // Allow developments statements e.g. `console.log();`.
8+
9+
// ECMAScript Support
10+
"es3" : true, // Support legacy browser and javascript environments.
11+
"esnext" : false, // This option tells JSHint that your code uses ECMAScript 6 specific syntax.
12+
"strict" : false, // Require `use strict` pragma in every file.
13+
"globalstrict": false, // Allow global "use strict" (also enables 'strict').
14+
15+
// Functionality
16+
"bitwise" : false, // Prohibit bitwise operators (&, |, ^, etc.).
17+
"boss" : true, // Tolerate assignments inside if, for & while. Usually conditions & loops are for comparison, not assignments.
18+
"camelcase" : false, // Force all variable names to use either camelCase style or UPPER_CASE with underscores.
19+
"curly" : true, // Require {} for every new block or scope.
20+
"eqeqeq" : false, // Require triple equals i.e. `===`.
21+
"eqnull" : true, // Tolerate use of `== null`.
22+
"evil" : false, // Tolerate use of `eval`.
23+
"expr" : false, // Tolerate `ExpressionStatement` as Programs.
24+
"forin" : false, // Tolerate `for in` loops without `hasOwnPrototype`.
25+
"freeze" : true, // Prohibits overwriting prototypes of native objects such as Array and Date.
26+
"funcscope" : true, // This option suppresses warnings about declaring variables inside of control structures while accessing them later from the outside.
27+
"immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );`
28+
"latedef" : true, // Prohibit variable use before definition.
29+
"laxbreak" : false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
30+
"laxcomma" : false, // This option suppresses warnings about comma-first coding style.
31+
"loopfunc" : true, // Allow functions to be defined within loops.
32+
"noarg" : true, // Prohibit use of `arguments.caller` and `arguments.callee`.
33+
"notypeof" : false, // This option suppresses warnings about invalid typeof operator values.
34+
"shadow" : true, // Allows re-define variables later in code e.g. `var x=1; x=2;`.
35+
"smarttabs" : false, // This option suppresses warnings about mixed tabs and spaces when the latter are used for alignmnent only.
36+
"supernew" : false, // Tolerate `new function () { ... };` and `new Object;`.
37+
"undef" : true, // Require all non-global variables be declared before they are used.
38+
"unused" : true, // This option warns when you define and never use your variables.
39+
40+
// Styling
41+
"indent" : false, // Specify indentation spacing
42+
"newcap" : true, // Require capitalization of all constructor functions e.g. `new F()`.
43+
"noempty" : true, // Prohibit use of empty blocks.
44+
"nonew" : true, // Prohibit use of constructors for side-effects.
45+
"plusplus" : false, // Prohibit use of `++` & `--`.
46+
"quotmark" : false, // This option enforces the consistency of quotation marks used throughout your code.
47+
"sub" : true, // Tolerate all forms of subscript notation besides dot notation e.g. `dict['key']` instead of `dict.key`.
48+
"trailing" : true // Prohibit trailing whitespaces.
49+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[
22
"src/physics/arcade/World.js",
3-
"src/physics/arcade/Body.js"
3+
"src/physics/arcade/Body.js",
4+
"src/physics/arcade/TilemapCollision.js"
45
]

tasks/manifests/phaser-nophysics.json

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
[
22
"src/Intro.js",
3+
34
"src/Phaser.js",
45
"src/polyfills.js",
56
"src/utils/Utils.js",
67

78
"src/geom/Circle.js",
8-
"src/geom/Point.js",
9-
"src/geom/Rectangle.js",
10-
"src/geom/Line.js",
119
"src/geom/Ellipse.js",
10+
"src/geom/Line.js",
11+
"src/geom/Matrix.js",
12+
"src/geom/Point.js",
1213
"src/geom/Polygon.js",
13-
14-
"src/pixi/primitives/Graphics.js",
14+
"src/geom/Rectangle.js",
15+
"src/geom/RoundedRectangle.js",
1516

1617
"src/core/Camera.js",
1718
"src/core/State.js",
@@ -41,6 +42,29 @@
4142
"src/input/GamepadButton.js",
4243
"src/input/InputHandler.js",
4344

45+
"src/gameobjects/components/Component.js",
46+
"src/gameobjects/components/Angle.js",
47+
"src/gameobjects/components/Animation.js",
48+
"src/gameobjects/components/AutoCull.js",
49+
"src/gameobjects/components/Bounds.js",
50+
"src/gameobjects/components/BringToTop.js",
51+
"src/gameobjects/components/Core.js",
52+
"src/gameobjects/components/Crop.js",
53+
"src/gameobjects/components/Delta.js",
54+
"src/gameobjects/components/Destroy.js",
55+
"src/gameobjects/components/FixedToCamera.js",
56+
"src/gameobjects/components/Health.js",
57+
"src/gameobjects/components/InCamera.js",
58+
"src/gameobjects/components/InputEnabled.js",
59+
"src/gameobjects/components/InWorld.js",
60+
"src/gameobjects/components/LifeSpan.js",
61+
"src/gameobjects/components/LoadTexture.js",
62+
"src/gameobjects/components/Overlap.js",
63+
"src/gameobjects/components/PhysicsBody.js",
64+
"src/gameobjects/components/Reset.js",
65+
"src/gameobjects/components/ScaleMinMax.js",
66+
"src/gameobjects/components/Smoothed.js",
67+
4468
"src/gameobjects/Events.js",
4569
"src/gameobjects/GameObjectFactory.js",
4670
"src/gameobjects/GameObjectCreator.js",
@@ -99,8 +123,9 @@
99123
"src/utils/Color.js",
100124

101125
"src/physics/Physics.js",
102-
103126
"src/particles/Particles.js",
127+
128+
"src/PixiDefaults.js",
104129

105130
"src/Outro.js"
106131
]

tasks/manifests/phaser.json

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
[
22
"src/Intro.js",
3+
34
"src/Phaser.js",
45
"src/polyfills.js",
56
"src/utils/Utils.js",
67

78
"src/geom/Circle.js",
8-
"src/geom/Point.js",
9-
"src/geom/Rectangle.js",
10-
"src/geom/Line.js",
119
"src/geom/Ellipse.js",
10+
"src/geom/Line.js",
11+
"src/geom/Matrix.js",
12+
"src/geom/Point.js",
1213
"src/geom/Polygon.js",
13-
14-
"src/pixi/primitives/Graphics.js",
14+
"src/geom/Rectangle.js",
15+
"src/geom/RoundedRectangle.js",
1516

1617
"src/core/Camera.js",
1718
"src/core/State.js",
@@ -29,6 +30,18 @@
2930
"src/core/ScaleManager.js",
3031
"src/core/Game.js",
3132

33+
"src/input/Input.js",
34+
"src/input/Key.js",
35+
"src/input/Keyboard.js",
36+
"src/input/Mouse.js",
37+
"src/input/MSPointer.js",
38+
"src/input/Pointer.js",
39+
"src/input/Touch.js",
40+
"src/input/Gamepad.js",
41+
"src/input/SinglePad.js",
42+
"src/input/GamepadButton.js",
43+
"src/input/InputHandler.js",
44+
3245
"src/gameobjects/components/Component.js",
3346
"src/gameobjects/components/Angle.js",
3447
"src/gameobjects/components/Animation.js",
@@ -52,18 +65,6 @@
5265
"src/gameobjects/components/ScaleMinMax.js",
5366
"src/gameobjects/components/Smoothed.js",
5467

55-
"src/input/Input.js",
56-
"src/input/Key.js",
57-
"src/input/Keyboard.js",
58-
"src/input/Mouse.js",
59-
"src/input/MSPointer.js",
60-
"src/input/Pointer.js",
61-
"src/input/Touch.js",
62-
"src/input/Gamepad.js",
63-
"src/input/SinglePad.js",
64-
"src/input/GamepadButton.js",
65-
"src/input/InputHandler.js",
66-
6768
"src/gameobjects/Events.js",
6869
"src/gameobjects/GameObjectFactory.js",
6970
"src/gameobjects/GameObjectCreator.js",
@@ -121,9 +122,18 @@
121122
"src/utils/Debug.js",
122123
"src/utils/Color.js",
123124

125+
"src/physics/Physics.js",
126+
127+
"src/particles/Particles.js",
128+
"src/particles/arcade/ArcadeParticles.js",
129+
"src/particles/arcade/Emitter.js",
130+
131+
"src/PixiDefaults.js",
132+
124133
"src/physics/Physics.js",
125134
"src/physics/arcade/World.js",
126135
"src/physics/arcade/Body.js",
136+
"src/physics/arcade/TilemapCollision.js",
127137

128138
"src/particles/Particles.js",
129139
"src/particles/arcade/ArcadeParticles.js",

tasks/manifests/pixi.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
[
22
"src/pixi/Intro.js",
3+
34
"src/pixi/Pixi.js",
4-
"src/pixi/geom/Polygon.js",
5-
"src/pixi/geom/Matrix.js",
6-
"src/pixi/geom/Rectangle.js",
7-
"src/pixi/geom/RoundedRectangle.js",
85
"src/pixi/display/DisplayObject.js",
96
"src/pixi/display/DisplayObjectContainer.js",
107
"src/pixi/display/Sprite.js",
118
"src/pixi/display/SpriteBatch.js",
12-
"src/pixi/filters/FilterBlock.js",
139
"src/pixi/text/Text.js",
1410
"src/pixi/text/BitmapText.js",
1511
"src/pixi/display/Stage.js",
12+
1613
"src/pixi/utils/Utils.js",
17-
"src/pixi/utils/EventTarget.js",
1814
"src/pixi/utils/Polyk.js",
15+
1916
"src/pixi/renderers/webgl/utils/WebGLShaderUtils.js",
2017
"src/pixi/renderers/webgl/shaders/PixiShader.js",
2118
"src/pixi/renderers/webgl/shaders/PixiFastShader.js",
@@ -38,12 +35,16 @@
3835
"src/pixi/renderers/canvas/CanvasRenderer.js",
3936
"src/pixi/renderers/canvas/CanvasGraphics.js",
4037

38+
"src/pixi/primitives/Graphics.js",
39+
4140
"src/pixi/extras/Strip.js",
4241
"src/pixi/extras/Rope.js",
4342
"src/pixi/extras/TilingSprite.js",
43+
4444
"src/pixi/textures/BaseTexture.js",
4545
"src/pixi/textures/Texture.js",
4646
"src/pixi/textures/RenderTexture.js",
47+
4748
"src/pixi/filters/AbstractFilter.js",
4849

4950
"src/pixi/Outro.js"

0 commit comments

Comments
 (0)