Commit Log (Page 93 of 255)

back to main page

Pages: << Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>

Summary Period: 2002-04-28 to 2002-04-19 (Commits 8095-8144 of 12744)

jorrit 2002-04-28 21:35

Fixed an initialization bug in csThing::IntersectSegmentFull()
which could cause crashes with a bit of bad luck.

3 lines of code changed in:

jorrit 2002-04-28 20:36

Fixed another initialization bug in the OpenGL renderer found
by valgrind.

4 lines of code changed in:

norman 2002-04-28 10:46

added Robs patch for unbreaking unlooped streamed sound

0 lines of code changed in:

philwyett 2002-04-28 03:15

Changed links which pointed to old "linuxgames.com" site and
pointed them to the new homepage at SourceForge (SF).

Thanks to Jim Sager for spotting this errors in the docs.

3 lines of code changed in:

jorrit 2002-04-27 22:04

- Worked around a bug in the mipmapping code in csImage. When
mipmapping is called for one dimension equal to 1 the routine
reads to unallocated memory. I don't really understand
mipmap.inc very well so I currently just worked around this
bug. This needs more investigation. Thanks to Matze's valgrind
debugging for discovering this bug.
- Fixed a few bugs in the OpenGL renderer where some queue variables
were not initialized. Thanks to Matze's valgrind debugging
for discovering this bug.

60 lines of code changed in:

philwyett 2002-04-27 20:17

Fixed unittest MSVC project file. This file was being generated into
a Win32 GUI app rather than the correct Win32 Console app.

2 lines of code changed in:

jorrit 2002-04-26 20:55

fix.

10 lines of code changed in:

jorrit 2002-04-26 20:46

Modified 3ds2lev so that the triangle combiner is more robust.
It now detects better if two triangles are on same plane
and also checks if resulting polygon is convex.

65 lines of code changed in:

jorrit 2002-04-26 16:17

Added comment.

3 lines of code changed in:

jorrit 2002-04-26 15:51

Again improved performance of the XOR buffer by only clearing
the part of the polygon buffer that will actually be needed.
This optimization brings the performance of the XOR buffer
rather close to the c-buffer now.

11 lines of code changed in:

jorrit 2002-04-26 15:09

Added a few more test to csXORBuffer::Debug_UnitTest().

1 lines of code changed in:

jorrit 2002-04-26 14:32

Experiment with a better function to calculate if planes are close.

13 lines of code changed in:

jorrit 2002-04-26 13:20

- Fixed a bad bug in the XOR buffer which could cause memory
overwrites. A nice side effect of fixing this bug is that it is
now also more optimal :-)
- Fixed another bug in the XOR buffer.
- Added a csXORBuffer::Debug_UnitTest() function which tries to do
a full test of the XOR buffer to see that it is working to
expectations.
- Added a new 'unittest' application. The purpose of this application
is to contain tests that are useful to be repeated at any time
in the future too. i.e. these tests serve to test importants
part of CS. If a test ever fails something went wrong so we can
quickly detect that. At this moment this test program is non
graphical and only calls csXORBuffer::Debug_UnitTest().

154 lines of code changed in:

matzebraun 2002-04-26 10:21

added a new option to 3ds2lev that let's you choose between nice looking and fast loading maps

45 lines of code changed in:

philwyett 2002-04-26 09:47

Fixed compile errors.

- Changed the second "key_r" value to "key_b".

2 lines of code changed in:

norman 2002-04-25 22:51

added GetTexture (..., r,g,b) to additionally specify a keycolor

10 lines of code changed in:

norman 2002-04-25 22:50

- added "Image" key to imageview, which has a vfs path to an image as argument
- added "KeyColor" key to imageview, which defines a key color for the "Image"
- added fsScaled, fsTiled and fsFixed as styles to imageview, which define if the image is scaled,tiled or at its fixed size inside the imageview
- extended the bison file to make components aware of RGB entries
- added GetTexture (..., r,g,b) to iAwsPrefManager that additionally gives keycolors

307 lines of code changed in:

jorrit 2002-04-25 14:42

