[Warzone2100-commits] mainline - pre-3.0: 1 commits.

2010-10-13 Thread Giel van Schijndel
Commit: a38f754b77c3c3dd3276dca58ea350b19fe301b2

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 00:10:03 2010 +0200

scriptfuncs: store (possibly) signed values in signed variables

Store map coordinates in a pair of signed integers as that's how
map_coord returns them.

Signed-off-by: Giel van Schijndel g...@wz2100.net

 src/scriptfuncs.c |3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] mainline - master: 1 commits.

2010-10-13 Thread Giel van Schijndel
Commit: 10f2bdede638766ed0ea198d750a00af95fbf110

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 00:10:03 2010 +0200

scriptfuncs: store (possibly) signed values in signed variables

Store map coordinates in a pair of signed integers as that's how
map_coord returns them.

Signed-off-by: Giel van Schijndel g...@wz2100.net

 src/scriptfuncs.c |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] mainline - master: 1 commits.

2010-10-13 Thread Cyp
Commit: 569fb996937bcfcab5547cb44431f781bcaa3b4b

Trac URL:   
http://developer.wz2100.net/changeset/569fb996937bcfcab5547cb44431f781bcaa3b4b

Author: Cyp c...@wz2100.net
Date:   Sun Oct 10 17:18:13 2010 +0200

Also fix MSVC *.vcproj files that somehow ended up in lib/ instead of win32/, 
remove the last part that touches macosx.

 fixcppbuild |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fixcppbuild b/fixcppbuild
index 7cfbce3..6a4d5ea 100755
--- a/fixcppbuild
+++ b/fixcppbuild
@@ -8,7 +8,7 @@ do
then
#echo Checking $a
sed -i s/\\b${b//\//}\\b/${a//\//}/ win32/*.vcproj
-   sed -i s/\\b$d\\b/$c/ 
{src,lib/*}/{Makefile.am,makefile.win32} 
macosx/Warzone.xcodeproj/project.pbxproj
+   sed -i s/\\b$d\\b/$c/ 
{src,lib/*}/{Makefile.am,makefile.win32} lib/*/*.vcproj
else
echo Skipping $a.
fi


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, master, updated. 0d2dbdbaef02c900b557baa31627c3d23e762d21

2010-10-13 Thread Giel van Schijndel
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, master has been updated
   via  0d2dbdbaef02c900b557baa31627c3d23e762d21 (commit)
   via  6e509622c2895bc991215a603d61fe1a040aad7f (commit)
   via  5ab267ab71d8e389ea19a68558cf460cce55e2c4 (commit)
   via  681988a5d4b377b41d4c823f6e3580ff7a346d83 (commit)
   via  5a51986e65065e0f583893813999e562b28f3458 (commit)
   via  e278f01bcdec5f89425b693e830a472499d40dd7 (commit)
   via  569fb996937bcfcab5547cb44431f781bcaa3b4b (commit)
  from  10f2bdede638766ed0ea198d750a00af95fbf110 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 0d2dbdbaef02c900b557baa31627c3d23e762d21
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 21:25:26 2010 +0200

Replace rendSurface related bitshifts with divisions

These cases of bitshifting are premature optimisations ''only'',
especially since they obscure what's really going on (finding the center
of a range).

Signed-off-by: Giel van Schijndel g...@wz2100.net

commit 6e509622c2895bc991215a603d61fe1a040aad7f
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 20:25:57 2010 +0200

move global rendSurface to piemode.c

rendSurface isn't used by rendmode.c, so define it in piemode.c where it
is both used and its contents are defined.

Additionally remove unnecessary #includes from rendmode.h and include
the correct headers at places where rendmode.h was included.

Signed-off-by: Giel van Schijndel g...@wz2100.net

commit 5ab267ab71d8e389ea19a68558cf460cce55e2c4
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 19:21:32 2010 +0200

Remove pointer global psRendSurface

Global pointer psRendSurface only ever contains rendSurface (another
global), provided that it isn't undefined (isn't statically NULL
initialised).  So replace the use of this pointer with using
rendSurface.

Additionally remove function iV_RenderAssign, which only wraps the
psRendSurface assignment along with a debug() call, and inline it at its
only call-site.

