castleraider

changeset 316:2fcaa1b4c711

Minor changes to the story and code comments. Made the build script more verbose. Added an item to the To Do list.
author David Boddie <david@boddie.org.uk>
date Sun Sep 21 23:55:27 2014 +0200
parents 74ace2757d84
children 0189eca0359e
files README.txt TODO.txt UEFfile.py build.py
diffstat 4 files changed, 15 insertions(+), 7 deletions(-) [+]
line diff
     1.1 --- a/README.txt	Sat Aug 09 18:27:13 2014 +0200
     1.2 +++ b/README.txt	Sun Sep 21 23:55:27 2014 +0200
     1.3 @@ -13,12 +13,10 @@
     1.4  berth during their march here. The people in the nearby villages can sleep
     1.5  soundly for a change.
     1.6  
     1.7 -One of the members of the watch begins to slowly climb the stairs to the top
     1.8 -of the wall; the others crowd together by the guard house, conducting some kind
     1.9 -of business with a few of the new arrivals. Taking your chance, you slip
    1.10 -through the open gate and take refuge in the long shadows fleeing the sunset.
    1.11 -The few eyes looking in your direction are hardly able to make out your form
    1.12 -as you wait for the approaching nightfall.
    1.13 +As the members of the night watch slowly start the climb up onto the ramparts
    1.14 +you take your chance and slip through the open gate, taking refuge in the long
    1.15 +shadows fleeing the sunset. The few eyes looking in your direction are hardly
    1.16 +able to make out your form as you wait for the approaching nightfall.
    1.17  
    1.18  You recall the stories told when you were young. When the town itself was old,
    1.19  the last of the elders told of a time when it was still a village, not much
     2.1 --- a/TODO.txt	Sat Aug 09 18:27:13 2014 +0200
     2.2 +++ b/TODO.txt	Sun Sep 21 23:55:27 2014 +0200
     2.3 @@ -1,5 +1,6 @@
     2.4  To Do
     2.5  
     2.6 +Fix clearing of the right hand side of the treasure chest on restart.
     2.7  Game over screen.
     2.8  Finishing screens.
     2.9  Music?
     3.1 --- a/UEFfile.py	Sat Aug 09 18:27:13 2014 +0200
     3.2 +++ b/UEFfile.py	Sun Sep 21 23:55:27 2014 +0200
     3.3 @@ -863,7 +863,7 @@
     3.4  
     3.5      def export_files(self, file_positions):
     3.6          """
     3.7 -        Given a file's location of the list of contents, returns its name,
     3.8 +        Given a file's location in the list of contents, returns its name,
     3.9          load and execution addresses, and the data contained in the file.
    3.10          If positions is an integer then return a tuple
    3.11  
     4.1 --- a/build.py	Sat Aug 09 18:27:13 2014 +0200
     4.2 +++ b/build.py	Sun Sep 21 23:55:27 2014 +0200
     4.3 @@ -798,6 +798,9 @@
     4.4          except UEFfile.UEFfile_error:
     4.5              sys.stderr.write("Couldn't write the new executable to %s.\n" % out_file)
     4.6              sys.exit(1)
     4.7 +        
     4.8 +        print
     4.9 +        print "Written", out_file
    4.10      
    4.11      elif make_adfs_image:
    4.12      
    4.13 @@ -817,6 +820,9 @@
    4.14          disk.file.seek(0, 0)
    4.15          disk_data = disk.file.read()
    4.16          open(out_file, "w").write(disk_data)
    4.17 +        
    4.18 +        print
    4.19 +        print "Written", out_file
    4.20      
    4.21      elif make_dfs_image:
    4.22      
    4.23 @@ -839,6 +845,9 @@
    4.24          disk.file.seek(0, 0)
    4.25          disk_data = disk.file.read()
    4.26          open(out_file, "w").write(disk_data)
    4.27 +        
    4.28 +        print
    4.29 +        print "Written", out_file
    4.30      
    4.31      # Exit
    4.32      sys.exit()