simon-git: puzzles (master): Simon Tatham

Commits to Tartarus CVS repository. tartarus-commits at lists.tartarus.org
Mon May 11 12:54:48 BST 2015


TL;DR:
  7cf1e1f Fixed a typo in a comment
  6684bec Always use ret instead of state in execute_move
  155607b Use the game_state and space typedefs
  774395d Moved all function declarations to the top of the file
  4fa5df1 Draw the opposite arrow only while dragging
  83318d4 Add/remove the opposite arrow when you let go
  3768ed6 Fix the issue with adding only one arrow when the other end was already white
  bef1b2c Mark some arguments constant
  3627111 Fix the extra arrow hanging around while moving the opposite existing arrow
  f49c7f5 Handle replacing an existing arrow

Repository:     git://git.tartarus.org/simon/puzzles.git
On the web:     http://tartarus.org/~simon-git/gitweb/?p=puzzles.git
Branch updated: master
Committer:      Simon Tatham <anakin at pobox.com>
Date:           2015-05-11 12:54:48

commit 7cf1e1f83ec8242372d330581a14276b3667468c
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=7cf1e1f83ec8242372d330581a14276b3667468c;hp=52a0f3c32af1861ceda910722549115f8a2b1cae
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sun May 3 12:40:14 2015 -0500

    Fixed a typo in a comment

 galaxies.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6684bec60c13f83cfd9c097d03c65e6c99d52993
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=6684bec60c13f83cfd9c097d03c65e6c99d52993;hp=7cf1e1f83ec8242372d330581a14276b3667468c
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sun May 3 12:40:14 2015 -0500

    Always use ret instead of state in execute_move

 galaxies.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 155607b768bee2284bab05fc02aea9f4b342465f
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=155607b768bee2284bab05fc02aea9f4b342465f;hp=6684bec60c13f83cfd9c097d03c65e6c99d52993
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sat May 9 21:36:44 2015 -0500

    Use the game_state and space typedefs

 galaxies.c |   49 +++++++++++++++++++++++--------------------------
 1 file changed, 23 insertions(+), 26 deletions(-)

commit 774395d37366e52113c434173295db682d7d37e9
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=774395d37366e52113c434173295db682d7d37e9;hp=155607b768bee2284bab05fc02aea9f4b342465f
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sat May 9 18:51:00 2015 -0500

    Moved all function declarations to the top of the file

 galaxies.c |   14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

commit 4fa5df1cba340cf1239c68a8553af2fa61e072ab
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=4fa5df1cba340cf1239c68a8553af2fa61e072ab;hp=774395d37366e52113c434173295db682d7d37e9
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sun May 3 10:46:07 2015 -0500

    Draw the opposite arrow only while dragging

 galaxies.c |   31 +++++++++++++++++++++++++++++--
 1 file changed, 29 insertions(+), 2 deletions(-)

commit 83318d4218c6eca6535e70f136dd68ff60702eb0
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=83318d4218c6eca6535e70f136dd68ff60702eb0;hp=4fa5df1cba340cf1239c68a8553af2fa61e072ab
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sun May 3 10:46:07 2015 -0500

    Add/remove the opposite arrow when you let go

 galaxies.c |   45 +++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 43 insertions(+), 2 deletions(-)

commit 3768ed65f281400f5fcdd6e2192e154a6661c0f8
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=3768ed65f281400f5fcdd6e2192e154a6661c0f8;hp=83318d4218c6eca6535e70f136dd68ff60702eb0
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sat May 9 18:51:00 2015 -0500

    Fix the issue with adding only one arrow when the other end was already white

 galaxies.c |   13 +++++++++++++
 1 file changed, 13 insertions(+)

commit bef1b2c59b443a2778a01e6c167e29ee9670603a
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=bef1b2c59b443a2778a01e6c167e29ee9670603a;hp=3768ed65f281400f5fcdd6e2192e154a6661c0f8
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sat May 9 21:05:18 2015 -0500

    Mark some arguments constant

 galaxies.c |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 3627111c5210a5b134b0e8c43b90eed07ca2e17c
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=3627111c5210a5b134b0e8c43b90eed07ca2e17c;hp=bef1b2c59b443a2778a01e6c167e29ee9670603a
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sat May 9 19:11:02 2015 -0500

    Fix the extra arrow hanging around while moving the opposite existing arrow

 galaxies.c |   11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit f49c7f530cfc5f0cc988be265e243e074279b761
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=f49c7f530cfc5f0cc988be265e243e074279b761;hp=3627111c5210a5b134b0e8c43b90eed07ca2e17c
Author: Kevin Lyles <kevinlyles at gmail.com>
Date:   Sat May 9 19:16:24 2015 -0500

    Handle replacing an existing arrow

 galaxies.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)



More information about the tartarus-commits mailing list