Signed-off-by: Giel van Schijndel g...@wz2100.net

commit 681988a5d4b377b41d4c823f6e3580ff7a346d83
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 18:51:58 2010 +0200

Remove unused constant PIE_NO_CULL

Signed-off-by: Giel van Schijndel g...@wz2100.net

commit 5a51986e65065e0f583893813999e562b28f3458
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 18:50:12 2010 +0200

Get rid of double pie_/iV_ names for the same functions

Signed-off-by: Giel van Schijndel g...@wz2100.net

commit e278f01bcdec5f89425b693e830a472499d40dd7
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 18:22:45 2010 +0200

remove write-only variable iSurface.flags

Remove the write only member variable `flags` from struct iSurface.

Additionally remove the macros REND_SURFACE_(UNDEFINED|SCREEN|USR) which
were only used to assign to the `flags` variable.

Signed-off-by: Giel van Schijndel g...@wz2100.net

commit 569fb996937bcfcab5547cb44431f781bcaa3b4b
Author: Cyp c...@wz2100.net
Date:   Sun Oct 10 17:18:13 2010 +0200

Also fix MSVC *.vcproj files that somehow ended up in lib/ instead of 
win32/, remove the last part that touches macosx.

---

Summary of changes:
 fixcppbuild   |2 +-
 lib/ivis_common/imdload.c |1 -
 lib/ivis_common/ivisdef.h |1 -
 lib/ivis_common/pieblitfunc.h |   10 +++---
 lib/ivis_common/piemode.h |4 ++-
 lib/ivis_common/rendmode.h|   33 +---
 lib/ivis_opengl/pieblitfunc.c |   31 +++---
 lib/ivis_opengl/piedraw.c |1 -
 lib/ivis_opengl/piefunc.c |1 -
 lib/ivis_opengl/piematrix.c   |   14 +-
 lib/ivis_opengl/piemode.c |8 ++---
 lib/ivis_opengl/piepalette.c  |3 +-
 lib/ivis_opengl/piestate.c|2 +-
 lib/ivis_opengl/rendmode.c|   56 ++---
 lib/ivis_opengl/tex.c |1 -
 lib/ivis_opengl/textdraw.c|1 -
 lib/widget/bar.c  |2 +-
 lib/widget/button.c   |2 +-
 lib/widget/editbox.c  |2 +-
 lib/widget/form.c |2 +-
 lib/widget/label.c|1 -
 lib/widget/slider.c   |2 +-
 lib/widget/tip.c  |2 +-
 src/challenge.c   |3 +-
 src/console.c |3 +-
 src/design.c  |3 +-
 src/display3d.c   |4 +-
 src/drive.c   |2 -

[Warzone2100-commits] mainline - master: 6 commits.

2010-10-13 Thread Giel van Schijndel
Commit: e278f01bcdec5f89425b693e830a472499d40dd7

Trac URL:   
http://developer.wz2100.net/changeset/e278f01bcdec5f89425b693e830a472499d40dd7

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 18:22:45 2010 +0200

remove write-only variable iSurface.flags

Remove the write only member variable `flags` from struct iSurface.

Additionally remove the macros REND_SURFACE_(UNDEFINED|SCREEN|USR) which
were only used to assign to the `flags` variable.

Signed-off-by: Giel van Schijndel g...@wz2100.net

 lib/ivis_common/ivisdef.h  |1 -
 lib/ivis_common/rendmode.h |8 +---
 lib/ivis_opengl/piemode.c  |3 ---
 lib/ivis_opengl/rendmode.c |9 -
 src/intdisplay.c   |8 
 5 files changed, 9 insertions(+), 20 deletions(-)


-

Commit: 5a51986e65065e0f583893813999e562b28f3458

Trac URL:   
http://developer.wz2100.net/changeset/5a51986e65065e0f583893813999e562b28f3458

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 18:50:12 2010 +0200

Get rid of double pie_/iV_ names for the same functions

Signed-off-by: Giel van Schijndel g...@wz2100.net

 lib/ivis_common/pieblitfunc.h |   10 +-
 lib/ivis_common/rendmode.h|9 -
 lib/ivis_opengl/pieblitfunc.c |   10 +-
 src/intdisplay.c  |4 ++--
 4 files changed, 12 insertions(+), 21 deletions(-)