- Extended XOR buffer so it will now make inserted polygons a little
bit wider while tested polygons are original size. This increases
chance of good culling.
- XOR buffer will now also correctly render the last row of the
polygon. It was not doing that before which caused visibility
culling to ignore many good opportunities.
- Optimized the XOR buffer to use the 2D bounding box of the polygon
for doing the XOR sweep. This gives a big boost in speed. Still
slower compared to c-buffer.

31 lines of code changed in:

jorrit 2002-04-25 11:53

- Removed the 'togglecull' and 'togglexor' commands from BugPlug.
Instead added the ability to have arguments with bugplug commands
and added the more general 'enginecmd' command. The first argument
after 'enginecmd' will be given to engine->DebugCommand().
In data/config/bugplug.cfg defined x as 'enginecmd toggle_xorbuf'
and ctrl-c as 'enginecmd toggle_cullstat'.
- 'toggle_cullstat' will now show the percentage of the complete
octree bounding box that is visible.

115 lines of code changed in:

jorrit 2002-04-25 11:49

Logo for Gelid and a few modifications to vitality ratings for projects.

17 lines of code changed in:

jorrit 2002-04-25 10:47

New project Gelid.

13 lines of code changed in:

sunshine 2002-04-25 08:58

Relocated dllwrapwrap.sh from CS/bin to CS/libs/cssys/win32.

2 lines of code changed in:

norman 2002-04-24 23:43

added awsImageView to the registration of common components - doh, and i was wondering why it never showed up

2 lines of code changed in:

sunshine 2002-04-24 23:24

Automated Texinfo @node and @menu repair.

1 lines of code changed in:

norman 2002-04-24 23:07

disabled output of 'Texture: ""' for the pixmap button since the path isnt stored in the ui file (theres the actual bitmap data stored instead.
To get the name of the texture in the output write 'l:Texture: "blah"' in the whatsThis property

2 lines of code changed in:

sunshine 2002-04-24 22:59

Corrected a typographical error.

1 lines of code changed in:

norman 2002-04-23 23:22

added a param member to awsListItem. Here you can store additional information you do not want to display but connect with that item like record ids for instance or pointers etc.
You transfer them via the param%d entries in the awsParmList

28 lines of code changed in:

jorrit 2002-04-23 16:15

Implemented csXORBuffer::IsFull(). Also added an optimization
to ignore completely full rows in InsertPolygon() and TestPolygon().
This significantly improves performance of the XOR buffer but
still not as good as the c-buffer.

5 lines of code changed in:

jorrit 2002-04-23 15:56

- Added support for printing out culling efficiency (polygons,
nodes, and objects). Only enabled in debug mode.
- Added 'toggle_cullstat' command (for iEngine::DebugCommand())
to toggle the printing of this culling statistics.
- Added new 'togglecull' command to bugplug which will execute
the toggle_cullstat command. Assigned to ctrl-c key.
- Added csXORBuffer::IsFull() which checks if the entire screen
buffer is full and nothing can be visible now. Always returns
false at the moment.

93 lines of code changed in:

jorrit 2002-04-23 15:14

- Implemented InsertPolygon() and TestPolygon() in XOR buffer.
- Started supporting XOR buffer in engine. Now we'll be able to test
performance and see if the XOR buffer is a suitable replacement
for the c-buffer.
- Added iEngine::DebugCommand(). With this new method debugging
commands can be performed in the engine. BugPlug can use this to
perform certain debug options. At this moment the only supported
command is 'toggle_xorbuf' which will toggle between c-buffer
and XOR buffer.
- Bugplug now supports new 'togglexor' command (by default assigned
to 'x' key).
- First performance results indicate that the c-buffer is still
a lot faster. However, there is still considerable room for
optimizations in the XOR buffer. Also keep in mind that even if
the XOR buffer turns out to be slower I still will need it for
the real dynamic PVS algorithms because the c-buffer cannot
cope with non-convex outlines.

180 lines of code changed in:

jorrit 2002-04-23 13:00

Continued work on XOR buffer. It now seems to work properly.
I added several debugging utilities. One of those is
Debug_ExtensiveTest() which randomly generates triangles and fills
them in the XOR buffer. It then checks if the resulting buffer
has values in the last column. If all goes well this should never
happen unless the polygon drawer has leaks. After 10000000 random
triangles it failed to find a single leak.
So csXORBuffer::DrawPolygon() now correctly implements polygon
drawing in both directions (clockwise/anti-clockwise) and clipping.
There is still much room for optimization. I will first get things
working.

138 lines of code changed in:

jorrit 2002-04-23 11:44

csScanStr() also accepts '-' for %s now (if no quotes are given).

2 lines of code changed in:

jorrit 2002-04-23 11:39

Fixed parsing of FILE keyword in texture parsing so it also
works with quotes.

6 lines of code changed in:

matzebraun 2002-04-23 11:22

fix 3ds2lev, it wasn't putting '' around texturefilenames which leaded to corrupted maps if the filename contained special chars

1 lines of code changed in:

jorrit 2002-04-23 08:39

CS Erector and Quark++ announced.

22 lines of code changed in:

norman 2002-04-22 22:52

ok, so calling the handleevent of the embedded component was a stupid move, why does nobody complain ? :)
Put back in the original plus the handling of OnFrameStart as an "excuse me"

