-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontract.sol
More file actions
580 lines (486 loc) · 16.7 KB
/
contract.sol
File metadata and controls
580 lines (486 loc) · 16.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
contract ERC721 {
function totalSupply() public view returns (uint256 total);
function balanceOf(address _owner) public view returns (uint256 balance);
function ownerOf(uint256 _tokenId) external view returns (address owner);
function approve(address _to, uint256 _tokenId) external;
function transfer(address _to, uint256 _tokenId) external;
function transferFrom(address _from, address _to, uint256 _tokenId) external;
event Transfer(address from, address to, uint256 tokenId);
event Approval(address owner, address approved, uint256 tokenId);
function supportsInterface(bytes4 _interfaceID) external view returns (bool);
}
contract CardBase {
event Transfer(address from, address to, uint256 tokenId);
event Auction(address owner, uint32 class, uint256 attribute, uint32 timeBlock);
event Create(address owner, uint32 class, uint256 attribute);
event Dead(address owner, uint256 tokenId);
event Attack(uint256 tokenId1,uint256 tokenId2);
event AttackSuccess(uint256 tokenId1,uint256 tokenId2);
event AttackFail(uint256 tokenId1,uint256 tokenId2);
struct Card{
uint256 _tokenId;
uint32 _class;
uint256 _attribute;
uint32 life;
address owner;
}
Card[] Cards;
uint128 public constant totalCards = uint128(708100);
uint256 public LuckyFee = 5 finney;
uint128 public countCards;
uint32[5] public CardClass = [
uint32(100),
uint32(8000),
uint32(50000),
uint32(300000),
uint32(350000)
];
uint32[5] public CurrentClass ;
mapping (uint256 => address) public CardIndexToOwner;
mapping (address => uint256) ownershipTokenCount;
mapping (uint256 => address) public CardIndexToApproved;
ClockAuction public saleAuction;
function setSaleAuctionAddress(address _address) {
SaleClockAuction candidateContract = SaleClockAuction(_address);
saleAuction = candidateContract;
}
function attack(uint256 _from, uint256 _to)returns(bool){
Card card1 = Cards[_from];
Card card2 = Cards[_to];
require(card1.owner==msg.sender);
Attack(_from, _to);
if(compare(card1._class,card2._class)){
card2.life--;
AttackSuccess(_from,_to);
if(card2.life==0){
dead(card2.owner,_to);
}return true;
}
else{
card1.life--;
AttackFail(_from,_to);
if(card1.life==0){
dead(card1.owner,_to);
}return false;
}
}
function dead(address owner, uint256 _tokenId){
Dead(owner,_tokenId);
Cards[_tokenId].owner=address(0);
CurrentClass[Cards[_tokenId]._class]--;
ownershipTokenCount[owner]--;
delete CardIndexToApproved[_tokenId];
}
uint256 constant private FACTOR = 1157920892373161954235709850086879078532699846656405640394575840079131296399;
function rand() public view returns(uint256) {
uint256 factor = FACTOR * 100 / totalCards;
uint256 lastBlockNumber = block.number - 1;
uint256 hashVal = uint256(block.blockhash(lastBlockNumber));
return uint256((uint256(hashVal) / factor)) ;
}
function compare(uint256 _from,uint256 _to)view returns(bool){
uint32 ran = uint32(rand()%10);
if(_from-_to>1)
return true;
if(_to-_from>1)
return false;
if(_from-_to==1)
{
if(ran==9)
return false;
else
return true;
}
if(_to-_from==1)
{
if(ran==9)
return true;
else
return false;
}
if(_from==_to)
{
if(ran>=0&&ran<=4)
return true;
else
return false;
}
}
function GiftCard()payable returns(uint32){
require(countCards<=totalCards);
return _createCard(msg.sender);
}
function _createCard(address _owner)
internal
returns (uint32)
{
uint256 attribute=rand();
uint256 rnum = rand()%totalCards;
uint32 class;
if(rnum<=100&&CurrentClass[0]<=CardClass[0])class=0;
else if(rnum<=8100&&CurrentClass[1]<=CardClass[1])class=1;
else if(rnum<=58100&&CurrentClass[2]<=CardClass[2])class=2;
else if(rnum<=358100&&CurrentClass[3]<=CardClass[3])class=3;
else {require(countCards<=totalCards);class=4;}
CurrentClass[class]++;
countCards++;
Card memory _card = Card({
_tokenId:0,
_class:class,
_attribute:attribute,
life:5,
owner:_owner
});
uint256 newCardId = Cards.push(_card) - 1;
_card._tokenId=newCardId;
require(newCardId == uint256(uint32(newCardId)));
emit Create(
_owner,
class,
attribute
);
_transfer(0, _owner, newCardId);
return class;
}
function _transfer(address _from, address _to, uint256 _tokenId) internal {
ownershipTokenCount[_to]++;
CardIndexToOwner[_tokenId] = _to;
if (_from != address(0)) {
Cards[_tokenId].owner=_to;
ownershipTokenCount[_from]--;
delete CardIndexToApproved[_tokenId];
}
Transfer(_from, _to, _tokenId);
}
}
contract CardOwnership is CardBase, ERC721 {
string public constant name = "CardGame";
string public constant symbol = "CG";
bytes4 constant InterfaceSignature_ERC165 =
bytes4(keccak256('supportsInterface(bytes4)'));
bytes4 constant InterfaceSignature_ERC721 =
bytes4(keccak256('name()')) ^
bytes4(keccak256('symbol()')) ^
bytes4(keccak256('totalSupply()')) ^
bytes4(keccak256('balanceOf(address)')) ^
bytes4(keccak256('ownerOf(uint256)')) ^
bytes4(keccak256('approve(address,uint256)')) ^
bytes4(keccak256('transfer(address,uint256)')) ^
bytes4(keccak256('transferFrom(address,address,uint256)')) ^
bytes4(keccak256('tokensOfOwner(address)'));
function CardOwnership() public {
// _createCard(address(0));
}
function createSaleAuction(
uint256 _cardId,
uint256 _startingPrice,
uint32 _step,
uint32 _maxTimes
)
external
{
require(_owns(msg.sender, _cardId));
_approve(_cardId, saleAuction);
saleAuction.createAuction(
_cardId,
_startingPrice,
_step,
_maxTimes,
msg.sender,
0
);
}
function bid(uint256 _tokenId,uint256 _bidAmount)
external
{
saleAuction._bid(_tokenId, _bidAmount);
saleAuction._transfer(msg.sender, _tokenId);
}
function supportsInterface(bytes4 _interfaceID) external view returns (bool)
{
return ((_interfaceID == InterfaceSignature_ERC165) || (_interfaceID == InterfaceSignature_ERC721));
}
function _owns(address _claimant, uint256 _tokenId) internal view returns (bool) {
return CardIndexToOwner[_tokenId] == _claimant;
}
function _approvedFor(address _claimant, uint256 _tokenId) internal view returns (bool) {
return CardIndexToApproved[_tokenId] == _claimant;
}
function _approve(uint256 _tokenId, address _approved) internal {
CardIndexToApproved[_tokenId] = _approved;
}
function balanceOf(address _owner) public view returns (uint256 count) {
return ownershipTokenCount[_owner];
}
function transfer(
address _to,
uint256 _tokenId
)
external
{
require(_to != address(0));
require(_to != address(this));
//require(_to != address(saleAuction));
//require(_to != address(siringAuction));
require(_owns(msg.sender, _tokenId));
_transfer(msg.sender, _to, _tokenId);
}
function approve(
address _to,
uint256 _tokenId
)
external
{
require(_owns(msg.sender, _tokenId));
_approve(_tokenId, _to);
// Emit approval event.
Approval(msg.sender, _to, _tokenId);
}
function transferFrom(
address _from,
address _to,
uint256 _tokenId
)
external
{
require(_to != address(0));
require(_to != address(this));
require(_approvedFor(msg.sender, _tokenId));
require(_owns(_from, _tokenId));
_transfer(_from, _to, _tokenId);
}
function totalSupply() public view returns (uint) {
return Cards.length - 1;
}
function ownerOf(uint256 _tokenId)
external
view
returns (address owner)
{
owner = CardIndexToOwner[_tokenId];
require(owner != address(0));
}
function tokensOfOwner(address _owner) external view returns(uint256[] ownerTokens) {
uint256 tokenCount = balanceOf(_owner);
if (tokenCount == 0) {
// Return an empty array
return new uint256[](0);
} else {
uint256[] memory result = new uint256[](tokenCount);
uint256 totalCats = totalSupply();
uint256 resultIndex = 0;
uint256 catId;
for (catId = 1; catId <= totalCats; catId++) {
if (CardIndexToOwner[catId] == _owner) {
result[resultIndex] = catId;
resultIndex++;
}
}
return result;
}
}
}
contract ClockAuctionBase {
struct Auction {
address seller;
uint256 startingPrice;
uint32 step;
uint64 startedAt;
uint32 maxTimes;
address currentBuyer;
uint256 currentHighestBid;
uint32 times;
}
ERC721 public nonFungibleContract;
uint256 public ownerCut;
mapping (uint256 => Auction) tokenIdToAuction;
event AuctionCreated(uint256 tokenId, uint256 startingPrice, uint32 step, uint32 maxTimes);
event AuctionSuccessful(uint256 tokenId, uint256 totalPrice, address winner);
event AuctionCancelled(uint256 tokenId);
function _owns(address _claimant, uint256 _tokenId) internal view returns (bool) {
return (nonFungibleContract.ownerOf(_tokenId) == _claimant);
}
function _escrow(address _owner, uint256 _tokenId) internal {
nonFungibleContract.transferFrom(_owner, this, _tokenId);
}
function _transfer(address _receiver, uint256 _tokenId) {
nonFungibleContract.transfer(_receiver, _tokenId);
}
function _addAuction(uint256 _tokenId, Auction _auction) internal {
tokenIdToAuction[_tokenId] = _auction;
AuctionCreated(
uint256(_tokenId),
uint256(_auction.startingPrice),
uint32(_auction.step),
uint32(_auction.maxTimes)
);
}
function _cancelAuction(uint256 _tokenId, address _seller) internal {
_removeAuction(_tokenId);
_transfer(_seller, _tokenId);
AuctionCancelled(_tokenId);
}
function _bid(uint256 _tokenId, uint256 _bidAmount)
returns (uint256)
{
Auction storage auction = tokenIdToAuction[_tokenId];
uint256 price = auction.startingPrice;
if(auction.times+1>= auction.maxTimes){
address seller = auction.seller;
_removeAuction(_tokenId);
if (price > 0) {
uint256 sellerProceeds = price ;
seller.transfer(sellerProceeds);
AuctionSuccessful(_tokenId, price, msg.sender);
}
}else{
if(_bidAmount > auction.currentHighestBid+auction.step){
auction.times++;
tokenIdToAuction[_tokenId].currentHighestBid = _bidAmount;
tokenIdToAuction[_tokenId].currentBuyer = msg.sender;
}
}
require(_bidAmount > price); //需要拍卖结束
return price;
}
function _closeAuction(uint256 _tokenId, bool agreeDeal)public{
Auction storage auction = tokenIdToAuction[_tokenId];
require(msg.sender==auction.seller);
if(agreeDeal){
uint256 price = auction.currentHighestBid;
if (price > 0) {
uint256 auctioneerCut = _computeCut(price);
uint256 sellerProceeds = price - auctioneerCut;
auction.seller.transfer(sellerProceeds);
AuctionSuccessful(_tokenId, price, auction.currentBuyer);
}
}
_removeAuction(_tokenId);
}
function _removeAuction(uint256 _tokenId) internal {
delete tokenIdToAuction[_tokenId];
}
function _isOnAuction(Auction storage _auction) internal view returns (bool) {
return (_auction.startedAt > 0);
}
function _computeCut(uint256 _price) internal view returns (uint256) {
return _price * ownerCut / 10000;
}
}
contract ClockAuction is ClockAuctionBase {
bytes4 constant InterfaceSignature_ERC721 = bytes4(0x9a20483d);
function ClockAuction(address _nftAddress, uint256 _cut) public {
require(_cut <= 10000);
ownerCut = _cut;
ERC721 candidateContract = ERC721(_nftAddress);
nonFungibleContract = candidateContract;
}
function createAuction(
uint256 _tokenId,
uint256 _startingPrice,
uint32 _step,
uint32 _maxTimes,
address _seller,
uint256 currentHighestBid
)
external
{
require(_startingPrice == uint256(uint128(_startingPrice)));
require(_owns(msg.sender, _tokenId));
_escrow(msg.sender, _tokenId);
Auction memory auction = Auction(
_seller,
uint128(_startingPrice),
uint32(_step),
uint64(now),
uint32(_maxTimes),
_seller,
0,
0
);
_addAuction(_tokenId, auction);
}
function bid(uint256 _tokenId,uint256 _bidAmount)
external
{
_bid(_tokenId, _bidAmount);
_transfer(msg.sender, _tokenId);
}
function cancelAuction(uint256 _tokenId)
external
{
Auction storage auction = tokenIdToAuction[_tokenId];
require(_isOnAuction(auction));
address seller = auction.seller;
require(msg.sender == seller);
_cancelAuction(_tokenId, seller);
}
function getAuction(uint256 _tokenId)
external
view
returns
(
address seller,
uint256 startingPrice,
uint32 step,
uint64 startedAt,
uint32 maxTimes,
address currentBuyer,
uint32 times,
uint256 currentHighestBid
) {
Auction storage auction = tokenIdToAuction[_tokenId];
require(_isOnAuction(auction));
return (
auction.seller,
auction.startingPrice,
auction.step,
auction.startedAt,
auction.maxTimes,
auction.currentBuyer,
auction.times,
auction.currentHighestBid
);
}
}
contract SaleClockAuction is ClockAuction {
bool public isSaleClockAuction = true;
function SaleClockAuction(address _nftAddr, uint256 _cut) public
ClockAuction(_nftAddr, _cut) {}
function createAuction(
uint256 _tokenId,
uint256 _startingPrice,
uint32 _step,
uint32 _maxTimes,
address _seller,
uint256 currentHighestBid
)
external
{
require(_startingPrice == uint256(uint128(_startingPrice)));
require(msg.sender == address(nonFungibleContract));
_escrow(_seller, _tokenId);
Auction memory auction = Auction(
_seller,
uint128(_startingPrice),
uint32(_step),
uint64(now),
uint32(_maxTimes),
_seller,
0,
0
);
_addAuction(_tokenId, auction);
}
function bid(uint256 _tokenId)
external
payable
{
address seller = tokenIdToAuction[_tokenId].seller;
uint256 price = _bid(_tokenId, msg.value);
_transfer(msg.sender, _tokenId);
}
function closeAuction(bool agreed,uint256 tokenId) public{
_closeAuction(tokenId,agreed);
}
}