Commit graph

2058 commits

Author SHA1 Message Date
pouillot
2920944299 Fixes #758 Always use -DNOMINMAX for MSVC builds
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4944 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f65b1cfc7e59b8a4e786e75b693a1412588033a2
Former-commit-id: 8cba7ab4cd431546d0db3b2628c364a23f74caef
2012-09-15 14:18:27 +00:00
pouillot
fd5ace6e31 Re #307 Split the big macros.cmake into several smaller and better readable files
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4943 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 97d27758fb627b375f108915683eecd782b9ac59
Former-commit-id: 80a7b425c51272694d4d9518aed18d732474b938
2012-09-14 18:39:40 +00:00
kmetykog
ea75f5d080 Re #660: fiddling with colours
Applied exactly the same colours as posted in the ticket description.

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4942 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a6d375c3a94a282c5530f98e0cd04e31415c7d29
Former-commit-id: 23834c7f01bb76cebfcf1c9a8be61a6fa4eb1b0f
2012-09-12 23:06:42 +00:00
kmetykog
ec2dd8bbc0 Re #660: adding colours
Added new colours to:
- leaderboard (mode 1 & 2)
- car board (car ahead/behind)
- track map
- fuel/damage indicator

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4941 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d447b8d108529095dcc0e6c796504bb5574bed7f
Former-commit-id: 399cc5b89b6659f7b838483942d7fa833fd85a34
2012-09-12 22:37:09 +00:00
kmetykog
c7de0a5d58 Re 660: code cosmetics
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4940 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a14b4af08a06adac008e9d7404df691b955044bb
Former-commit-id: c2e81edb951d70ecf7e79cf62093f8ab13a8e168
2012-09-12 22:36:37 +00:00
kmetykog
3aeb6ca55d Re #691: put obCreate() to use in splitOb() code parts (Boris)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4939 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 4e1aed0b9dd9b64ba8302a53061aefbba0440d39
Former-commit-id: 8613fc638920502b877328a88742825f2b47b1c7
2012-09-11 21:20:55 +00:00
kmetykog
764a314ce9 Re #691: solved bug! (Boris)
Added multitexture channels to methods used by terrainSplitOb().

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4938 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: ebacd2d34692fc9875f910fb229740d49512cffb
Former-commit-id: 878d10f60c27f035dc1a8341bfbe9c786fad4e52
2012-09-11 21:20:37 +00:00
kmetykog
2a661f5472 Re #691: refactored terrainSplitOb() (Boris)
o moved found_a_tri to it's local scope
o renamed numtri to numSurf and removed usage of it, where it is not the
  number of surfaces

o moved bare creation of ob_t to own method
o up to now inits mem to zero and max,min values appropriately

o refactored a for-loop
o added comments
o moved init of textarray and calculation for spacial extend to own methods
o reordered init of temporary object

o moved texture name copying to own method
o added ob's min/max default init to obInitSpacialExtend()
o renamed triIndex to oldSurftoNewObjMap
o renamed numNewSurf to numNewObjs: false name before
o removed numob: covered by for-loop variable already

o gave temporary point/normal arrays variable size instead of fixed to some
  number
o renamed some variables

o put all multitexture setting stuff to own methods.

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4937 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e0d5a524d351a481902483b14d2137e584c66ece
Former-commit-id: d6c9fe12c245f7baedb6400f3aaa0ae7b3f80d3d
2012-09-11 21:20:20 +00:00
kmetykog
f47de46c40 Re #691: fixed memory allocation bugs (Boris)
o terrainSplitOb(): too much space allocated for vertex, norm and snorm arrays in new object.
o in createSingleTexChannelArrays() too much space for texture array is allocated
o assumption was that it contains 3 * num surfaces entries
o but it's actually only numvertice * 2 entries

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4936 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 11d5639f3783e89acaab31237ccb061c491d04b3
Former-commit-id: 9e158c8ea04cb9107b6000c8f56c880e8b87dd73
2012-09-11 21:20:00 +00:00
kmetykog
d8fdb3e1c2 Re #691: improved some comments (Boris)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4935 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: bd2b295694d15b42ca0318dc6052db1ee71f5964
Former-commit-id: 24d6be485e0d1ea5aa434eb9f24923ce3cd87d61
2012-09-11 21:19:43 +00:00
kmetykog
49bc2cd37e Re #691: refactored terrainSplitOb() (Boris)
o renamed variables k, fi, fj and moved to more local scope
o renamed i to curNewObj
o renamed triIndice to numNewObjs
o renamed j and moved to more local scopes
o renamed oldva to storedPtIdxArr: holds the indices of stored points
  in the new object