-

Commit: 681988a5d4b377b41d4c823f6e3580ff7a346d83

Trac URL:   
http://developer.wz2100.net/changeset/681988a5d4b377b41d4c823f6e3580ff7a346d83

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 18:51:58 2010 +0200

Remove unused constant PIE_NO_CULL

Signed-off-by: Giel van Schijndel g...@wz2100.net

 lib/ivis_common/rendmode.h |7 ---
 1 files changed, 0 insertions(+), 7 deletions(-)


-

Commit: 5ab267ab71d8e389ea19a68558cf460cce55e2c4

Trac URL:   
http://developer.wz2100.net/changeset/5ab267ab71d8e389ea19a68558cf460cce55e2c4

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 19:21:32 2010 +0200

Remove pointer global psRendSurface

Global pointer psRendSurface only ever contains rendSurface (another
global), provided that it isn't undefined (isn't statically NULL
initialised).  So replace the use of this pointer with using
rendSurface.

Additionally remove function iV_RenderAssign, which only wraps the
psRendSurface assignment along with a debug() call, and inline it at its
only call-site.

Signed-off-by: Giel van Schijndel g...@wz2100.net

 lib/ivis_common/rendmode.h|2 --
 lib/ivis_opengl/pieblitfunc.c |   20 ++--
 lib/ivis_opengl/piematrix.c   |   12 ++--
 lib/ivis_opengl/piemode.c |2 +-
 lib/ivis_opengl/rendmode.c|   27 +--
 5 files changed, 18 insertions(+), 45 deletions(-)


-

Commit: 6e509622c2895bc991215a603d61fe1a040aad7f

Trac URL:   
http://developer.wz2100.net/changeset/6e509622c2895bc991215a603d61fe1a040aad7f

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 20:25:57 2010 +0200

move global rendSurface to piemode.c

rendSurface isn't used by rendmode.c, so define it in piemode.c where it
is both used and its contents are defined.

Additionally remove unnecessary #includes from rendmode.h and include
the correct headers at places where rendmode.h was included.

Signed-off-by: Giel van Schijndel g...@wz2100.net

 lib/ivis_common/imdload.c |1 -
 lib/ivis_common/piemode.h |4 +++-
 lib/ivis_common/rendmode.h|7 ---
 lib/ivis_opengl/pieblitfunc.c |1 -
 lib/ivis_opengl/piedraw.c |1 -
 lib/ivis_opengl/piefunc.c |1 -
 lib/ivis_opengl/piematrix.c   |2 +-
 lib/ivis_opengl/piemode.c |3 ++-
 lib/ivis_opengl/piepalette.c  |3 +--
 lib/ivis_opengl/piestate.c|2 +-
 lib/ivis_opengl/rendmode.c|   20 +++-
 lib/ivis_opengl/tex.c |1 -
 lib/ivis_opengl/textdraw.c|1 -
 lib/widget/bar.c  |2 +-
 lib/widget/button.c   |2 +-
 lib/widget/editbox.c  |2 +-
 lib/widget/form.c |2 +-
 lib/widget/label.c|1 -
 lib/widget/slider.c   |2 +-
 lib/widget/tip.c  |2 +-
 src/challenge.c   |3 ++-
 src/console.c |3 ++-
 src/design.c  |3 ++-
 src/display3d.c   |2 +-
 src/drive.c   |2 --
 src/frontend.c|3 ++-
 src/game.c|2 +-
 src/hci.c |3 ++-
 src/ingameop.c|1 -
 src/init.c|1 -
 src/intdisplay.c  |1 +
 src/intelmap.c|2 +-
 src/intimage.c|4 +++-
 src/keybind.c |1 -
 src/loadsave.c|3 ++-
 src/loop.c|3 +--
 src/main.c   

