ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk/games
Revision 3601 - Directory Listing - [select for diffs]
Modified Sat Jan 8 16:08:45 2011 UTC (13 years, 4 months ago) by laffer1
Diff to previous 2825
fix some bugs found by NetBSD and FreeBSD projects.  Remove 4 clause ucb

Revision 2825 - Directory Listing - [select for diffs]
Modified Wed Apr 15 20:58:12 2009 UTC (15 years ago) by laffer1
Diff to previous 2783
don't need mytinfo.. unbreak world

Revision 2783 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:41:56 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2782
add robots and rogue from dragonfly

Revision 2782 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:39:38 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2781
add rain from dragonfly

Revision 2781 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:38:09 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2780
add piano from dragonfly

Revision 2780 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:36:32 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2779
add larn datfiles

Revision 2779 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:36:08 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2778
add larn

Revision 2778 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:34:13 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2777
add dungeon master

Revision 2777 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:32:14 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2776
add bs from dragonfly

Revision 2776 - Directory Listing - [select for diffs]
Modified Sun Apr 12 01:30:35 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2775
*** empty log message ***

Revision 2775 - Directory Listing - [select for diffs]
Modified Sun Apr 12 00:47:15 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2774
add hangman from dragonfly

Revision 2774 - Directory Listing - [select for diffs]
Modified Sun Apr 12 00:20:26 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2773
Go fish!

Revision 2773 - Directory Listing - [select for diffs]
Modified Sat Apr 11 23:50:58 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2772
add snake from dragonfly

Revision 2772 - Directory Listing - [select for diffs]
Modified Sat Apr 11 23:50:18 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2771
add snake from Dragonfly

Revision 2771 - Directory Listing - [select for diffs]
Modified Sat Apr 11 23:47:25 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2766
add pig game from Dragonfly

Revision 2766 - Directory Listing - [select for diffs]
Modified Sat Apr 11 17:09:34 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2765
who doesn't love wargames

Revision 2765 - Directory Listing - [select for diffs]
Modified Sat Apr 11 17:06:28 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2764
add worm, worms, wump from DragonFly

Revision 2764 - Directory Listing - [select for diffs]
Modified Sat Apr 11 17:01:12 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2763
add trek from Dragonfly :)

Revision 2763 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:58:38 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2762
$MidnightBSD$

At some point we should revisit this and move over to the newer tty handling code so COMPAT_43 isn't needed.

Revision 2762 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:55:25 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2761
$MidnightBSD$

Revision 2761 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:52:49 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2760
$MidnightBSD$

Switch to NO_MAN

Revision 2760 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:49:47 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2759
add backgammon game from DragonFly

Revision 2759 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:46:04 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2758
Add battlestar game from DragonFly

Revision 2758 - Directory Listing - [select for diffs]
Modified Sat Apr 11 16:32:15 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 2700
add arithmetic game from DragonFly.

Revision 2700 - Directory Listing - [select for diffs]
Modified Sun Mar 29 03:08:47 2009 UTC (15 years, 1 month ago) by laffer1
Diff to previous 1153
remove freebsd-tips.  The idea is sound, but we should really make our own down the road

Revision 1153 - Directory Listing - [select for diffs]
Modified Wed Aug 8 02:27:19 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1152
Forced commit to add:

 The changes in the randomize_fd.c are pretty simple: Basically in the older algorithm you had to
walk thru the whole list element-by-element in order to reach an specific line and print it. This
process is rather slow in big lists (big files :)), since it had to go all the way from the head
of the list until it reached the element it randomly selected.
 The new algorithm only changes the way we access the elements, basically after the whole file is
loaded up into the linked-list, we create an array of pointers to rand_node pointers, basically we
walk over the whole list once (after the whole file is loaded into the list) and map each address
into an array position (in the same order they were inserted on the list), after that whenever a
random number is selected, we dont need to walk the whole list until we reach it, we simply
rand_node_table[selected] it and get it in one move.
 If the unique option is used, after a rand_node_table[selected] gets visited we set it to NULL
and if we reach that same slot afterwards, we simply go back and randomly select another number.
 Pretty simple.

 victor loureiro lima

Revision 1152 - Directory Listing - [select for diffs]
Modified Wed Aug 8 02:20:32 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1149
Add submitted patch that has been sitting in my inbox for over six months.

Revision 1149 - Directory Listing - [select for diffs]
Modified Tue Aug 7 06:16:23 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1056
Fix a tagging goof

Revision 1056 - Directory Listing - [select for diffs]
Modified Thu Jul 19 07:54:18 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1054
Undo some of the damage from our "helpful" script

Revision 1054 - Directory Listing - [select for diffs]
Modified Thu Jul 19 04:54:07 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1043
Correct bug in script adding $MidnightBSD$

Revision 1043 - Directory Listing - [select for diffs]
Modified Tue Jul 17 10:36:11 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1042
$MidnightBSD$

Revision 1042 - Directory Listing - [select for diffs]
Modified Tue Jul 17 10:25:13 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1041
$MidnightBSD$

Revision 1041 - Directory Listing - [select for diffs]
Modified Tue Jul 17 10:11:11 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1040
$MidnightBSD$

Revision 1040 - Directory Listing - [select for diffs]
Modified Tue Jul 17 09:48:29 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 1039
$MidnightBSD$

Revision 1039 - Directory Listing - [select for diffs]
Modified Tue Jul 17 09:25:07 2007 UTC (16 years, 9 months ago) by laffer1
Diff to previous 6
$MidnightBSD$

Revision 6 - Directory Listing - [select for diffs]
Modified Sat Feb 25 02:38:42 2006 UTC (18 years, 2 months ago) by laffer1
Diff to previous 3
This commit was generated by cvs2svn to compensate for changes in r5, which
included commits to RCS files with non-trunk default branches.
Revision 3 - Directory Listing - [select for diffs]
Added Sat Feb 25 02:29:52 2006 UTC (18 years, 2 months ago) by laffer1
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches.

Convenience Links