Last change
on this file since 579 was
555,
checked in by Sam Hocevar, 11 years ago
|
ps3: make everything compile on the PS3. Of course, nothing links yet
because so much support is missing.
|
File size:
1.1 KB
|
Line | |
---|
1 | /* |
---|
2 | * Abuse - dark 2D side-scrolling platform game |
---|
3 | * Copyright (c) 1995 Crack dot Com |
---|
4 | * Copyright (c) 2005-2011 Sam Hocevar <sam@hocevar.net> |
---|
5 | * |
---|
6 | * This software was released into the Public Domain. As with most public |
---|
7 | * domain software, no warranty is made or implied by Crack dot Com, by |
---|
8 | * Jonathan Clark, or by Sam Hocevar. |
---|
9 | */ |
---|
10 | |
---|
11 | #if defined HAVE_CONFIG_H |
---|
12 | # include "config.h" |
---|
13 | #endif |
---|
14 | |
---|
15 | #include "crc.h" |
---|
16 | |
---|
17 | uint16_t calc_crc(uint8_t *buf, int len) |
---|
18 | { |
---|
19 | uint8_t c1=0,c2=0; |
---|
20 | while (len) |
---|
21 | { |
---|
22 | len--; |
---|
23 | c1+=*buf; |
---|
24 | c2+=c1; |
---|
25 | buf++; |
---|
26 | } |
---|
27 | return (c2<<8)|c1; |
---|
28 | } |
---|
29 | |
---|
30 | |
---|
31 | |
---|
32 | uint32_t crc_file(bFILE *fp) |
---|
33 | { |
---|
34 | uint8_t crc1=0,crc2=0,crc3=0,crc4=0; |
---|
35 | |
---|
36 | int size=0x1000; |
---|
37 | uint8_t *buffer=(uint8_t *)malloc(size),*c; |
---|
38 | long l=fp->file_size(); |
---|
39 | long cur_pos=fp->tell(); |
---|
40 | fp->seek(0,0); |
---|
41 | while (l) |
---|
42 | { |
---|
43 | int nr=fp->read(buffer,size); |
---|
44 | if (nr==0) l=0; |
---|
45 | else |
---|
46 | { |
---|
47 | l-=nr; |
---|
48 | for (c=buffer; nr; nr--,c++) |
---|
49 | { |
---|
50 | crc1+=*c; |
---|
51 | crc2+=crc1; |
---|
52 | crc3+=crc2; |
---|
53 | crc4+=crc3; |
---|
54 | } |
---|
55 | } |
---|
56 | } |
---|
57 | fp->seek(cur_pos,0); |
---|
58 | free(buffer); |
---|
59 | return (crc1|(crc2<<8)|(crc3<<16)|(crc4<<24)); |
---|
60 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.