[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, master, updated. b5fb5bacf883cac1b1557404cb1d8bb1c6abb063

2010-10-13 Thread Giel van Schijndel
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, master has been updated
   via  b5fb5bacf883cac1b1557404cb1d8bb1c6abb063 (commit)
  from  0d2dbdbaef02c900b557baa31627c3d23e762d21 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit b5fb5bacf883cac1b1557404cb1d8bb1c6abb063
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 22:09:31 2010 +0200

remove write-only variables buffer and size from iSurface

Signed-off-by: Giel van Schijndel g...@wz2100.net

---

Summary of changes:
 lib/ivis_common/ivisdef.h  |3 ---
 lib/ivis_common/rendmode.h |2 +-
 lib/ivis_opengl/piemode.c  |   12 +++-
 lib/ivis_opengl/rendmode.c |7 +--
 src/intdisplay.c   |8 
 5 files changed, 9 insertions(+), 23 deletions(-)


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] mainline - master: 1 commits.

2010-10-13 Thread Giel van Schijndel
Commit: b5fb5bacf883cac1b1557404cb1d8bb1c6abb063

Trac URL:   
http://developer.wz2100.net/changeset/b5fb5bacf883cac1b1557404cb1d8bb1c6abb063

Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 22:09:31 2010 +0200

remove write-only variables buffer and size from iSurface

Signed-off-by: Giel van Schijndel g...@wz2100.net

 lib/ivis_common/ivisdef.h  |3 ---
 lib/ivis_common/rendmode.h |2 +-
 lib/ivis_opengl/piemode.c  |   12 +++-
 lib/ivis_opengl/rendmode.c |7 +--
 src/intdisplay.c   |8 
 5 files changed, 9 insertions(+), 23 deletions(-)


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, 2.3-terrainTCmask, deleted. 1cbf8faa272faad3a682531a2797760abf7d117e

2010-10-13 Thread dak180
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, 2.3-terrainTCmask has been deleted
   was  1cbf8faa272faad3a682531a2797760abf7d117e

---
1cbf8faa272faad3a682531a2797760abf7d117e Last test.
---


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, 2.3-terrainTCmask, created. 1cbf8faa272faad3a682531a2797760abf7d117e

2010-10-13 Thread dak180
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, 2.3-terrainTCmask has been created
at  1cbf8faa272faad3a682531a2797760abf7d117e (commit)

- Log -
commit 1cbf8faa272faad3a682531a2797760abf7d117e
Author: buginator bugina...@gna.org
Date:   Mon Sep 27 23:07:09 2010 -0400

Last test.

commit f0f5bafffc5865f0604d60ff8372e5a00c0acc0a
Author: buginator bugina...@gna.org
Date:   Mon Sep 27 23:02:37 2010 -0400

Just another change to test how the bot handles the sync

commit 3d6847bbb82717d427c9a7243ec00db589f7189e
Author: buginator bugina...@gna.org
Date:   Mon Sep 27 21:55:45 2010 -0400

Update for MSVC

---


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, 2.3-terrainTCmask, deleted. 1cbf8faa272faad3a682531a2797760abf7d117e

2010-10-13 Thread dak180
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, 2.3-terrainTCmask has been deleted
   was  1cbf8faa272faad3a682531a2797760abf7d117e

---
1cbf8faa272faad3a682531a2797760abf7d117e Last test.
---


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, master, updated. 5457aefde6d3259f37c04020843d208900c817ed

2010-10-13 Thread Giel van Schijndel
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, master has been updated
   via  5457aefde6d3259f37c04020843d208900c817ed (commit)
  from  b5fb5bacf883cac1b1557404cb1d8bb1c6abb063 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 5457aefde6d3259f37c04020843d208900c817ed
Author: Giel van Schijndel g...@wz2100.net
Date:   Wed Oct 13 22:47:04 2010 +0200

Turn global geoOffset into a constant

geoOffset is only ever intialised to 192 so make it a constant instead
of a variable.

Signed-off-by: Giel van Schijndel g...@wz2100.net

---

Summary of changes:
 src/display3d.c |6 ++
 src/display3d.h |1 -
 src/keybind.c   |   17 -
 src/keybind.h   |2 --
 src/keymap.c|2 --
 5 files changed, 2 insertions(+), 26 deletions(-)


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, master, updated. e5c398b141c41f80eddcdf2f265addbb27d7de2d