o renamed n to curNewPtIdx: is the current index in the temporal point
  storage

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4934 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7f3fb3a15e7fddee66ef8935a7abe20a9939c6b9
Former-commit-id: 26f78dc8bb288f08bb79ecc4bf4f23280e979dcd
2012-09-11 21:19:26 +00:00
kmetykog
48d4bd7355 Re #691: removed warnings about unused variables (Boris)
o loadAC() and loadACo(): ret set, but didn't check it and abort apropriately
o mergeSplitted(): numtri used only if specific define set
o main(): fake_argv not used, seems like debugging: commented out
o others: simply not used in any senseful way

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4933 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 0f947ac886893049904834b10c910e62eda93a11
Former-commit-id: d958f00e97f2c63edbfe6ca99f144bac8aa51b27
2012-09-11 21:19:09 +00:00
kmetykog
3ce4482a83 Re #691: terrainSplitOb(): moved centroid computation to own method (Boris)
IMPORTANT: started putting variables to their local scope
o i.e. the code is not compatible to C99 anymore
o but has extension .cpp and is compiled with C++ compiler anyway

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4932 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 50b42a23f22d7000fd1cf909b9b7dfcbe83ae6aa
Former-commit-id: ac2a1297c6a7c0ed43459dc62d1255f220f583f7
2012-09-11 21:18:46 +00:00
pouillot
cdc3d95843 Re #683 Added support for building with missing contents in source tree + OPTION_CHECK_CONTENTS CMake option to disable it when usefull ; defaults to Off
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4931 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e89e21abb38e60cbb84ac71fa326a46fa55467ef
Former-commit-id: c8eb5c8c63257e240e9e050e7551250f026f14fa
2012-09-11 18:33:31 +00:00
pouillot
4ec8a1b526 Fixed typo preventing lp1-pescy-p60 setup for Simplix to be installed
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4930 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 350a6d6d6ee08fde4c4dee0a23cc4cc9c975998a
Former-commit-id: c0e262ebe8dc63424d5f61cbecae9f5182ff9e33
2012-09-11 17:41:39 +00:00
pouillot
da77137b1a Re #721 Fixed forgotten renaming of Find3rdPartyDependencies.cmake into FindCustom3rdParty.cmake
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4929 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 0061115955e58fc1186c7281318c3607ab1532c8
Former-commit-id: 4496688647db669946a8223c07681dbe6dfe1f3f
2012-09-09 14:10:28 +00:00
pouillot
361db1099a Re #721 Added support for building with QtCreator + MinGW 4.7 (using the 'MinGW Makefiles' CMake generator)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4928 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d9cb38ad77b18715f68da04d3095e2028e667ae6
Former-commit-id: 0dbec0c92e15ffa411e15e8ab45b1daedc99d4d4
2012-09-09 08:37:40 +00:00
pouillot
a5c4db51e2 Added run-time startup traces giving infos about the build system used to get the binaries
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4927 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: be47caa967c54718d963e17f8ba73c0594a45997
Former-commit-id: 6cfae1566796d05519cd43ad00c74bc4982b713e
2012-09-08 17:41:13 +00:00
kmetykog
7de6bf7b99 Re #660: Display ABS/TCS/SPD next to dials.
This is a temporary solution now, needs graphics design.

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4926 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 8d652ef878d28691aadd48e252994e6292cbaed9
Former-commit-id: 8f8fbe313ca1edba395efeb6c2b9b09a3561184c
2012-09-08 13:34:21 +00:00
kmetykog
dcb0b4a7c8 Re #660: Move scrolling leaderboard mode to top
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4925 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7cd8b4712d23e840b9f113215e079067b2e184a8
Former-commit-id: b203916723c1fb63b4a24a71217b96477f1c2944
2012-09-08 09:51:17 +00:00
kmetykog
246aa99f91 Re #660: Move leaderboard 1-2-3 mode to top left
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4924 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c59298920a7d52d9926280cdf2c844f914172e33
Former-commit-id: 9c087f531ea9c95c0f4e7d7edd7d053d5a272a86
2012-09-08 09:50:57 +00:00
kmetykog
8484061826 Re #660: Move car display 1-2 to bottom left
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4923 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: fd1dcf91a66d0bb86fbda3a9d8a2b341461037e6
Former-commit-id: b42628d0071d01c804a2a6d704476b51391bfcbb
2012-09-08 09:50:37 +00:00
kmetykog
908fc17d44 Fixes #736: Driver select menu - car skin name displayed starting with capitals
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4922 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d9dec7fc131180d7d714f0439f9f48caafe3d0ee
Former-commit-id: b36bda863b8bb7c82f95084e36846e21cac0f6d2
2012-09-07 17:01:00 +00:00
kmetykog
a3feefa02a Re #641: Empties new player name when clicked
Empties new player name editbox when clicked, so it won't show 'Enter Name'
Note however, that if leaved blank, it stores the new player with name '-- No One --'

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4921 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 755171f00988e601a2c85369b170fb68f7ec0e98
Former-commit-id: 31acab93bf8004029065d9d5d03ac4ff66966cf7
2012-09-06 09:33:12 +00:00
kmetykog
71c483f42d Fixes #736: Garage menu - car skin name displayed starting with capitals
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4920 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: bde6c209a7717784c81061157f9d852e1fb4c609
Former-commit-id: fbe96d49f77eb9802d97df3b1d0606f9ec889fb4
2012-09-06 07:04:49 +00:00
kmetykog
54791430cb Fixes #537: avoid buffer overflow
Limit parse length for possibly long string in grloadac.cpp/do_material

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4919 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: b264347298854bee91b68483118a9552684d0b73
Former-commit-id: ea3b6fce6b9053b3e02feeed9d70f5f33db91ff1
2012-09-06 06:24:29 +00:00
mungewell
d03d57d221 Bug #614 - allow pre-go gear selection and issue 'stop and go' penalities for jumping lights
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4918 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 581dfc25676f046afc1ae35beaca1952fe70f585
Former-commit-id: b72d4cce6295fa20447ce2ccb907dc009cc33eaa
2012-09-05 03:58:00 +00:00
torcs-ng
ab584a43f3 update FindSOLID.cmake for building on Mageia
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4916 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c270f69a35b2d0cd0de18fe5d86f71b1884d387f
Former-commit-id: 4c5e8af54d5196b8bd247e375bedbaba2da4d8ca
2012-09-03 17:59:37 +00:00
area42
9b78fe73e3 Improved wheel texture sor USR SC Lynx
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4912 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 0d639206b00a605e2fb1c98d9d46f14f29632df1
Former-commit-id: 12d5306df596fb7e0e296e6f3813d5afa3b36d7e
2012-09-01 08:27:47 +00:00
pouillot
071c2d31c6 Fixes #738 Actual completion : added missing file
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4910 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 739044b6495479cf096d0a6ceed39feb7349dfd6
Former-commit-id: 407e05e095e546e41c3ec860c9a2d4b7a75f5fee
2012-08-31 18:24:08 +00:00
area42
2bd3148b5c Improved wheel texture for SC Murasama Simplix drivers
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4908 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e22b2d817d45e98bca100058ad6a74dc39c826d3
Former-commit-id: 1e01f2eec657ce237957d31aceebe8c43a08c39b
2012-08-31 17:06:07 +00:00
pouillot
860674a37e Fixes #738 Make portability a real (shared) library in order to implement missing functions as needed (like strndup, strtok_r, ...)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4907 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 9f24b755d5fd592821fd966ab75bf3ab6f35c25e
Former-commit-id: a6d98e8806d508ebdae781980b33c4a95706db96
2012-08-30 18:35:40 +00:00
pouillot
9861448370 Fixes #729 Removed useless SOLID_SOLIDINCLUDE_DIR variable
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4906 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 44ed2181117f8fbd967ad4108e09c636337af82d
Former-commit-id: 07ef84751e8ba55f051c874bd1bde3cbb4070616
2012-08-30 18:12:11 +00:00
area42
aff22327af Improvd wheel textures for SC Spirit USR drivers
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4904 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: fdbccf84369f0bbb52ff59953d05beb0583d3edb
Former-commit-id: 3528285a26c259f7dc8f36eb67534d35d31247a6
2012-08-29 20:03:21 +00:00
kmetykog
824fa7a13f Re #605: no CLRF in source files
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4903 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5a05f4f02b4d07b3aa676dc6a67281891ea76808
Former-commit-id: de083f4fb267f252323585a1cba996f4cd9e3620
2012-08-27 11:31:33 +00:00
kmetykog
b65badf16c Re #605: clear exec permission of source files
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4902 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: b371bd4e7ec1ad5685d86cbb5eab172aecea4998
Former-commit-id: e1863bd7f1b5b092aa2b9edd001d2a5b93a76a44
2012-08-27 10:04:20 +00:00
pouillot
c4a6bed3e5 Fixes #717 Install sd in <build drive>:/speed-dreams-2-build by default under Windows
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4884 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6dde23ea4614efdc2112717b81bd26aba2a4fd45
Former-commit-id: 128311fcd1bf11d2eabc9bdb120da6c03ed2032f
2012-08-25 12:57:21 +00:00
area42
8b6c90e9d2 Improved wheel textures for SC USR drivers
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4880 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e60b74f2913805ffac64f58b99d82eae19d49790
Former-commit-id: af940a24a41800f48025be9a9a4ba940f41a55de
2012-08-19 14:28:15 +00:00
pouillot
73432f1d43 Re #721 A few improvements to the MinGW build instructions
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4876 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1300882a66b152d1e1c7113be0781d523a2d666f
Former-commit-id: 27bf81ea0279e58df2c73787bcb603d53b99750b
2012-08-19 08:29:28 +00:00
pouillot
126c13b37b Re #721 Restored default automatic SVN revision detection (commented-out by mistake)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4875 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 15d7f0e36679afa1f3f27a4d7800117e12c6fcac
Former-commit-id: cadbcd06cb785a2707e4b55352dcf6d160efad71
2012-08-19 08:18:52 +00:00
area42
240adef05e Improved SC Cavallo wheel textures for drivers
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4873 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 70ad0070f4968c76dcabf68a73e4b30bb367047e
Former-commit-id: 1d275fb78cc5dd1bae6c09c88f6ad5e37006760d
2012-08-18 10:12:07 +00:00
kmetykog
9dc06846f1 Re #691: fixed bug - needs testing (Boris)
o renamed and simplified allocTexChannelArrays() method
o added copying of texture names of additional channels
o added copying of vertex and texture coord arrays of additional channels

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4871 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 461c009f4bc34fd8e6b59c1dd797082eab4be2cf
Former-commit-id: 5d139ef6f45670b2a624028f9189a855ceff9134
2012-08-17 22:12:57 +00:00
kmetykog
e6c20fd69f Re #691: splitOb(): put new utility methods to use in splitOb() (Boris)
Now the splitting of texture channel arrays is encapsulated in
separate functions. This way adding new texture channels
for splitting is done mostly outside of splitOb() itself.

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4870 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d8a5924d34ca4a93171dc77f352edfed47b96d97
Former-commit-id: ede10ea47eb3869d34a060aa4f6d986af8549968
2012-08-17 22:12:24 +00:00
kmetykog
50da3edbb1 Re #691: added some utility functions (Boris)
o copySingleVertexData() to copy data of a single vertex b/w objects
o clearSavedInVertexArrayEntry() to clear the saved flag in all texture channels of vertexarrays
o allocTexChannelArrays() to create vertexarray and textarray for a given channel in the target object

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4869 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: bc148a8d95dccd059d959551b397bcdabe22c420
Former-commit-id: 6f60ce66dd91768e69116eb2c8bd1f35d888e17b
2012-08-17 22:12:01 +00:00
kmetykog
0832c9de6c Re #691: added storeTexCoord() function (Boris)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4868 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: b9246ccf41dcf29d7706ec42279ab1b39a1eef7c
Former-commit-id: 27e7d4cf2407b38e170731c504cfd64f247429d0
2012-08-17 22:11:42 +00:00
kmetykog
6294dd78ff Re #691: splitOb() refactored some arrays into structure ob_t (Boris)
o removed some arrays, that are actually part of an object
o rewrote also createObjectSplitCopy() to work on an object instead of arrays

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4867 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a51e392cd3ac638111a7011143324cf29c4e13d3
Former-commit-id: a52e33d9472dc1ee31d322c5e03f323185883493
2012-08-17 22:11:20 +00:00
kmetykog
71d3ba588a Re #691: added copyTexCoord() function (Boris)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4866 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 67d252401674b9803fb9a2faf6587f89b15298ff
Former-commit-id: 1506ddb0d0f65885ebe6e3350e30ceb602bc51cb
2012-08-17 22:10:55 +00:00
kmetykog
976ebb0aba Re #691: splitOb() moved object creation to separate function (Boris)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4865 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 9430918c5162246526cefa8483b7e34666a95da0
Former-commit-id: 0ca31d91d2ed9688061553f676013bdb5124c9b4
2012-08-17 22:10:00 +00:00
kmetykog
1ce22f4bfb Re #691: splitOb() moved split object creation to separate function (Boris)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4864 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 55685809b75eed031f818b32cb1bbddfd7f275c5
Former-commit-id: 101882d74653edd6065dde6b80d219288c11eae5
2012-08-17 22:09:17 +00:00
kmetykog
2cee97cb81 Re #691: refactored splitOb() (Boris)
o refactored all <bla>{1,2,3} things into constant arrays
o pushed those into for-loops to make code more compact
o added function copyPoint()

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4863 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: ed68dd24fa48c7da86875a9d9f8e5c109d7da2a7
Former-commit-id: 0b600de6f9148cd51207fcb68585e370e4406619
2012-08-17 22:08:22 +00:00