Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1102203
  • 博文数量: 25
  • 博客积分: 10535
  • 博客等级: 上将
  • 技术积分: 2746
  • 用 户 组: 普通用户
  • 注册时间: 2004-11-21 23:21
文章分类

全部博文(25)

文章存档

2011年(1)

2010年(3)

2009年(2)

2008年(19)

发布时间:2011-07-31 03:59:38

......【阅读全文】

阅读(1771) | 评论(0) | 转发(0)

发布时间:2010-02-14 15:14:41

......【阅读全文】

阅读(2205) | 评论(1) | 转发(0)

发布时间:2010-02-14 15:06:21

......【阅读全文】

阅读(2261) | 评论(0) | 转发(0)

发布时间:2010-02-12 23:35:15

......【阅读全文】

阅读(2175) | 评论(0) | 转发(0)

发布时间:2009-03-03 22:59:11

......【阅读全文】

阅读(2231) | 评论(2) | 转发(0)
给主人留下些什么吧!~~

yqh12032011-07-11 13:09

请问为什么关闭博客?

回复  |  举报

chinaunix网友2011-06-06 21:35

您的博客不能访问了!?

回复 |  删除 |  举报

chinaunix网友2010-10-25 06:21

Win_hate大哥,我这里有一个非常棘手的问题,您能帮我解决以下吗? Develop the Bin-Packing game. In this game there are seven kinds of tetras (4 block pieces). A tetra falls from just above the top of the 10x20 block grid at a constant rate and as it falls the user can navigate the tetra left and right and rotate the tetra. The tetra cannot be moved off of the grid and once it lands on the base of the grid or another tetra, it is frozen in position and a new tetra, of randomly selected kind, falls from the ceiling. The game is over as soon as a tetra lands but extends beyond the top of the grid. The game is scored by counting the number of blocks that have been fit onto the grid. Your game should support at least these keyboard commands: left arrow: Shift the current piece left. right arrow: Shift the current piece right. s: Rotate the current piece 90 degrees clockwise. a: Rotate the current piece 90 degrees counterclockwise. Here are the seven kinds of tetras and their names: "O" "I" "L" "J" "T" "Z" "S" This game is unlike Tetris in that blocks never go away. The following data definitions may or may not be useful (and indicative of the kind of operations you might want to develop) for writing this program: ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Data Definitions ;; A Block is a (make-block Number Number Color) (define-struct block (x y color)) ;; A Tetra is a (make-tetra Posn BSet) ;; The center point is the point around which the tetra rotates ;; when it spins. (define-struct tetra (center blocks)) ;; A Set of Blocks (BSet) is one of: ;; - empty ;; - (cons Block BSet) ;; Order does not matter. Repetitions are NOT allowed. ;; A World is a (make-world Tetra BSet) ;; The BSet represents the pile of blocks at the bottom of the screen. (define-struct world (tetra pile)) Rotations are difficult, so assuming the above data definitions, this code will perform a counterclockwise rotation of a block around a given point: ;; block-rotate-ccw : Posn Block -> Block ;; Rotate the block 90 counterclockwise around the posn. (define (block-rotate-ccw c b) (make-block (+ (posn-x c) (- (posn-y c) (block-y b))) (+ (posn-y c) (- (block-x b) (posn-x c))) (block-color b))) A clockwise rotation is just the same as three counterclockwise rotations. Some advice: Note that you must choose the rotation point for each tetra carefully: if the tetra's blocks are all grid aligned before the rotation, you want them to be grid-aligned after the rotation, too. For example, if you rotate the "long" tetra (four blocks in a horizontal straight line) around its exact center-point, it will wind up between two columns of the grid. If you set the rotation point as the center of either block 2 or block 3 in the tetra, then the long tetra will rotate a bit eccentrically, but blocks will always land on grid squares. You may implement more features, if you like (e.g., scoring, increasing difficulty, game pausing). However, extra features won't save you from points taken off if your code has bugs or isn't well written. You will not receive 100% credit simply for having code that works. For full credit, your code must work and be well written. So you should put your effort into writing clean, readable, bug-free code. You will be upgrading the game to full Tetris in a future assignment. So effort expended in making sure that your code is clean and well-written will be rewarded when you have to extend it later -- it is quite difficult to modify and extend code that is a snarled-up, confused pile of chaos. As always, we advise you that the Design Recipe will help you get your code written. 这是我们老师留给我们的一项作业,我们初学Scheme,这种问题对我来说有点难。。。希望您能帮我解决一下。。

回复 |  删除 |  举报

bluesea6662010-10-03 15:29

回复  |  举报

saintdragon2010-08-20 18:54

回复  |  举报
留言热议
请登录后留言。

登录 注册