2010-10-13 Thread dak180
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, master has been updated
   via  e5c398b141c41f80eddcdf2f265addbb27d7de2d (commit)
   via  20924b59a49c6ae72417b0cf124bc3ddee5f28f7 (commit)
  from  5457aefde6d3259f37c04020843d208900c817ed (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit e5c398b141c41f80eddcdf2f265addbb27d7de2d
Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 17:10:48 2010 -0400

Some 64bit prep.

--HG--
extra : rebase_source : b84622c5ee3ddfda891d561327bd4c99a8642362

commit 20924b59a49c6ae72417b0cf124bc3ddee5f28f7
Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 17:09:51 2010 -0400

Clean up things that are no longer used.

--HG--
extra : rebase_source : 544022e1eeeac8e22d03d0a59cd98ddb9c220a51

---

Summary of changes:
 macosx/Warzone.xcodeproj/project.pbxproj |   75 +-
 macosx/configs/Bison-All.xcconfig|7 ---
 macosx/configs/Bison-Debug.xcconfig  |   10 
 macosx/configs/Bison-Release.xcconfig|9 
 macosx/configs/Popt-All.xcconfig |   17 ---
 macosx/configs/Popt-Debug.xcconfig   |   11 
 macosx/configs/Popt-Release.xcconfig |9 
 macosx/configs/Project-All.xcconfig  |2 +
 macosx/configs/bison.sh  |   15 --
 9 files changed, 3 insertions(+), 152 deletions(-)
 delete mode 100644 macosx/configs/Bison-All.xcconfig
 delete mode 100644 macosx/configs/Bison-Debug.xcconfig
 delete mode 100644 macosx/configs/Bison-Release.xcconfig
 delete mode 100644 macosx/configs/Popt-All.xcconfig
 delete mode 100644 macosx/configs/Popt-Debug.xcconfig
 delete mode 100644 macosx/configs/Popt-Release.xcconfig
 delete mode 100755 macosx/configs/bison.sh


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] mainline - master: 2 commits.

2010-10-13 Thread dak180
Commit: 20924b59a49c6ae72417b0cf124bc3ddee5f28f7

Trac URL:   
http://developer.wz2100.net/changeset/20924b59a49c6ae72417b0cf124bc3ddee5f28f7

Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 17:09:51 2010 -0400

Clean up things that are no longer used.

--HG--
extra : rebase_source : 544022e1eeeac8e22d03d0a59cd98ddb9c220a51

 macosx/Warzone.xcodeproj/project.pbxproj |   75 +-
 macosx/configs/Bison-All.xcconfig|7 ---
 macosx/configs/Bison-Debug.xcconfig  |   10 
 macosx/configs/Bison-Release.xcconfig|9 
 macosx/configs/Popt-All.xcconfig |   17 ---
 macosx/configs/Popt-Debug.xcconfig   |   11 
 macosx/configs/Popt-Release.xcconfig |9 
 macosx/configs/bison.sh  |   15 --
 8 files changed, 1 insertions(+), 152 deletions(-)


-

Commit: e5c398b141c41f80eddcdf2f265addbb27d7de2d

Trac URL:   
http://developer.wz2100.net/changeset/e5c398b141c41f80eddcdf2f265addbb27d7de2d

Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 17:10:48 2010 -0400

Some 64bit prep.

--HG--
extra : rebase_source : b84622c5ee3ddfda891d561327bd4c99a8642362

 macosx/configs/Project-All.xcconfig |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] mainline - pre-3.0: 1 commits.

2010-10-13 Thread buginator
Commit: 696f6c251fe9359041e0905207843f79f0ee1d2a

Trac URL:   
http://developer.wz2100.net/changeset/696f6c251fe9359041e0905207843f79f0ee1d2a

Author: buginator bugina...@gna.org
Date:   Wed Oct 13 14:45:22 2010 -0400

Externalize the former anonymous enum members for each tileset.
This now allows switching between texture sets much easier than what
was previously possible.

NOTE: Files are currently set up for trunk's textures.

refs ticket:2013

 data/base/tileset/arizona_enum.txt |8 +
 data/base/tileset/rockie_enum.txt  |   10 ++
 data/base/tileset/urban_enum.txt   |9 +
 src/map.c  |  308 +++-
 4 files changed, 189 insertions(+), 146 deletions(-)


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, master, updated. a31521f75eb1ec4a27d04667ab46d06488437381

