Directory src/platformer/script/

Directory Created:
2011-09-11 16:06
Total Files:
9
Deleted Files:
0
Lines of Code:
2265

[root]/src/platformer/script

Lines of Code

src/platformer/script/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 77 (100.0%) 3017 (100.0%) 39.1
juvinious 73 (94.8%) 3013 (99.9%) 41.2
kazzmir 4 (5.2%) 4 (0.1%) 1.0

Most Recent Commits

kazzmir 2014-03-18 22:21 Rev.: 8218

use normal c++ cast operator instead of an explicit function for the pointer class

2 lines of code changed in 2 files:

  • src/platformer/script: object.cpp (+1 -1), script.cpp (+1 -1)
juvinious 2014-01-20 22:50 Rev.: 8187

[platformer] Fix offset of collision area.

2 lines of code changed in 1 file:

  • src/platformer/script: object.cpp (+2 -2)
juvinious 2014-01-20 22:34 Rev.: 8186

[platformer] Do not make copies of the same script in the editor so that properties can be updated easily. Handle frame based collisions in ScriptObject. Rewrote world-1-1 to reflect changes.

22 lines of code changed in 3 files:

  • src/platformer/script: object.cpp (+17 -3), object.h (+2 -2), script.cpp (+3 -17)
juvinious 2014-01-20 17:30 Rev.: 8184

[platformer] Add per frame collisions.

13 lines of code changed in 2 files:

  • src/platformer/script: object.cpp (+10 -5), object.h (+3)
juvinious 2014-01-17 15:24 Rev.: 8178

[platformer] Do not hardcode paths to scripts and add option to add search paths. Moved test scripts and organized object scripts.

17 lines of code changed in 4 files:

  • src/platformer/script: python.cpp (+2 -7), python.h (+3 -3), script.cpp (+9), script.h (+3)
juvinious 2014-01-17 13:23 Rev.: 8176

[platformer] Add camera locks. Prevent player from moving left off of screen in script.

61 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (+61 -1)
juvinious 2014-01-14 22:08 Rev.: 8173

[editor] Add in frame collision info for Animations. Move Animations to its own tab. Allow animations to be added to script objects.

19 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (+19 -2)
juvinious 2014-01-14 12:12 Rev.: 8171

[platformer] Add actions for blocks when hit from bottom.

2 lines of code changed in 1 file:

  • src/platformer/script: object.cpp (+2 -6)
juvinious 2014-01-14 07:25 Rev.: 8169

[platformer] Moved classes to helpers.py. Added render action to object.

21 lines of code changed in 1 file:

  • src/platformer/script: object.cpp (+21 -2)
juvinious 2014-01-14 05:12 Rev.: 8167

[platformer] Add additional information to collisions. Keep track of previous velocity in object.

24 lines of code changed in 1 file:

  • src/platformer/script: object.cpp (+24)
juvinious 2014-01-13 14:56 Rev.: 8165

[platformer] Added ability to pause logic and give scripts ability to render text to screen.

105 lines of code changed in 4 files:

  • src/platformer/script: object.cpp (+2 -2), object.h (+1 -1), script.cpp (+101 -3), script.h (+1 -1)
juvinious 2014-01-12 06:55 Rev.: 8160

[platformer] Added ability to attach camera to objects through world.

70 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (+70)
juvinious 2014-01-11 22:20 Rev.: 8158

[platformer] Move player test object and controls over to scripts.

178 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (+178 -1)
juvinious 2014-01-11 06:25 Rev.: 8153

[platformer] Added ability to add actions to run during each act and scriptable controls.

548 lines of code changed in 6 files:

  • src/platformer/script: CMakeLists.txt (+1), control.cpp (new 335), control.h (new 72), object.cpp (+24), script.cpp (+115 -7), script.h (+1 -1)
juvinious 2014-01-10 14:48 Rev.: 8151

[platformer] Remove mutable for map of Value in ScriptObject. Added ability to manipulate objects placement with the mouse. Used overlay to accurately replicate map world 1-1.

5 lines of code changed in 2 files:

  • src/platformer/script: object.cpp (+2 -2), object.h (+3 -3)
juvinious 2014-01-09 14:04 Rev.: 8147

[platformer] Make Value modifiers not const. Added script loading from world file.