28 lines of code changed in:

norman 2002-04-22 22:39

- Removed the implementation of awsEmbeddedComponents HandleEvent and replaced it with a call to the embedded components HandleEvent. If you build a new control from ground up using this embedding component technique you can now look up the component factory of awsComponent and that you let create an awsComponent which you can embedd (this implements exactly the HandleEvent which was implemented here before).
- Filled the formerly empty Create method of awsComponentFactory to create an awsComponent
- registered the awsComponentFactory with awsManager

4 lines of code changed in:

norman 2002-04-22 21:47

- on Initialization the embedded component is now IncRef'ed since it's DecRef'ed at destruction (only decref what you incref)
- added all the missing methods since iAwsComponent has changed a lot
- made the wmgr in the factory protected, so subclasses can use it
- removed the pure virtualization of the OnBlah methods and added default implementations (calling the method on the embedded component) - this makes it easy for instance to embedd an awsLabel object in your instance of a derived class of awsEmbeddedComponent and just override the methods you need

78 lines of code changed in:

jorrit 2002-04-22 08:32

Removed ugly looking slow and put back the original.

1 lines of code changed in:

norman 2002-04-21 12:52

moved the class type modifier from the tooTip/comment into whatsThis property where the connect and literal special effects already are. class type token identifier is 't'

32 lines of code changed in:

norman 2002-04-21 12:51

moved the class type modifier form the tooTip/comment into whatsThis property where the connect and literal special effects already are. class type token identifier is 't'

18 lines of code changed in:

norman 2002-04-21 11:22

added documentation of how to use your own control classes and still laying them out in QT designer

24 lines of code changed in:

norman 2002-04-21 11:21

added support for declaring use of your own aws controls - see docs

2 lines of code changed in:

norman 2002-04-21 00:22

awslistbox: the already present "selectable" property of listrows is now respected when rows are selected

21 lines of code changed in:

norman 2002-04-20 20:19

added GetItems method for requesting selected data froma specific row. This is now used by GetSelectedItem and a new GetItem method

36 lines of code changed in:

norman 2002-04-20 16:40

added signals for windows being Zoomed, Minimized, Closed and the broadcasting of these signals

39 lines of code changed in:

norman 2002-04-20 14:08

fixes for
awsListBox:
- GetSelectedItem now checks if theres any selected item at all
- DeleteItem updates selection if the deleted item was also the selected one
- DoFindItem now looks up the iString with FindKey, previously the call to Find compared the iString with a awsListRow
awsListRowVector:
- the Compare and CompareKey methods now call strcmp instead of iString::Compare, because iString::Compare returns a bool (if they were not equal false would be returned and with false defined as 0, the "not equal" would be reinterpreted as equal for the csVector's Find algorithm).

67 lines of code changed in:

jorrit 2002-04-19 13:56

Temporary commit for some XOR buf debug code.

39 lines of code changed in:

norman 2002-04-19 07:42

components received mouseentry/exit messages even if they was deaf. this caused the problems with controls in notebook pages (for instance buttons never broadcasted signalCmdButtonClicked signals)

1 lines of code changed in:

norman 2002-04-19 00:33

added freeraider logo

5 lines of code changed in:

Pages: << Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>


Generated by StatCvs v0.2-dev