-
Notifications
You must be signed in to change notification settings - Fork 0
/
celeste.lua
1429 lines (1285 loc) · 26 KB
/
celeste.lua
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- ~celeste~
-- matt thorson + noel berry
-- globals --
-------------
room = { x=0, y=0 }
objects = {}
types = {}
freeze=0
shake=0
will_restart=false
delay_restart=0
got_fruit={}
has_dashed=false
sfx_timer=0
has_key=false
pause_player=false
flash_bg=false
music_timer=0
k_left=0
k_right=1
k_up=2
k_down=3
k_jump=4
k_dash=5
-- entry point --
-----------------
function _init()
title_screen()
end
function title_screen()
got_fruit = {}
for i=0,29 do
add(got_fruit,false) end
frames=0
deaths=0
max_djump=1
start_game=false
start_game_flash=0
music(40,0,7)
load_room(7,3)
end
function begin_game()
frames=0
seconds=0
minutes=0
music_timer=0
start_game=false
music(0,0,7)
load_room(0,0)
end
function level_index()
return room.x%8+room.y*8
end
function is_title()
return level_index()==31
end
-- effects --
-------------
clouds = {}
for i=0,16 do
add(clouds,{
x=rnd(128),
y=rnd(128),
spd=1+rnd(4),
w=32+rnd(32)
})
end
particles = {}
for i=0,24 do
add(particles,{
x=rnd(128),
y=rnd(128),
s=0+flr(rnd(5)/4),
spd=0.25+rnd(5),
off=rnd(1),
c=6+flr(0.5+rnd(1))
})
end
dead_particles = {}
-- player entity --
-------------------
player =
{
init=function(this)
this.p_jump=false
this.p_dash=false
this.grace=0
this.jbuffer=0
this.djump=max_djump
this.dash_time=0
this.dash_effect_time=0
this.dash_target={x=0,y=0}
this.dash_accel={x=0,y=0}
this.hitbox = {x=1,y=3,w=6,h=5}
this.spr_off=0
this.was_on_ground=false
create_hair(this)
end,
update=function(this)
if (pause_player) return
local input = btn(k_right) and 1 or (btn(k_left) and -1 or 0)
-- spikes collide
if spikes_at(this.x+this.hitbox.x,this.y+this.hitbox.y,this.hitbox.w,this.hitbox.h,this.spd.x,this.spd.y) then
kill_player(this) end
-- bottom death
if this.y>128 then
kill_player(this) end
local on_ground=this.is_solid(0,1)
local on_ice=this.is_ice(0,1)
-- smoke particles
if on_ground and not this.was_on_ground then
init_object(smoke,this.x,this.y+4)
end
local jump = btn(k_jump) and not this.p_jump
this.p_jump = btn(k_jump)
if (jump) then
this.jbuffer=4
elseif this.jbuffer>0 then
this.jbuffer-=1
end
local dash = btn(k_dash) and not this.p_dash
this.p_dash = btn(k_dash)
if on_ground then
this.grace=6
if this.djump<max_djump then
psfx(54)
this.djump=max_djump
end
elseif this.grace > 0 then
this.grace-=1
end
this.dash_effect_time -=1
if this.dash_time > 0 then
init_object(smoke,this.x,this.y)
this.dash_time-=1
this.spd.x=appr(this.spd.x,this.dash_target.x,this.dash_accel.x)
this.spd.y=appr(this.spd.y,this.dash_target.y,this.dash_accel.y)
else
-- move
local maxrun=1
local accel=0.6
local deccel=0.15
if not on_ground then
accel=0.4
elseif on_ice then
accel=0.05
if input==(this.flip.x and -1 or 1) then
accel=0.05
end
end
if abs(this.spd.x) > maxrun then
this.spd.x=appr(this.spd.x,sign(this.spd.x)*maxrun,deccel)
else
this.spd.x=appr(this.spd.x,input*maxrun,accel)
end
--facing
if this.spd.x!=0 then
this.flip.x=(this.spd.x<0)
end
-- gravity
local maxfall=2
local gravity=0.21
if abs(this.spd.y) <= 0.15 then
gravity*=0.5
end
-- wall slide
if input!=0 and this.is_solid(input,0) and not this.is_ice(input,0) then
maxfall=0.4
if rnd(10)<2 then
init_object(smoke,this.x+input*6,this.y)
end
end
if not on_ground then
this.spd.y=appr(this.spd.y,maxfall,gravity)
end
-- jump
if this.jbuffer>0 then
if this.grace>0 then
-- normal jump
psfx(1)
this.jbuffer=0
this.grace=0
this.spd.y=-2
init_object(smoke,this.x,this.y+4)
else
-- wall jump
local wall_dir=(this.is_solid(-3,0) and -1 or this.is_solid(3,0) and 1 or 0)
if wall_dir!=0 then
psfx(2)
this.jbuffer=0
this.spd.y=-2
this.spd.x=-wall_dir*(maxrun+1)
if not this.is_ice(wall_dir*3,0) then
init_object(smoke,this.x+wall_dir*6,this.y)
end
end
end
end
-- dash
local d_full=5
local d_half=d_full*0.70710678118
if this.djump>0 and dash then
init_object(smoke,this.x,this.y)
this.djump-=1
this.dash_time=4
has_dashed=true
this.dash_effect_time=10
local v_input=(btn(k_up) and -1 or (btn(k_down) and 1 or 0))
if input!=0 then
if v_input!=0 then
this.spd.x=input*d_half
this.spd.y=v_input*d_half
else
this.spd.x=input*d_full
this.spd.y=0
end
elseif v_input!=0 then
this.spd.x=0
this.spd.y=v_input*d_full
else
this.spd.x=(this.flip.x and -1 or 1)
this.spd.y=0
end
psfx(3)
freeze=2
shake=6
this.dash_target.x=2*sign(this.spd.x)
this.dash_target.y=2*sign(this.spd.y)
this.dash_accel.x=1.5
this.dash_accel.y=1.5
if this.spd.y<0 then
this.dash_target.y*=.75
end
if this.spd.y!=0 then
this.dash_accel.x*=0.70710678118
end
if this.spd.x!=0 then
this.dash_accel.y*=0.70710678118
end
elseif dash and this.djump<=0 then
psfx(9)
init_object(smoke,this.x,this.y)
end
end
-- animation
this.spr_off+=0.25
if not on_ground then
if this.is_solid(input,0) then
this.spr=5
else
this.spr=3
end
elseif btn(k_down) then
this.spr=6
elseif btn(k_up) then
this.spr=7
elseif (this.spd.x==0) or (not btn(k_left) and not btn(k_right)) then
this.spr=1
else
this.spr=1+this.spr_off%4
end
-- next level
if this.y<-4 and level_index()<30 then next_room() end
-- was on the ground
this.was_on_ground=on_ground
end, --<end update loop
draw=function(this)
-- clamp in screen
if this.x<-1 or this.x>121 then
this.x=clamp(this.x,-1,121)
this.spd.x=0
end
set_hair_color(this.djump)
draw_hair(this,this.flip.x and -1 or 1)
spr(this.spr,this.x,this.y,1,1,this.flip.x,this.flip.y)
unset_hair_color()
end
}
psfx=function(num)
if sfx_timer<=0 then
sfx(num)
end
end
create_hair=function(obj)
obj.hair={}
for i=0,4 do
add(obj.hair,{x=obj.x,y=obj.y,size=max(1,min(2,3-i))})
end
end
set_hair_color=function(djump)
pal(8,(djump==1 and 8 or djump==2 and (7+flr((frames/3)%2)*4) or 12))
end
draw_hair=function(obj,facing)
local last={x=obj.x+4-facing*2,y=obj.y+(btn(k_down) and 4 or 3)}
foreach(obj.hair,function(h)
h.x+=(last.x-h.x)/1.5
h.y+=(last.y+0.5-h.y)/1.5
circfill(h.x,h.y,h.size,8)
last=h
end)
end
unset_hair_color=function()
pal(8,8)
end
player_spawn = {
tile=1,
init=function(this)
sfx(4)
this.spr=3
this.target= {x=this.x,y=this.y}
this.y=128
this.spd.y=-4
this.state=0
this.delay=0
this.solids=false
create_hair(this)
end,
update=function(this)
-- jumping up
if this.state==0 then
if this.y < this.target.y+16 then
this.state=1
this.delay=3
end
-- falling
elseif this.state==1 then
this.spd.y+=0.5
if this.spd.y>0 and this.delay>0 then
this.spd.y=0
this.delay-=1
end
if this.spd.y>0 and this.y > this.target.y then
this.y=this.target.y
this.spd = {x=0,y=0}
this.state=2
this.delay=5
shake=5
init_object(smoke,this.x,this.y+4)
sfx(5)
end
-- landing
elseif this.state==2 then
this.delay-=1
this.spr=6
if this.delay<0 then
destroy_object(this)
init_object(player,this.x,this.y)
end
end
end,
draw=function(this)
set_hair_color(max_djump)
draw_hair(this,1)
spr(this.spr,this.x,this.y,1,1,this.flip.x,this.flip.y)
unset_hair_color()
end
}
add(types,player_spawn)
spring = {
tile=18,
init=function(this)
this.hide_in=0
this.hide_for=0
end,
update=function(this)
if this.hide_for>0 then
this.hide_for-=1
if this.hide_for<=0 then
this.spr=18
this.delay=0
end
elseif this.spr==18 then
local hit = this.collide(player,0,0)
if hit ~=nil and hit.spd.y>=0 then
this.spr=19
hit.y=this.y-4
hit.spd.x*=0.2
hit.spd.y=-3
hit.djump=max_djump
this.delay=10
init_object(smoke,this.x,this.y)
-- breakable below us
local below=this.collide(fall_floor,0,1)
if below~=nil then
break_fall_floor(below)
end
psfx(8)
end
elseif this.delay>0 then
this.delay-=1
if this.delay<=0 then
this.spr=18
end
end
-- begin hiding
if this.hide_in>0 then
this.hide_in-=1
if this.hide_in<=0 then
this.hide_for=60
this.spr=0
end
end
end
}
add(types,spring)
function break_spring(obj)
obj.hide_in=15
end
balloon = {
tile=22,
init=function(this)
this.offset=rnd(1)
this.start=this.y
this.timer=0
this.hitbox={x=-1,y=-1,w=10,h=10}
end,
update=function(this)
if this.spr==22 then
this.offset+=0.01
this.y=this.start+sin(this.offset)*2
local hit = this.collide(player,0,0)
if hit~=nil and hit.djump<max_djump then
psfx(6)
init_object(smoke,this.x,this.y)
hit.djump=max_djump
this.spr=0
this.timer=60
end
elseif this.timer>0 then
this.timer-=1
else
psfx(7)
init_object(smoke,this.x,this.y)
this.spr=22
end
end,
draw=function(this)
if this.spr==22 then
spr(13+(this.offset*8)%3,this.x,this.y+6)
spr(this.spr,this.x,this.y)
end
end
}
add(types,balloon)
fall_floor = {
tile=23,
init=function(this)
this.state=0
this.solid=true
end,
update=function(this)
-- idling
if this.state == 0 then
if this.check(player,0,-1) or this.check(player,-1,0) or this.check(player,1,0) then
break_fall_floor(this)
end
-- shaking
elseif this.state==1 then
this.delay-=1
if this.delay<=0 then
this.state=2
this.delay=60--how long it hides for
this.collideable=false
end
-- invisible, waiting to reset
elseif this.state==2 then
this.delay-=1
if this.delay<=0 and not this.check(player,0,0) then
psfx(7)
this.state=0
this.collideable=true
init_object(smoke,this.x,this.y)
end
end
end,
draw=function(this)
if this.state!=2 then
if this.state!=1 then
spr(23,this.x,this.y)
else
spr(23+(15-this.delay)/5,this.x,this.y)
end
end
end
}
add(types,fall_floor)
function break_fall_floor(obj)
if obj.state==0 then
psfx(15)
obj.state=1
obj.delay=15--how long until it falls
init_object(smoke,obj.x,obj.y)
local hit=obj.collide(spring,0,-1)
if hit~=nil then
break_spring(hit)
end
end
end
smoke={
init=function(this)
this.spr=29
this.spd.y=-0.1
this.spd.x=0.3+rnd(0.2)
this.x+=-1+rnd(2)
this.y+=-1+rnd(2)
this.flip.x=maybe()
this.flip.y=maybe()
this.solids=false
end,
update=function(this)
this.spr+=0.2
if this.spr>=32 then
destroy_object(this)
end
end
}
fruit={
tile=26,
if_not_fruit=true,
init=function(this)
this.start=this.y
this.off=0
end,
update=function(this)
local hit=this.collide(player,0,0)
if hit~=nil then
hit.djump=max_djump
sfx_timer=20
sfx(13)
got_fruit[1+level_index()] = true
init_object(lifeup,this.x,this.y)
destroy_object(this)
end
this.off+=1
this.y=this.start+sin(this.off/40)*2.5
end
}
add(types,fruit)
fly_fruit={
tile=28,
if_not_fruit=true,
init=function(this)
this.start=this.y
this.fly=false
this.step=0.5
this.solids=false
this.sfx_delay=8
end,
update=function(this)
--fly away
if this.fly then
if this.sfx_delay>0 then
this.sfx_delay-=1
if this.sfx_delay<=0 then
sfx_timer=20
sfx(14)
end
end
this.spd.y=appr(this.spd.y,-3.5,0.25)
if this.y<-16 then
destroy_object(this)
end
-- wait
else
if has_dashed then
this.fly=true
end
this.step+=0.05
this.spd.y=sin(this.step)*0.5
end
-- collect
local hit=this.collide(player,0,0)
if hit~=nil then
hit.djump=max_djump
sfx_timer=20
sfx(13)
got_fruit[1+level_index()] = true
init_object(lifeup,this.x,this.y)
destroy_object(this)
end
end,
draw=function(this)
local off=0
if not this.fly then
local dir=sin(this.step)
if dir<0 then
off=1+max(0,sign(this.y-this.start))
end
else
off=(off+0.25)%3
end
spr(45+off,this.x-6,this.y-2,1,1,true,false)
spr(this.spr,this.x,this.y)
spr(45+off,this.x+6,this.y-2)
end
}
add(types,fly_fruit)
lifeup = {
init=function(this)
this.spd.y=-0.25
this.duration=30
this.x-=2
this.y-=4
this.flash=0
this.solids=false
end,
update=function(this)
this.duration-=1
if this.duration<= 0 then
destroy_object(this)
end
end,
draw=function(this)
this.flash+=0.5
print("1000",this.x-2,this.y,7+this.flash%2)
end
}
fake_wall = {
tile=64,
if_not_fruit=true,
update=function(this)
this.hitbox={x=-1,y=-1,w=18,h=18}
local hit = this.collide(player,0,0)
if hit~=nil and hit.dash_effect_time>0 then
hit.spd.x=-sign(hit.spd.x)*1.5
hit.spd.y=-1.5
hit.dash_time=-1
sfx_timer=20
sfx(16)
destroy_object(this)
init_object(smoke,this.x,this.y)
init_object(smoke,this.x+8,this.y)
init_object(smoke,this.x,this.y+8)
init_object(smoke,this.x+8,this.y+8)
init_object(fruit,this.x+4,this.y+4)
end
this.hitbox={x=0,y=0,w=16,h=16}
end,
draw=function(this)
spr(64,this.x,this.y)
spr(65,this.x+8,this.y)
spr(80,this.x,this.y+8)
spr(81,this.x+8,this.y+8)
end
}
add(types,fake_wall)
key={
tile=8,
if_not_fruit=true,
update=function(this)
local was=flr(this.spr)
this.spr=9+(sin(frames/30)+0.5)*1
local is=flr(this.spr)
if is==10 and is!=was then
this.flip.x=not this.flip.x
end
if this.check(player,0,0) then
sfx(23)
sfx_timer=10
destroy_object(this)
has_key=true
end
end
}
add(types,key)
chest={
tile=20,
if_not_fruit=true,
init=function(this)
this.x-=4
this.start=this.x
this.timer=20
end,
update=function(this)
if has_key then
this.timer-=1
this.x=this.start-1+rnd(3)
if this.timer<=0 then
sfx_timer=20
sfx(16)
init_object(fruit,this.x,this.y-4)
destroy_object(this)
end
end
end
}
add(types,chest)
platform={
init=function(this)
this.x-=4
this.solids=false
this.hitbox.w=16
this.last=this.x
end,
update=function(this)
this.spd.x=this.dir*0.65
if this.x<-16 then this.x=128
elseif this.x>128 then this.x=-16 end
if not this.check(player,0,0) then
local hit=this.collide(player,0,-1)
if hit~=nil then
hit.move_x(this.x-this.last,1)
end
end
this.last=this.x
end,
draw=function(this)
spr(11,this.x,this.y-1)
spr(12,this.x+8,this.y-1)
end
}
message={
tile=86,
last=0,
draw=function(this)
this.text="-- celeste mountain --#this memorial to those# perished on the climb"
if this.check(player,4,0) then
if this.index<#this.text then
this.index+=0.5
if this.index>=this.last+1 then
this.last+=1
sfx(35)
end
end
this.off={x=8,y=96}
for i=1,this.index do
if sub(this.text,i,i)~="#" then
rectfill(this.off.x-2,this.off.y-2,this.off.x+7,this.off.y+6 ,7)
print(sub(this.text,i,i),this.off.x,this.off.y,0)
this.off.x+=5
else
this.off.x=8
this.off.y+=7
end
end
else
this.index=0
this.last=0
end
end
}
add(types,message)
big_chest={
tile=96,
init=function(this)
this.state=0
this.hitbox.w=16
end,
draw=function(this)
if this.state==0 then
local hit=this.collide(player,0,8)
if hit~=nil and hit.is_solid(0,1) then
music(-1,500,7)
sfx(37)
pause_player=true
hit.spd.x=0
hit.spd.y=0
this.state=1
init_object(smoke,this.x,this.y)
init_object(smoke,this.x+8,this.y)
this.timer=60
this.particles={}
end
spr(96,this.x,this.y)
spr(97,this.x+8,this.y)
elseif this.state==1 then
this.timer-=1
shake=5
flash_bg=true
if this.timer<=45 and count(this.particles)<50 then
add(this.particles,{
x=1+rnd(14),
y=0,
h=32+rnd(32),
spd=8+rnd(8)
})
end
if this.timer<0 then
this.state=2
this.particles={}
flash_bg=false
new_bg=true
init_object(orb,this.x+4,this.y+4)
pause_player=false
end
foreach(this.particles,function(p)
p.y+=p.spd
line(this.x+p.x,this.y+8-p.y,this.x+p.x,min(this.y+8-p.y+p.h,this.y+8),7)
end)
end
spr(112,this.x,this.y+8)
spr(113,this.x+8,this.y+8)
end
}
add(types,big_chest)
orb={
init=function(this)
this.spd.y=-4
this.solids=false
this.particles={}
end,
draw=function(this)
this.spd.y=appr(this.spd.y,0,0.5)
local hit=this.collide(player,0,0)
if this.spd.y==0 and hit~=nil then
music_timer=45
sfx(51)
freeze=10
shake=10
destroy_object(this)
max_djump=2
hit.djump=2
end
spr(102,this.x,this.y)
local off=frames/30
for i=0,7 do
circfill(this.x+4+cos(off+i/8)*8,this.y+4+sin(off+i/8)*8,1,7)
end
end
}
flag = {
tile=118,
init=function(this)
this.x+=5
this.score=0
this.show=false
for i=1,count(got_fruit) do
if got_fruit[i] then
this.score+=1
end
end
end,
draw=function(this)
this.spr=118+(frames/5)%3
spr(this.spr,this.x,this.y)
if this.show then
rectfill(32,2,96,31,0)
spr(26,55,6)
print("x"..this.score,64,9,7)
draw_time(49,16)
print("deaths:"..deaths,48,24,7)
elseif this.check(player,0,0) then
sfx(55)
sfx_timer=30
this.show=true
end
end
}
add(types,flag)
room_title = {
init=function(this)
this.delay=5
end,
draw=function(this)
this.delay-=1
if this.delay<-30 then
destroy_object(this)
elseif this.delay<0 then
rectfill(24,58,104,70,0)
--rect(26,64-10,102,64+10,7)
--print("---",31,64-2,13)
if room.x==3 and room.y==1 then
print("old site",48,62,7)
elseif level_index()==30 then
print("summit",52,62,7)
else
local level=(1+level_index())*100
print(level.." m",52+(level<1000 and 2 or 0),62,7)
end
--print("---",86,64-2,13)
draw_time(4,4)
end
end
}
-- object functions --
-----------------------
function init_object(type,x,y)
if type.if_not_fruit~=nil and got_fruit[1+level_index()] then
return
end
local obj = {}
obj.type = type
obj.collideable=true
obj.solids=true
obj.spr = type.tile
obj.flip = {x=false,y=false}
obj.x = x
obj.y = y
obj.hitbox = { x=0,y=0,w=8,h=8 }
obj.spd = {x=0,y=0}
obj.rem = {x=0,y=0}
obj.is_solid=function(ox,oy)
if oy>0 and not obj.check(platform,ox,0) and obj.check(platform,ox,oy) then
return true
end
return solid_at(obj.x+obj.hitbox.x+ox,obj.y+obj.hitbox.y+oy,obj.hitbox.w,obj.hitbox.h)
or obj.check(fall_floor,ox,oy)
or obj.check(fake_wall,ox,oy)
end
obj.is_ice=function(ox,oy)
return ice_at(obj.x+obj.hitbox.x+ox,obj.y+obj.hitbox.y+oy,obj.hitbox.w,obj.hitbox.h)
end
obj.collide=function(type,ox,oy)
local other
for i=1,count(objects) do
other=objects[i]
if other ~=nil and other.type == type and other != obj and other.collideable and
other.x+other.hitbox.x+other.hitbox.w > obj.x+obj.hitbox.x+ox and
other.y+other.hitbox.y+other.hitbox.h > obj.y+obj.hitbox.y+oy and
other.x+other.hitbox.x < obj.x+obj.hitbox.x+obj.hitbox.w+ox and
other.y+other.hitbox.y < obj.y+obj.hitbox.y+obj.hitbox.h+oy then
return other
end
end
return nil