2010-10-13 Thread dak180
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, master has been updated
   via  a31521f75eb1ec4a27d04667ab46d06488437381 (commit)
  from  e5c398b141c41f80eddcdf2f265addbb27d7de2d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit a31521f75eb1ec4a27d04667ab46d06488437381
Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 20:52:12 2010 -0400

Clean out extraneous linkage.

---

Summary of changes:
 macosx/Warzone.xcodeproj/project.pbxproj |   92 +-
 1 files changed, 40 insertions(+), 52 deletions(-)


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] [SF-Git]Warzone 2100 Project. branch, pre-3.0, updated. 53802260595264d97214355da0a4cd1a98476793

2010-10-13 Thread dak180
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project Warzone 2100 Project..

The branch, pre-3.0 has been updated
   via  53802260595264d97214355da0a4cd1a98476793 (commit)
   via  25d7988e585dd19cdcddec29c8f8e381e4b25566 (commit)
   via  696f6c251fe9359041e0905207843f79f0ee1d2a (commit)
  from  7ad8a22e20804bf4e4cdad73f55957e9843aed27 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 53802260595264d97214355da0a4cd1a98476793
Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 20:56:22 2010 -0400

Add a static analysis build setting.

commit 25d7988e585dd19cdcddec29c8f8e381e4b25566
Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 20:19:34 2010 -0400

Clean out extraneous linkage.

--HG--
extra : rebase_source : 7cea2752f1ecf792975d1429b487a4ee9940d51d

commit 696f6c251fe9359041e0905207843f79f0ee1d2a
Author: buginator bugina...@gna.org
Date:   Wed Oct 13 14:45:22 2010 -0400

Externalize the former anonymous enum members for each tileset.
This now allows switching between texture sets much easier than what
was previously possible.

NOTE: Files are currently set up for trunk's textures.

refs ticket:2013

---

Summary of changes:
 data/base/tileset/arizona_enum.txt   |8 +
 data/base/tileset/rockie_enum.txt|   10 +
 data/base/tileset/urban_enum.txt |9 +
 macosx/Warzone.xcodeproj/project.pbxproj |  224 --
 src/map.c|  308 --
 5 files changed, 356 insertions(+), 203 deletions(-)
 create mode 100644 data/base/tileset/arizona_enum.txt
 create mode 100644 data/base/tileset/rockie_enum.txt
 create mode 100644 data/base/tileset/urban_enum.txt


hooks/post-receive
-- 
Warzone 2100 Project.

--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] mainline - master: 1 commits.

2010-10-13 Thread dak180
Commit: a31521f75eb1ec4a27d04667ab46d06488437381

Trac URL:   
http://developer.wz2100.net/changeset/a31521f75eb1ec4a27d04667ab46d06488437381

Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 20:52:12 2010 -0400

Clean out extraneous linkage.

 macosx/Warzone.xcodeproj/project.pbxproj |   92 +-
 1 files changed, 40 insertions(+), 52 deletions(-)


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits


[Warzone2100-commits] mainline - pre-3.0: 2 commits.

2010-10-13 Thread dak180
Commit: 25d7988e585dd19cdcddec29c8f8e381e4b25566

Trac URL:   
http://developer.wz2100.net/changeset/25d7988e585dd19cdcddec29c8f8e381e4b25566

Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 20:19:34 2010 -0400

Clean out extraneous linkage.

--HG--
extra : rebase_source : 7cea2752f1ecf792975d1429b487a4ee9940d51d

 macosx/Warzone.xcodeproj/project.pbxproj |   98 -
 1 files changed, 41 insertions(+), 57 deletions(-)


-

Commit: 53802260595264d97214355da0a4cd1a98476793

Trac URL:   
http://developer.wz2100.net/changeset/53802260595264d97214355da0a4cd1a98476793

Author: dak180 dak...@users.sourceforge.net
Date:   Wed Oct 13 20:56:22 2010 -0400

Add a static analysis build setting.

 macosx/Warzone.xcodeproj/project.pbxproj |  126 ++
 1 files changed, 126 insertions(+), 0 deletions(-)


-


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
Warzone2100-commits mailing list
Warzone2100-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/warzone2100-commits