shattered 0.4.0.1 → 0.5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/game_loader.rb +89 -8
- data/lib/rails_generator.rb +1 -1
- data/lib/rails_generator/base.rb +3 -3
- data/lib/rails_generator/commands.rb +91 -17
- data/lib/rails_generator/generators/applications/shattered_app/shattered_app_generator.rb +12 -12
- data/lib/rails_generator/generators/components/state/templates/state.rb +17 -0
- data/lib/rails_generator/generators/components/view/templates/view.rb +5 -2
- data/lib/rails_generator/lookup.rb +18 -17
- data/lib/rails_generator/manifest.rb +1 -1
- data/lib/rails_generator/options.rb +18 -10
- data/lib/rails_generator/scripts.rb +4 -4
- data/lib/rails_generator/simple_logger.rb +2 -2
- data/lib/rails_generator/spec.rb +1 -1
- data/lib/shatter.rb +1 -1
- data/lib/tasks/documentation.rake +46 -0
- data/lib/tasks/framework.rake +84 -0
- data/lib/tasks/log.rake +9 -0
- data/lib/tasks/misc.rake +4 -0
- data/lib/tasks/pre_namespace_aliases.rake +28 -0
- data/lib/tasks/shattered.rb +6 -0
- data/lib/tasks/statistics.rake +17 -0
- data/lib/tasks/testing.rake +102 -0
- data/lib/templates/Rakefile +4 -8
- data/lib/templates/configs/ogre_plugins.windows.cfg +14 -0
- data/lib/templates/environments/environment.rb +5 -2
- metadata +44 -53
- data/lib/templates/configs/Mac/shattered.app/Contents/Info.plist +0 -22
- data/lib/templates/configs/Mac/shattered.app/Contents/MacOS/shattered_mac +0 -0
- data/lib/templates/configs/Mac/shattered.app/Contents/PkgInfo +0 -1
- data/lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/InfoPlist.strings +0 -0
- data/lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib/classes.nib +0 -4
- data/lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib/info.nib +0 -20
- data/lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib/objects.nib +0 -0
- data/lib/templates/configs/Mac/shattered.app/Contents/Resources/rb_main.rb +0 -3
- data/lib/templates/configs/Mac/shattered.app/Contents/pbdevelopment.plist +0 -8
- data/lib/templates/configs/Mac/shattered.app/OgreLeaks.log +0 -144
- data/lib/templates/configs/Mac/shattered.app/OgreMemory.log +0 -29
- data/lib/templates/configs/ogre_plugins.rcfg +0 -16
@@ -1,7 +1,10 @@
|
|
1
1
|
|
2
2
|
game = {}
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
# Replace this with your state name, an example would be :main_menu
|
5
|
+
# if you had a MainMenuState
|
6
|
+
game[:start_state] = :my_start_state
|
7
|
+
|
8
|
+
game[:media] = ["app/media"]
|
6
9
|
|
7
10
|
Shatter::GameLoader.instance.environment=game
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.
|
2
|
+
rubygems_version: 0.9.4
|
3
3
|
specification_version: 1
|
4
4
|
name: shattered
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date:
|
6
|
+
version: 0.5.0.1
|
7
|
+
date: 2007-06-22 00:00:00 -06:00
|
8
8
|
summary: "Shattered: The main package tieing together controller, view, and model"
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -25,6 +25,7 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
25
25
|
platform: ruby
|
26
26
|
signing_key:
|
27
27
|
cert_chain:
|
28
|
+
post_install_message:
|
28
29
|
authors: []
|
29
30
|
|
30
31
|
files:
|
@@ -34,90 +35,80 @@ files:
|
|
34
35
|
- bin/runner
|
35
36
|
- bin/shatter
|
36
37
|
- lib/commands
|
38
|
+
- lib/commands/console.rb
|
37
39
|
- lib/game_loader.rb
|
38
40
|
- lib/rails_generator
|
39
|
-
- lib/rails_generator.rb
|
40
|
-
- lib/shatter.rb
|
41
|
-
- lib/templates
|
42
|
-
- lib/commands/console.rb
|
43
41
|
- lib/rails_generator/base.rb
|
44
42
|
- lib/rails_generator/commands.rb
|
45
43
|
- lib/rails_generator/generators
|
46
|
-
- lib/rails_generator/lookup.rb
|
47
|
-
- lib/rails_generator/manifest.rb
|
48
|
-
- lib/rails_generator/options.rb
|
49
|
-
- lib/rails_generator/scripts
|
50
|
-
- lib/rails_generator/scripts.rb
|
51
|
-
- lib/rails_generator/simple_logger.rb
|
52
|
-
- lib/rails_generator/spec.rb
|
53
44
|
- lib/rails_generator/generators/applications
|
54
|
-
- lib/rails_generator/generators/components
|
55
45
|
- lib/rails_generator/generators/applications/shattered_app
|
56
46
|
- lib/rails_generator/generators/applications/shattered_app/shattered_app_generator.rb
|
57
47
|
- lib/rails_generator/generators/applications/shattered_app/USAGE
|
48
|
+
- lib/rails_generator/generators/components
|
58
49
|
- lib/rails_generator/generators/components/actor
|
59
|
-
- lib/rails_generator/generators/components/model
|
60
|
-
- lib/rails_generator/generators/components/state
|
61
|
-
- lib/rails_generator/generators/components/view
|
62
50
|
- lib/rails_generator/generators/components/actor/actor_generator.rb
|
63
51
|
- lib/rails_generator/generators/components/actor/templates
|
64
52
|
- lib/rails_generator/generators/components/actor/templates/actor.rb
|
53
|
+
- lib/rails_generator/generators/components/model
|
65
54
|
- lib/rails_generator/generators/components/model/model_generator.rb
|
66
55
|
- lib/rails_generator/generators/components/model/templates
|
67
|
-
- lib/rails_generator/generators/components/model/USAGE
|
68
56
|
- lib/rails_generator/generators/components/model/templates/fixtures.yml
|
69
57
|
- lib/rails_generator/generators/components/model/templates/model.rb
|
70
58
|
- lib/rails_generator/generators/components/model/templates/unit_test.rb
|
59
|
+
- lib/rails_generator/generators/components/model/USAGE
|
60
|
+
- lib/rails_generator/generators/components/state
|
71
61
|
- lib/rails_generator/generators/components/state/state_generator.rb
|
72
62
|
- lib/rails_generator/generators/components/state/templates
|
73
|
-
- lib/rails_generator/generators/components/state/USAGE
|
74
63
|
- lib/rails_generator/generators/components/state/templates/state.rb
|
64
|
+
- lib/rails_generator/generators/components/state/USAGE
|
65
|
+
- lib/rails_generator/generators/components/view
|
75
66
|
- lib/rails_generator/generators/components/view/templates
|
76
|
-
- lib/rails_generator/generators/components/view/USAGE
|
77
|
-
- lib/rails_generator/generators/components/view/view_generator.rb
|
78
67
|
- lib/rails_generator/generators/components/view/templates/material
|
79
68
|
- lib/rails_generator/generators/components/view/templates/view.rb
|
69
|
+
- lib/rails_generator/generators/components/view/USAGE
|
70
|
+
- lib/rails_generator/generators/components/view/view_generator.rb
|
71
|
+
- lib/rails_generator/lookup.rb
|
72
|
+
- lib/rails_generator/manifest.rb
|
73
|
+
- lib/rails_generator/options.rb
|
74
|
+
- lib/rails_generator/scripts
|
80
75
|
- lib/rails_generator/scripts/destroy.rb
|
81
76
|
- lib/rails_generator/scripts/generate.rb
|
82
77
|
- lib/rails_generator/scripts/update.rb
|
78
|
+
- lib/rails_generator/scripts.rb
|
79
|
+
- lib/rails_generator/simple_logger.rb
|
80
|
+
- lib/rails_generator/spec.rb
|
81
|
+
- lib/rails_generator.rb
|
82
|
+
- lib/shatter.rb
|
83
|
+
- lib/tasks
|
84
|
+
- lib/tasks/documentation.rake
|
85
|
+
- lib/tasks/framework.rake
|
86
|
+
- lib/tasks/log.rake
|
87
|
+
- lib/tasks/misc.rake
|
88
|
+
- lib/tasks/pre_namespace_aliases.rake
|
89
|
+
- lib/tasks/shattered.rb
|
90
|
+
- lib/tasks/statistics.rake
|
91
|
+
- lib/tasks/testing.rake
|
92
|
+
- lib/templates
|
83
93
|
- lib/templates/configs
|
84
|
-
- lib/templates/doc
|
85
|
-
- lib/templates/environments
|
86
|
-
- lib/templates/media
|
87
|
-
- lib/templates/MIT-LICENSE
|
88
|
-
- lib/templates/Rakefile
|
89
|
-
- lib/templates/README
|
90
|
-
- lib/templates/test
|
91
94
|
- lib/templates/configs/boot.rb
|
92
95
|
- lib/templates/configs/empty.log
|
93
|
-
- lib/templates/configs/Mac
|
94
96
|
- lib/templates/configs/ogre.cfg
|
95
|
-
- lib/templates/configs/ogre_plugins.
|
97
|
+
- lib/templates/configs/ogre_plugins.windows.cfg
|
96
98
|
- lib/templates/configs/runner.rb
|
97
|
-
- lib/templates/
|
98
|
-
- lib/templates/configs/Mac/shattered.app/config
|
99
|
-
- lib/templates/configs/Mac/shattered.app/Contents
|
100
|
-
- lib/templates/configs/Mac/shattered.app/OgreLeaks.log
|
101
|
-
- lib/templates/configs/Mac/shattered.app/OgreMemory.log
|
102
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Info.plist
|
103
|
-
- lib/templates/configs/Mac/shattered.app/Contents/MacOS
|
104
|
-
- lib/templates/configs/Mac/shattered.app/Contents/pbdevelopment.plist
|
105
|
-
- lib/templates/configs/Mac/shattered.app/Contents/PkgInfo
|
106
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources
|
107
|
-
- lib/templates/configs/Mac/shattered.app/Contents/MacOS/shattered_mac
|
108
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj
|
109
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources/rb_main.rb
|
110
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/InfoPlist.strings
|
111
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib
|
112
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib/classes.nib
|
113
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib/info.nib
|
114
|
-
- lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib/objects.nib
|
99
|
+
- lib/templates/doc
|
115
100
|
- lib/templates/doc/README_FOR_APP
|
101
|
+
- lib/templates/environments
|
116
102
|
- lib/templates/environments/environment.rb
|
103
|
+
- lib/templates/media
|
117
104
|
- lib/templates/media/basic.rmaterial
|
118
105
|
- lib/templates/media/default.mesh
|
119
106
|
- lib/templates/media/default.png
|
120
107
|
- lib/templates/media/offset_map.rmaterial
|
108
|
+
- lib/templates/MIT-LICENSE
|
109
|
+
- lib/templates/Rakefile
|
110
|
+
- lib/templates/README
|
111
|
+
- lib/templates/test
|
121
112
|
- lib/templates/test/test_helper.rb
|
122
113
|
test_files: []
|
123
114
|
|
@@ -134,13 +125,13 @@ requirements:
|
|
134
125
|
- Shattered is reliant on all shattered packages
|
135
126
|
dependencies:
|
136
127
|
- !ruby/object:Gem::Dependency
|
137
|
-
name:
|
128
|
+
name: shattered_ogrerb
|
138
129
|
version_requirement:
|
139
130
|
version_requirements: !ruby/object:Gem::Version::Requirement
|
140
131
|
requirements:
|
141
132
|
- - ">="
|
142
133
|
- !ruby/object:Gem::Version
|
143
|
-
version: "0.
|
134
|
+
version: "0.5"
|
144
135
|
version:
|
145
136
|
- !ruby/object:Gem::Dependency
|
146
137
|
name: shattered_pack
|
@@ -149,7 +140,7 @@ dependencies:
|
|
149
140
|
requirements:
|
150
141
|
- - ">="
|
151
142
|
- !ruby/object:Gem::Version
|
152
|
-
version: 0.
|
143
|
+
version: "0.5"
|
153
144
|
version:
|
154
145
|
- !ruby/object:Gem::Dependency
|
155
146
|
name: shattered_support
|
@@ -158,5 +149,5 @@ dependencies:
|
|
158
149
|
requirements:
|
159
150
|
- - ">="
|
160
151
|
- !ruby/object:Gem::Version
|
161
|
-
version: 0.
|
152
|
+
version: "0.5"
|
162
153
|
version:
|
@@ -1,22 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>CFBundleDevelopmentRegion</key>
|
6
|
-
<string>English</string>
|
7
|
-
<key>CFBundleExecutable</key>
|
8
|
-
<string>shattered_mac</string>
|
9
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
10
|
-
<string>6.0</string>
|
11
|
-
<key>CFBundlePackageType</key>
|
12
|
-
<string>APPL</string>
|
13
|
-
<key>CFBundleSignature</key>
|
14
|
-
<string>????</string>
|
15
|
-
<key>CFBundleVersion</key>
|
16
|
-
<string>0.1</string>
|
17
|
-
<key>NSMainNibFile</key>
|
18
|
-
<string>MainMenu</string>
|
19
|
-
<key>NSPrincipalClass</key>
|
20
|
-
<string>NSApplication</string>
|
21
|
-
</dict>
|
22
|
-
</plist>
|
Binary file
|
@@ -1 +0,0 @@
|
|
1
|
-
APPL????
|
data/lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/InfoPlist.strings
DELETED
Binary file
|
data/lib/templates/configs/Mac/shattered.app/Contents/Resources/English.lproj/MainMenu.nib/info.nib
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>IBEditorPositions</key>
|
6
|
-
<dict>
|
7
|
-
<key>29</key>
|
8
|
-
<string>69 252 318 44 0 0 1024 746 </string>
|
9
|
-
</dict>
|
10
|
-
<key>IBFramework Version</key>
|
11
|
-
<string>283.0</string>
|
12
|
-
<key>IBOpenObjects</key>
|
13
|
-
<array>
|
14
|
-
<integer>21</integer>
|
15
|
-
<integer>29</integer>
|
16
|
-
</array>
|
17
|
-
<key>IBSystem Version</key>
|
18
|
-
<string>6C115</string>
|
19
|
-
</dict>
|
20
|
-
</plist>
|
Binary file
|
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>PBXProjectSourcePath</key>
|
6
|
-
<string>/Users/martyn/projects/test_rbcocoa/test_rbcocoa.xcode</string>
|
7
|
-
</dict>
|
8
|
-
</plist>
|
@@ -1,144 +0,0 @@
|
|
1
|
-
----------------------------------------------------------------------------------------------------------------------------------
|
2
|
-
| Memory leak report for: 12/20/2005 22:54:09 |
|
3
|
-
----------------------------------------------------------------------------------------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
134 memory leaks found:
|
7
|
-
|
8
|
-
Alloc. Addr Size Addr Size BreakOn BreakOn
|
9
|
-
Number Reported Reported Actual Actual Unused Method Dealloc Realloc Allocated by
|
10
|
-
------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------
|
11
|
-
007539 0x005ABCA0 0x00000010 0x005ABC90 0x00000030 0x00000000 new N N ??(0) ??
|
12
|
-
007897 0x01114210 0x00000010 0x01114200 0x00000030 0x00000000 new N N ??(0) ??
|
13
|
-
000038 0x01170BA0 0x00000010 0x01170B90 0x00000030 0x00000000 new N N ??(0) ??
|
14
|
-
000039 0x01170D20 0x00000089 0x01170D10 0x000000A9 0x00000000 new N N ??(0) ??
|
15
|
-
000041 0x01170F50 0x0000008A 0x01170F40 0x000000AA 0x00000000 new N N ??(0) ??
|
16
|
-
000043 0x01171250 0x0000008C 0x01171240 0x000000AC 0x00000000 new N N ??(0) ??
|
17
|
-
000045 0x01172230 0x0000008F 0x01172220 0x000000AF 0x00000000 new N N ??(0) ??
|
18
|
-
000046 0x011728A0 0x0000008D 0x01172890 0x000000AD 0x00000000 new N N ??(0) ??
|
19
|
-
000048 0x01172BD0 0x0000008F 0x01172BC0 0x000000AF 0x00000000 new N N ??(0) ??
|
20
|
-
000049 0x01172E60 0x0000008E 0x01172E50 0x000000AE 0x00000000 new N N ??(0) ??
|
21
|
-
000050 0x01173110 0x0000008D 0x01173100 0x000000AD 0x00000000 new N N ??(0) ??
|
22
|
-
000051 0x011732D0 0x0000008B 0x011732C0 0x000000AB 0x00000000 new N N ??(0) ??
|
23
|
-
000053 0x01173620 0x00000092 0x01173610 0x000000B2 0x00000000 new N N ??(0) ??
|
24
|
-
000054 0x01173910 0x0000008C 0x01173900 0x000000AC 0x00000000 new N N ??(0) ??
|
25
|
-
000055 0x01173BA0 0x00000093 0x01173B90 0x000000B3 0x00000000 new N N ??(0) ??
|
26
|
-
000056 0x01173E70 0x0000008E 0x01173E60 0x000000AE 0x00000000 new N N ??(0) ??
|
27
|
-
000057 0x01174330 0x00000092 0x01174320 0x000000B2 0x00000000 new N N ??(0) ??
|
28
|
-
000058 0x01174600 0x00000091 0x011745F0 0x000000B1 0x00000000 new N N ??(0) ??
|
29
|
-
000059 0x011748E0 0x0000008C 0x011748D0 0x000000AC 0x00000000 new N N ??(0) ??
|
30
|
-
000060 0x01174DB0 0x00000091 0x01174DA0 0x000000B1 0x00000000 new N N ??(0) ??
|
31
|
-
000061 0x01174E70 0x00000080 0x01174E60 0x000000A0 0x00000000 new N N ??(0) ??
|
32
|
-
004766 0x028E1E10 0x00000200 0x028E1E00 0x00000220 0x00000000 new N N ??(0) ??
|
33
|
-
004770 0x19C11630 0x00000018 0x19C11620 0x00000038 0x00000000 new N N ??(0) ??
|
34
|
-
004771 0x19C11670 0x00000018 0x19C11660 0x00000038 0x00000000 new N N ??(0) ??
|
35
|
-
004772 0x19C16630 0x00000018 0x19C16620 0x00000038 0x00000000 new N N ??(0) ??
|
36
|
-
004773 0x19C16670 0x00000018 0x19C16660 0x00000038 0x00000000 new N N ??(0) ??
|
37
|
-
004760 0x19C16840 0x00000004 0x19C16830 0x00000024 0x00000000 new N N ??(0) ??
|
38
|
-
004783 0x19C16980 0x00000018 0x19C16970 0x00000038 0x00000000 new N N ??(0) ??
|
39
|
-
004784 0x19C169C0 0x00000018 0x19C169B0 0x00000038 0x00000000 new N N ??(0) ??
|
40
|
-
004785 0x19C16A00 0x00000018 0x19C169F0 0x00000038 0x00000000 new N N ??(0) ??
|
41
|
-
004786 0x19C16A40 0x00000018 0x19C16A30 0x00000038 0x00000000 new N N ??(0) ??
|
42
|
-
004787 0x19C16A80 0x00000018 0x19C16A70 0x00000038 0x00000000 new N N ??(0) ??
|
43
|
-
004788 0x19C16AC0 0x00000018 0x19C16AB0 0x00000038 0x00000000 new N N ??(0) ??
|
44
|
-
004789 0x19C16B00 0x00000018 0x19C16AF0 0x00000038 0x00000000 new N N ??(0) ??
|
45
|
-
004872 0x19C16B40 0x0000000C 0x19C16B30 0x0000002C 0x00000000 new N N ??(0) ??
|
46
|
-
004767 0x19C16BB0 0x000000A4 0x19C16BA0 0x000000C4 0x00000000 new N N OgreSDLPlatform.cpp(46) ???
|
47
|
-
004769 0x19C16C80 0x00000018 0x19C16C70 0x00000038 0x00000000 new N N ??(0) ??
|
48
|
-
004901 0x19C16F80 0x00000014 0x19C16F70 0x00000034 0x00000000 new N N ??(0) ??
|
49
|
-
004774 0x19C17030 0x00000018 0x19C17020 0x00000038 0x00000000 new N N ??(0) ??
|
50
|
-
004775 0x19C17070 0x00000018 0x19C17060 0x00000038 0x00000000 new N N ??(0) ??
|
51
|
-
004776 0x19C170B0 0x00000018 0x19C170A0 0x00000038 0x00000000 new N N ??(0) ??
|
52
|
-
004777 0x19C170F0 0x00000018 0x19C170E0 0x00000038 0x00000000 new N N ??(0) ??
|
53
|
-
004861 0x19C17260 0x00000018 0x19C17250 0x00000038 0x00000000 new N N ??(0) ??
|
54
|
-
004862 0x19C172A0 0x00000018 0x19C17290 0x00000038 0x00000000 new N N ??(0) ??
|
55
|
-
004863 0x19C172E0 0x00000018 0x19C172D0 0x00000038 0x00000000 new N N ??(0) ??
|
56
|
-
004864 0x19C17320 0x00000018 0x19C17310 0x00000038 0x00000000 new N N ??(0) ??
|
57
|
-
004865 0x19C17360 0x00000018 0x19C17350 0x00000038 0x00000000 new N N ??(0) ??
|
58
|
-
004866 0x19C173A0 0x00000018 0x19C17390 0x00000038 0x00000000 new N N ??(0) ??
|
59
|
-
004867 0x19C173E0 0x00000018 0x19C173D0 0x00000038 0x00000000 new N N ??(0) ??
|
60
|
-
004868 0x19C17420 0x00000018 0x19C17410 0x00000038 0x00000000 new N N ??(0) ??
|
61
|
-
004869 0x19C17460 0x00000018 0x19C17450 0x00000038 0x00000000 new N N ??(0) ??
|
62
|
-
004870 0x19C174A0 0x000000A0 0x19C17490 0x000000C0 0x00000000 new N N OgreInput.cpp(54) ???
|
63
|
-
004873 0x19C175A0 0x00000014 0x19C17590 0x00000034 0x00000000 new N N ??(0) ??
|
64
|
-
004851 0x19C177B0 0x00000018 0x19C177A0 0x00000038 0x00000000 new N N ??(0) ??
|
65
|
-
004852 0x19C177F0 0x00000018 0x19C177E0 0x00000038 0x00000000 new N N ??(0) ??
|
66
|
-
004853 0x19C17830 0x00000018 0x19C17820 0x00000038 0x00000000 new N N ??(0) ??
|
67
|
-
004854 0x19C17870 0x00000018 0x19C17860 0x00000038 0x00000000 new N N ??(0) ??
|
68
|
-
004855 0x19C178B0 0x00000018 0x19C178A0 0x00000038 0x00000000 new N N ??(0) ??
|
69
|
-
004856 0x19C178F0 0x00000018 0x19C178E0 0x00000038 0x00000000 new N N ??(0) ??
|
70
|
-
004857 0x19C17930 0x00000018 0x19C17920 0x00000038 0x00000000 new N N ??(0) ??
|
71
|
-
004858 0x19C17970 0x00000018 0x19C17960 0x00000038 0x00000000 new N N ??(0) ??
|
72
|
-
004859 0x19C179B0 0x00000018 0x19C179A0 0x00000038 0x00000000 new N N ??(0) ??
|
73
|
-
004860 0x19C179F0 0x00000018 0x19C179E0 0x00000038 0x00000000 new N N ??(0) ??
|
74
|
-
004841 0x19C17AC0 0x00000018 0x19C17AB0 0x00000038 0x00000000 new N N ??(0) ??
|
75
|
-
004842 0x19C17B00 0x00000018 0x19C17AF0 0x00000038 0x00000000 new N N ??(0) ??
|
76
|
-
004843 0x19C17B40 0x00000018 0x19C17B30 0x00000038 0x00000000 new N N ??(0) ??
|
77
|
-
004844 0x19C17B80 0x00000018 0x19C17B70 0x00000038 0x00000000 new N N ??(0) ??
|
78
|
-
004845 0x19C17BC0 0x00000018 0x19C17BB0 0x00000038 0x00000000 new N N ??(0) ??
|
79
|
-
004846 0x19C17C00 0x00000018 0x19C17BF0 0x00000038 0x00000000 new N N ??(0) ??
|
80
|
-
004847 0x19C17C40 0x00000018 0x19C17C30 0x00000038 0x00000000 new N N ??(0) ??
|
81
|
-
004848 0x19C17C80 0x00000018 0x19C17C70 0x00000038 0x00000000 new N N ??(0) ??
|
82
|
-
004849 0x19C17CC0 0x00000018 0x19C17CB0 0x00000038 0x00000000 new N N ??(0) ??
|
83
|
-
004850 0x19C17D00 0x00000018 0x19C17CF0 0x00000038 0x00000000 new N N ??(0) ??
|
84
|
-
004778 0x19C17D80 0x00000018 0x19C17D70 0x00000038 0x00000000 new N N ??(0) ??
|
85
|
-
004779 0x19C17DC0 0x00000018 0x19C17DB0 0x00000038 0x00000000 new N N ??(0) ??
|
86
|
-
004780 0x19C17E00 0x00000018 0x19C17DF0 0x00000038 0x00000000 new N N ??(0) ??
|
87
|
-
004781 0x19C17E40 0x00000018 0x19C17E30 0x00000038 0x00000000 new N N ??(0) ??
|
88
|
-
004782 0x19C17E80 0x00000018 0x19C17E70 0x00000038 0x00000000 new N N ??(0) ??
|
89
|
-
004831 0x19C17F30 0x00000018 0x19C17F20 0x00000038 0x00000000 new N N ??(0) ??
|
90
|
-
004832 0x19C17F70 0x00000018 0x19C17F60 0x00000038 0x00000000 new N N ??(0) ??
|
91
|
-
004833 0x19C17FB0 0x00000018 0x19C17FA0 0x00000038 0x00000000 new N N ??(0) ??
|
92
|
-
004834 0x19C17FF0 0x00000018 0x19C17FE0 0x00000038 0x00000000 new N N ??(0) ??
|
93
|
-
004835 0x19C18030 0x00000018 0x19C18020 0x00000038 0x00000000 new N N ??(0) ??
|
94
|
-
004836 0x19C18070 0x00000018 0x19C18060 0x00000038 0x00000000 new N N ??(0) ??
|
95
|
-
004837 0x19C180B0 0x00000018 0x19C180A0 0x00000038 0x00000000 new N N ??(0) ??
|
96
|
-
004838 0x19C180F0 0x00000018 0x19C180E0 0x00000038 0x00000000 new N N ??(0) ??
|
97
|
-
004839 0x19C18130 0x00000018 0x19C18120 0x00000038 0x00000000 new N N ??(0) ??
|
98
|
-
004840 0x19C18170 0x00000018 0x19C18160 0x00000038 0x00000000 new N N ??(0) ??
|
99
|
-
004811 0x19C182A0 0x00000018 0x19C18290 0x00000038 0x00000000 new N N ??(0) ??
|
100
|
-
004812 0x19C182E0 0x00000018 0x19C182D0 0x00000038 0x00000000 new N N ??(0) ??
|
101
|
-
004813 0x19C18320 0x00000018 0x19C18310 0x00000038 0x00000000 new N N ??(0) ??
|
102
|
-
004814 0x19C18360 0x00000018 0x19C18350 0x00000038 0x00000000 new N N ??(0) ??
|
103
|
-
004815 0x19C183A0 0x00000018 0x19C18390 0x00000038 0x00000000 new N N ??(0) ??
|
104
|
-
004816 0x19C183E0 0x00000018 0x19C183D0 0x00000038 0x00000000 new N N ??(0) ??
|
105
|
-
004817 0x19C18420 0x00000018 0x19C18410 0x00000038 0x00000000 new N N ??(0) ??
|
106
|
-
004818 0x19C18460 0x00000018 0x19C18450 0x00000038 0x00000000 new N N ??(0) ??
|
107
|
-
004819 0x19C184A0 0x00000018 0x19C18490 0x00000038 0x00000000 new N N ??(0) ??
|
108
|
-
004820 0x19C184E0 0x00000018 0x19C184D0 0x00000038 0x00000000 new N N ??(0) ??
|
109
|
-
004821 0x19C18520 0x00000018 0x19C18510 0x00000038 0x00000000 new N N ??(0) ??
|
110
|
-
004822 0x19C18560 0x00000018 0x19C18550 0x00000038 0x00000000 new N N ??(0) ??
|
111
|
-
004823 0x19C185A0 0x00000018 0x19C18590 0x00000038 0x00000000 new N N ??(0) ??
|
112
|
-
004824 0x19C185E0 0x00000018 0x19C185D0 0x00000038 0x00000000 new N N ??(0) ??
|
113
|
-
004825 0x19C18620 0x00000018 0x19C18610 0x00000038 0x00000000 new N N ??(0) ??
|
114
|
-
004826 0x19C18660 0x00000018 0x19C18650 0x00000038 0x00000000 new N N ??(0) ??
|
115
|
-
004827 0x19C186A0 0x00000018 0x19C18690 0x00000038 0x00000000 new N N ??(0) ??
|
116
|
-
004828 0x19C186E0 0x00000018 0x19C186D0 0x00000038 0x00000000 new N N ??(0) ??
|
117
|
-
004829 0x19C18720 0x00000018 0x19C18710 0x00000038 0x00000000 new N N ??(0) ??
|
118
|
-
004830 0x19C18760 0x00000018 0x19C18750 0x00000038 0x00000000 new N N ??(0) ??
|
119
|
-
004790 0x19C187F0 0x00000018 0x19C187E0 0x00000038 0x00000000 new N N ??(0) ??
|
120
|
-
004791 0x19C18830 0x00000018 0x19C18820 0x00000038 0x00000000 new N N ??(0) ??
|
121
|
-
004792 0x19C18870 0x00000018 0x19C18860 0x00000038 0x00000000 new N N ??(0) ??
|
122
|
-
004793 0x19C188B0 0x00000018 0x19C188A0 0x00000038 0x00000000 new N N ??(0) ??
|
123
|
-
004794 0x19C188F0 0x00000018 0x19C188E0 0x00000038 0x00000000 new N N ??(0) ??
|
124
|
-
004795 0x19C18930 0x00000018 0x19C18920 0x00000038 0x00000000 new N N ??(0) ??
|
125
|
-
004796 0x19C18970 0x00000018 0x19C18960 0x00000038 0x00000000 new N N ??(0) ??
|
126
|
-
004797 0x19C189B0 0x00000018 0x19C189A0 0x00000038 0x00000000 new N N ??(0) ??
|
127
|
-
004798 0x19C189F0 0x00000018 0x19C189E0 0x00000038 0x00000000 new N N ??(0) ??
|
128
|
-
004799 0x19C18A30 0x00000018 0x19C18A20 0x00000038 0x00000000 new N N ??(0) ??
|
129
|
-
004800 0x19C18AD0 0x00000018 0x19C18AC0 0x00000038 0x00000000 new N N ??(0) ??
|
130
|
-
004801 0x19C18B10 0x00000018 0x19C18B00 0x00000038 0x00000000 new N N ??(0) ??
|
131
|
-
004802 0x19C18B50 0x00000018 0x19C18B40 0x00000038 0x00000000 new N N ??(0) ??
|
132
|
-
004803 0x19C18B90 0x00000018 0x19C18B80 0x00000038 0x00000000 new N N ??(0) ??
|
133
|
-
004804 0x19C18BD0 0x00000018 0x19C18BC0 0x00000038 0x00000000 new N N ??(0) ??
|
134
|
-
004805 0x19C18C10 0x00000018 0x19C18C00 0x00000038 0x00000000 new N N ??(0) ??
|
135
|
-
004806 0x19C18C50 0x00000018 0x19C18C40 0x00000038 0x00000000 new N N ??(0) ??
|
136
|
-
004807 0x19C18C90 0x00000018 0x19C18C80 0x00000038 0x00000000 new N N ??(0) ??
|
137
|
-
004808 0x19C18CD0 0x00000018 0x19C18CC0 0x00000038 0x00000000 new N N ??(0) ??
|
138
|
-
004809 0x19C18D10 0x00000018 0x19C18D00 0x00000038 0x00000000 new N N ??(0) ??
|
139
|
-
004810 0x19C18D50 0x00000018 0x19C18D40 0x00000038 0x00000000 new N N ??(0) ??
|
140
|
-
004761 0x19C18DE0 0x000000C0 0x19C18DD0 0x000000E0 0x00000000 new N N ??(0) ??
|
141
|
-
004768 0x19C18F40 0x00000018 0x19C18F30 0x00000038 0x00000000 new N N ??(0) ??
|
142
|
-
004762 0x19C18F80 0x00000030 0x19C18F70 0x00000050 0x00000000 new N N OgreEventProcessor.cpp(105) ???
|
143
|
-
004765 0x19C21B90 0x00000020 0x19C21B80 0x00000040 0x00000000 new N N ??(0) ??
|
144
|
-
004905 0x19C5CB40 0x00000010 0x19C5CB30 0x00000030 0x00000000 new N N ??(0) ??
|
@@ -1,29 +0,0 @@
|
|
1
|
-
--------------------------------------------------------------------------------
|
2
|
-
|
3
|
-
OgreMemory.log - Memory logging file created on Tue Dec 20 22:53:47 2005
|
4
|
-
|
5
|
-
--------------------------------------------------------------------------------
|
6
|
-
|
7
|
-
This file contains a log of all memory operations performed during the last run.
|
8
|
-
|
9
|
-
Interrogate this file to track errors or to help track down memory-related
|
10
|
-
issues. You can do this by tracing the allocations performed by a specific owner
|
11
|
-
or by tracking a specific address through a series of allocations and
|
12
|
-
reallocations.
|
13
|
-
|
14
|
-
There is a lot of useful information here which, when used creatively, can be
|
15
|
-
extremely helpful.
|
16
|
-
|
17
|
-
Note that the following guides are used throughout this file:
|
18
|
-
|
19
|
-
[!] - Error
|
20
|
-
[+] - Allocation
|
21
|
-
[~] - Reallocation
|
22
|
-
[-] - Deallocation
|
23
|
-
[I] - Generic information
|
24
|
-
[F] - Failure induced for the purpose of stress-testing your application
|
25
|
-
[D] - Information used for debugging this memory manager
|
26
|
-
|
27
|
-
...so, to find all errors in the file, search for "[!]"
|
28
|
-
|
29
|
-
--------------------------------------------------------------------------------
|
@@ -1,16 +0,0 @@
|
|
1
|
-
// The PluginFolder tells Ogre where OgreMain.dll can be found.
|
2
|
-
<% if PLATFORM =~ /mswin/ || PLATFORM =~ /linux/ %>
|
3
|
-
PluginFolder=<%= SHATTERED_OGRE_DLLS %>
|
4
|
-
<% end %>
|
5
|
-
|
6
|
-
// Each of these plugins loads a seperate subsystem of Ogre.
|
7
|
-
<%
|
8
|
-
plugins = %w( RenderSystem_GL RenderSystem_Direct3D9
|
9
|
-
Plugin_ParticleFX Plugin_BSPSceneManager
|
10
|
-
Plugin_OctreeSceneManager Plugin_CgProgramManager )
|
11
|
-
plugins -= ["RenderSystem_Direct3D9"] unless PLATFORM =~ /mswin32/
|
12
|
-
plugins -= ["Plugin_CgProgramManager"] if PLATFORM =~ /i686-darwin/
|
13
|
-
%>
|
14
|
-
<% plugins.each do |plugin| %>
|
15
|
-
Plugin=<%= plugin %>
|
16
|
-
<% end %>
|