141 lines of code changed in 6 files:

  • src/platformer/script: object.cpp (+26 -7), object.h (+1), python.cpp (+4 -1), python.h (+1 -1), script.cpp (+104 -3), script.h (+5)
juvinious 2014-01-09 11:20 Rev.: 8146

[platformer] Fix cmake build. Add Value setters and getters for object.

118 lines of code changed in 2 files:

  • src/platformer/script: object.cpp (+109), object.h (+9 -1)
juvinious 2014-01-09 10:19 Rev.: 8145

[platformer] Reorganize files. Add ability to override flipping of animations. Remove duplicate data.

99 lines of code changed in 3 files:

  • src/platformer/script: object.cpp (+74 -4), object.h (+22 -2), script.cpp (+3 -3)
juvinious 2014-01-09 06:57 Rev.: 8143

[platformer] Move collision objects to Collisions namespace. Expose collidables for objects to use. Added in additional actions for map and object collisions.

104 lines of code changed in 2 files:

  • src/platformer/script: object.cpp (+103 -51), object.h (+1 -1)
juvinious 2014-01-08 22:33 Rev.: 8137

[platformer] Add animation options for object.

59 lines of code changed in 2 files:

  • src/platformer/script: object.cpp (+46 -19), object.h (+13 -2)
juvinious 2014-01-08 20:47 Rev.: 8135

[platformer] Move over map collisions to script.

72 lines of code changed in 1 file:

  • src/platformer/script: object.cpp (+72 -53)
juvinious 2014-01-08 17:08 Rev.: 8134

[platformer] Allow function to be added directly from current module.

53 lines of code changed in 3 files:

  • src/platformer/script: object.cpp (+32 -6), python.cpp (+17 -3), python.h (+4)
juvinious 2014-01-08 13:50 Rev.: 8133

[platformer] Fix if python is not available and remove warning.

4 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (+4 -2)
juvinious 2014-01-08 13:33 Rev.: 8132

[platformer] Output FPS. Move python reference, module and function utilities to its own file. Fixed problem with script.

250 lines of code changed in 6 files:

  • src/platformer/script: CMakeLists.txt (+2 -1), object.cpp (+28 -111), object.h (+3 -46), python.cpp (new 127), python.h (new 84), script.cpp (+6 -134)
juvinious 2014-01-08 10:37 Rev.: 8131

[platformer] Create AutoRef to take care of refcounts of PyObject.

122 lines of code changed in 2 files:

  • src/platformer/script: object.cpp (+96 -50), object.h (+26 -7)
juvinious 2014-01-08 00:22 Rev.: 8129

[platformer] Begin moving TestObject into python.

355 lines of code changed in 3 files:

  • src/platformer/script: object.cpp (+321 -7), object.h (+16 -6), script.cpp (+18 -14)
juvinious 2014-01-07 18:09 Rev.: 8128

[platformer] Protect script object if python is not available.

6 lines of code changed in 1 file:

  • src/platformer/script: object.cpp (+6 -1)
juvinious 2014-01-07 15:13 Rev.: 8126

[platformer] Begin creating scriptable object class.

119 lines of code changed in 5 files:

  • src/platformer/script: CMakeLists.txt (+2 -1), object.cpp (new 41), object.h (new 59), script.cpp (+14 -23), script.h (+3 -9)
juvinious 2014-01-07 11:55 Rev.: 8125

[platformer] Fix cmake build. Correct path location for module search.

28 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (+28 -28)
juvinious 2014-01-07 11:29 Rev.: 8123

[platformer] Import module call method and pass in world object.

110 lines of code changed in 2 files:

  • src/platformer/script: CMakeLists.txt (new 35), script.cpp (+75 -23)
juvinious 2014-01-06 19:42 Rev.: 8122

[platformer] Begin working on script engine.

194 lines of code changed in 2 files:

  • src/platformer/script: script.cpp (+170 -23), script.h (+24 -33)
kazzmir 2012-12-12 00:00 Rev.: 7642

move bitmap files to util/graphics

0 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (-1)
kazzmir 2011-10-20 14:26 Rev.: 6415

make thhe reference count constructor explicit

2 lines of code changed in 1 file:

  • src/platformer/script: script.cpp (+2 -2)
juvinious 2011-09-11 16:06 Rev.: 6152

Begin adding script utility to platformer.

92 lines of code changed in 2 files:

  • src/platformer/script: script.cpp (new 38), script.h (new 54)
Generated by StatSVN 0.7.0