-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
1583 lines (1437 loc) · 37.5 KB
/
main.cpp
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
#ifndef UNICODE
#define UNICODE
#endif /* UNICODE */
#ifndef _UNICODE
#define _UNICODE
#endif /* _UNICODE */
#define STRICT
#include <windows.h>
#include <windowsx.h>
#include <commctrl.h>
#include <commdlg.h>
#include <wingdi.h>
#include <Winuser.h>
#include "resource.h"
#include <Winbase.h>
#include "MMascot.h"
DWORD gle=0;
/* =====================================================================
関数のプロトタイプ宣言
===================================================================== */
// WinMainから呼ばれる関数
BOOL InitApplication(HINSTANCE);
BOOL InitInstance(HINSTANCE, int);
#define WM_NOTIFYICON (WM_USER+2)
// コールバック関数
LRESULT CALLBACK MainWndProc(HWND, UINT, WPARAM, LPARAM);
// ダイアログ関数
BOOL CALLBACK AboutDlgProc(HWND, UINT, WPARAM, LPARAM);
// メッセージ処理関数
// ファイル・メニュー関数
void OnFileExit(HWND); // 終了
// ヘルプ・メニュー関数
void OnHelpAbout(HWND); // バージョン情報
void OnCreate(HWND, WPARAM, LPARAM);
void OnDestroy(HWND, WPARAM, LPARAM);
void OnPaint(HWND, WPARAM, LPARAM);
void OnHelp(HWND, WPARAM, LPARAM);
void mouse_down(HWND,WPARAM, LPARAM);
void mouse_move(HWND,WPARAM, LPARAM);
void mouse_up(HWND,WPARAM, LPARAM);
HICON hIcon = 0 ;
/* =====================================================================
グローバル変数
===================================================================== */
TCHAR gszAppName[] = TEXT("MMascot"); // クラスの名前
TCHAR gszAppTitle[] = TEXT("MMascot"); // ウィンドウ・タイトル
HINSTANCE ghInst = NULL; // 現在のインスタンス
HWND ghWnd = NULL; // メインウィンドウのハンドル
HWND ghWndCB = NULL; // コマンドバーのハンドル
HACCEL hAccel = NULL;
HDC baseDC = NULL; // オフスクリーン
HBITMAP baseBmp = NULL;
BYTE *baseBuf;
HDC tmp256DC = NULL; // オフスクリーン
HBITMAP tmp256Bmp = NULL;
BYTE *tmp256Buf;
HDC NullDC=NULL;
BYTE *picBuf[3],*pic2Buf,*picbBuf,*tmpBuf;
BYTE *maskBuf[3];
int bitspixel;
int gpx,gpy;
int gpsx,gpsy;
BOOL bg_flag=FALSE;
int winWidth,winHeight;
BOOL pspc_flag;
LOGFONT lf;
DWORD timer_step;
DWORD next_tick=0;
PIC_STRUCT *pic,*mask;
MOJI_STRUCT *moji;
GROUP_STRUCT **group;
SCHEDULE_STRUCT *schedule;
BOOL *loop_flag;
PIC_STRUCT base_pic,moji_pic,back_pic,tmp_pic,draw_pic;
BYTE *work;
int counter;
BOOL load_skin(HWND,TCHAR *);
TCHAR fontname[16];
HANDLE mutex;
BOOL control_flag=FALSE;
BOOL move_flag=FALSE;
BOOL hide_flag=FALSE;
TCHAR *skin_fn[32],*skin_txt[32];
int skin_num,select_skin_num;
int transparent=TRANS_100;
int transparent_backup;
TCHAR Message[256];
int max_pic,max_mask,max_string,*max_group,max_schedule;
int sch_no;
SYSTEMTIME before_st;
BOOL get_background_flag;
/* =====================================================================
Windowsプログラムのメイン関数
===================================================================== */
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPTSTR lpszCmdParm, int nCmdShow)
{
MSG msg;
// ウィンドウの検索
/*
HWND hWnd = FindWindow(gszAppName, gszAppTitle);
if (hWnd) {
// 既に起動しているウィンドウを最前面に移動して終了
SetForegroundWindow(hWnd);
return 0;
}
*/
ghInst = hInstance;
if (!hPrevInstance) { // ほかのインスタンス実行中 ?
if (!InitApplication(hInstance)) // 共通の初期化処理
return FALSE; // 初期化に失敗した場合は終了
}
/* アイコンを読み込む */
hIcon = (HICON)LoadImage( ghInst, MAKEINTRESOURCE(IDI_MAIN_ICON),
IMAGE_ICON, 16, 16, 0 ) ;
if (!InitInstance(hInstance, nCmdShow)) // インスタンス毎の初期化処理
return FALSE; // 失敗した場合は終了
// hAccel=LoadAccelerators(ghInst,MAKEINTRESOURCE(IDR_ACCEL));
while (GetMessage(&msg, NULL, 0, 0)) { // メッセージの取得とディスパッチ
if (!TranslateAccelerator(msg.hwnd,hAccel,&msg)) {
TranslateMessage(&msg); // 仮想キーコードの変換
DispatchMessage(&msg); // メッセージのディスパッチ
}
}
return msg.wParam; // PostQuitMessage()関数の戻り値を返す
}
/* =====================================================================
ウィンドウ・クラスの登録
===================================================================== */
BOOL InitApplication(HINSTANCE hInstance)
{
WNDCLASS wc;
wc.style = CS_HREDRAW|CS_VREDRAW; // クラス・スタイル
wc.lpfnWndProc = MainWndProc; // ウィンドウ・プロシージャ
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hInstance; // インスタンス・ハンドル
wc.hIcon = hIcon;
wc.hCursor = NULL;
wc.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
wc.lpszMenuName = NULL; // メニューの名前
wc.lpszClassName = gszAppName; // ウィンドウ・クラスの名前
return RegisterClass(&wc); // ウィンドウ・クラスの登録
}
static BOOL
AddTaskBarIcon( HWND hWnd, HICON hIcon, UINT uID, LPCTSTR lpszTip )
{
BOOL res ;
NOTIFYICONDATA tnid ;
tnid.cbSize = sizeof(NOTIFYICONDATA) ;
tnid.hWnd = hWnd ;
tnid.uID = uID ;
tnid.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP ;
tnid.uCallbackMessage = WM_NOTIFYICON ;
tnid.hIcon = hIcon ;
if ( lpszTip ) {
_tcscpy( tnid.szTip, lpszTip ) ;
} else {
tnid.szTip[0] = '\0' ;
}
res = Shell_NotifyIcon( NIM_ADD, &tnid ) ;
return res ;
}
static BOOL
DeleteTaskBarIcon( HWND hWnd, UINT uID )
{
NOTIFYICONDATA tnid ;
tnid.cbSize = sizeof (NOTIFYICONDATA) ;
tnid.hWnd = hWnd ;
tnid.uID = uID ;
return Shell_NotifyIcon( NIM_DELETE, &tnid ) ;
}
/* =====================================================================
ウィンドウの作成と表示
===================================================================== */
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
{
INT rc;
get_path();
mutex=CreateMutex(NULL,TRUE,TEXT("MMascot"));
rc=GetLastError();
if (rc==ERROR_ALREADY_EXISTS) {
HWND hwnd;
hwnd=load_hwnd();
if (hwnd!=NULL) {
SendMessage(hwnd, WM_USER+2, 0, 0x203);
}
ReleaseMutex(mutex);
return FALSE;
}
ghWnd = CreateWindow(
gszAppName, // 登録されたウィンドウ・クラスの名前
gszAppTitle, // タイトル・バーに表示するテキスト
0, // ウィンドウ・スタイル
0, // ウィンドウの表示位置 (水平)
0, // (垂直)
CW_USEDEFAULT, // ウィンドウの大きさ (幅)
CW_USEDEFAULT, // (高さ)
NULL, // 親ウィンドウのハンドル
NULL, // ウィンドウ・クラスのメニューを使用
hInstance, // アプリケーション・インスタンスのハンドル
NULL // ウィンドウ作成データのアドレス
);
if (!ghWnd)
return FALSE; // ウィンドウの作成に失敗
// ShowWindow(ghWnd, nCmdShow); // ウィンドウ表示状態の設定
UpdateWindow(ghWnd); // クライアント領域の更新
AddTaskBarIcon( ghWnd, hIcon, IDI_MAIN_ICON, TEXT("JZCLOCK") ) ;
save_hwnd(ghWnd);
return TRUE;
}
/* =====================================================================
ウィンドウ・プロシージャ
===================================================================== */
void set_font(BYTE fontsize)
{
HFONT hFont;
lf.lfHeight=fontsize;;
wsprintf(lf.lfFaceName,TEXT("%s"),fontname);
hFont = CreateFontIndirect( &lf );
SelectObject(baseDC, hFont);
DeleteObject(hFont);
}
void put_moji(TCHAR *str,int fontsize,int x,int y,int color)
{
RECT rc;
int i,j;
int c1,c2;
c1=c2=-1;
set_font(fontsize);
rc.top=0;
rc.bottom=base_pic.ysize-1;
rc.left=0;
rc.right=base_pic.xsize-1;
DrawText(baseDC, str, -1,&rc, DT_CALCRECT);
rc.right+=7;
if (rc.bottom>=base_pic.ysize) rc.bottom=base_pic.ysize-1;
if (rc.right>=base_pic.xsize) rc.right=base_pic.xsize-1;
for (j=rc.top;j<=rc.bottom;j++)
for (i=rc.left;i<=rc.right;i++)
set_pixel(&base_pic,i,j,0xffffff);
DrawText(baseDC, str, -1,&rc, DT_LEFT | DT_TOP );
for (j=rc.top;j<=rc.bottom;j++)
for (i=rc.left;i<=rc.right;i++) {
if (get_pixel(&base_pic,i,j)==0) {
set_pixel(&tmp_pic,x+i,y+j,color);
work[(y+j)*gpsx+(x+i)]=1;
}
}
}
void get_initial_background()
{
int i,j;
BitBlt(baseDC, 0,0,gpsx,gpsy, NullDC, gpx,gpy, SRCCOPY);
for (j=0;j<gpsy;j++)
for (i=0;i<gpsx;i++) {
set_pixel(&back_pic,i,j,get_pixel(&base_pic,i,j));
}
bg_flag=FALSE;
}
void set_initial_background()
{
int i,j;
for (j=0;j<gpsy;j++)
for (i=0;i<gpsx;i++)
set_pixel(&base_pic,i,j,get_pixel(&back_pic,i,j));
BitBlt(NullDC, gpx,gpy,gpsx,gpsy, baseDC, 0,0, SRCCOPY);
}
int random(int n1,int n2)
{
if (n1==n2) return n1;
return n1+(Random()%(n2-n1+1));
}
BOOL check_time(int s,SYSTEMTIME *current_time,SYSTEMTIME *before_time)
{
int day_of_month[12+1]={-1,31,28,31,30,31,30,31,31,30,31,30,31};
int week =before_time->wDayOfWeek;
int month =before_time->wMonth;
int day =before_time->wDay;
int hour =before_time->wHour;
int minute=before_time->wMinute;
int second=before_time->wSecond;
for (;;) {
if (schedule[s].week[week] ==1 &&
schedule[s].month[month] ==1 &&
schedule[s].day[day] ==1 &&
schedule[s].hour[hour] ==1 &&
schedule[s].second[second]==1 &&
schedule[s].minute[minute]==1) {
return TRUE;
}
if (current_time->wDayOfWeek==week &&
current_time->wMonth ==month &&
current_time->wDay ==day &&
current_time->wHour ==hour &&
current_time->wMinute ==minute &&
current_time->wSecond ==second) {
return FALSE;
}
second++;
if (second==60) {
second=0;
minute++;
}
if (minute==60) {
minute=0;
hour++;
}
if (hour==24) {
hour=0;
day++;
}
if (day>day_of_month[month]) {
day=1;
month++;
if (month==13) month=1;
week=(week+1+7)%7;
}
}
return FALSE;
}
int check_next_time(int s,SYSTEMTIME *current_time,int ts)
{
int day_of_month[12+1]={-1,31,28,31,30,31,30,31,31,30,31,30,31};
int week =current_time->wDayOfWeek;
int month =current_time->wMonth;
int day =current_time->wDay;
int hour =current_time->wHour;
int minute=current_time->wMinute;
int second=current_time->wSecond;
int msecond=current_time->wMilliseconds;
int t;
for (t=0;t<ts/1000+1;t++) {
if (schedule[s].week[week] ==1 &&
schedule[s].month[month] ==1 &&
schedule[s].day[day] ==1 &&
schedule[s].hour[hour] ==1 &&
schedule[s].second[second]==1 &&
schedule[s].minute[minute]==1) {
return t*1000-msecond+500;
}
second++;
if (second==60) {
second=0;
minute++;
}
if (minute==60) {
minute=0;
hour++;
}
if (hour==24) {
hour=0;
day++;
}
if (day>day_of_month[month]) {
day=1;
month++;
if (month==13) month=1;
week=(week+1+7)%7;
}
}
return -1;
}
BOOL transrate_mojiretsu(TCHAR *t_str,TCHAR *str)
{
int i,j;
SYSTEMTIME st;
BOOL ret=FALSE;
GetLocalTime(&st);
j=0;
for (i=0;;) {
if (str[i]=='%') {
if (str[i+1]=='Y') {
t_str[j++]='0'+((st.wYear/10))%10;
t_str[j++]='0'+(st.wYear%10);
i+=2;
ret=TRUE;
continue;
}
if (str[i+1]=='M') {
t_str[j++]='0'+(st.wMonth/10);
t_str[j++]='0'+(st.wMonth%10);
i+=2;
ret=TRUE;
continue;
}
if (str[i+1]=='D') {
t_str[j++]='0'+(st.wDay/10);
t_str[j++]='0'+(st.wDay%10);
i+=2;
ret=TRUE;
continue;
}
if (str[i+1]=='h') {
t_str[j++]='0'+(st.wHour/10);
t_str[j++]='0'+(st.wHour%10);
i+=2;
ret=TRUE;
continue;
}
if (str[i+1]=='m') {
t_str[j++]='0'+(st.wMinute/10);
t_str[j++]='0'+(st.wMinute%10);
i+=2;
ret=TRUE;
continue;
}
if (str[i+1]=='s') {
t_str[j++]='0'+(st.wSecond/10);
t_str[j++]='0'+(st.wSecond%10);
i+=2;
ret=TRUE;
continue;
}
if (str[i+1]=='%') {
t_str[j++]='%';
i+=2;
continue;
}
} else {
t_str[j++]=str[i++];
}
if (str[i-1]=='\0') break;
}
return ret;
}
void jzp_timer(HWND hWnd)
{
int i,j,k;
int c;
int sch;
DWORD t;
DWORD ts;
SYSTEMTIME st;
if (hide_flag==TRUE) return;
t=GetTickCount();
KillTimer(hWnd,900);
{ // タイマーイベントが溜まらないようにする
MSG msg;
while(::PeekMessage(&msg, hWnd, WM_TIMER, WM_TIMER, PM_REMOVE));
}
sch=schedule[sch_no].group;
ts=random(group[sch][counter].interval1,group[sch][counter].interval2);
for (j=0;j<gpsy;j++)
for (i=0;i<gpsx;i++)
work[j*gpsx+i]=0;
for (k=0;;k++) {
int p,m;
p=group[sch][counter].pic[k];
m=group[sch][counter].mask[k];
if (p==-1 && m==-1) break;
if (p==-1) {
TCHAR t_moji[256];
i=random(0,group[sch][counter].str_num[k]);
j=group[sch][counter].str[k][i];
if (transrate_mojiretsu(t_moji,moji[j].str)==TRUE) {
}
put_moji(t_moji,moji[j].fontsize,moji[j].x,moji[j].y,moji[j].color);
} else {
for (j=0;j<pic[p].ysize;j++)
for (i=0;i<pic[p].xsize;i++) {
int c=get_pixel(&(pic[p]),i,j);
if (pic[p].mask_flag==FALSE) {
if (get_pixel(&(mask[m]),i,j)==0) {
set_pixel(&tmp_pic,pic[p].x+i,pic[p].y+j,c);
work[(pic[p].y+j)*gpsx+(pic[p].x+i)]=1;
}
} else {
if (bitspixel==24) {
if (c!=pic[p].palette[pic[p].mask_color]) {
set_pixel(&tmp_pic,pic[p].x+i,pic[p].y+j,c);
work[(pic[p].y+j)*gpsx+(pic[p].x+i)]=1;
}
}
if (bitspixel==8) {
if (get_pixel_raw(&(pic[p]),i,j)!=pic[p].mask_color) {
set_pixel(&tmp_pic,pic[p].x+i,pic[p].y+j,c);
work[(pic[p].y+j)*gpsx+(pic[p].x+i)]=1;
}
}
}
}
}
}
if (get_background_flag==TRUE) {
get_initial_background();
get_background_flag=FALSE;
}
BitBlt(baseDC, 0,0,gpsx,gpsy, NullDC, gpx,gpy, SRCCOPY);
for (j=0;j<gpsy;j++) {
for (i=0;i<gpsx;i++) {
if (bg_flag==TRUE) {
c=get_pixel(&base_pic,i,j);
if (get_pixel(&draw_pic,i,j)!=c)
set_pixel(&back_pic,i,j,c);
}
if (work[j*gpsx+i]==1) {
set_pixel_transparent(&base_pic,i,j,get_pixel(&tmp_pic,i,j),get_pixel(&back_pic,i,j),transparent);
} else {
set_pixel(&base_pic,i,j,get_pixel(&back_pic,i,j));
}
}
}
BitBlt(NullDC, gpx,gpy,gpsx,gpsy, baseDC, 0,0, SRCCOPY);
for (j=0;j<gpsy;j++)
for (i=0;i<gpsx;i++)
set_pixel(&draw_pic,i,j,get_pixel(&base_pic,i,j));
bg_flag=TRUE;
// InvalidateRect(hWnd,NULL,FALSE);
GetLocalTime(&st);
counter++;
if (group[sch][counter].pic[0]==-1 && group[sch][counter].mask[0]==-1) {
sch_no=0;
for (i=0;;i++) {
if (i>max_schedule) break;
if (loop_flag[schedule[i].group]==FALSE) continue;
if (check_time(i,&st,&st)==TRUE) {
sch_no=i;
}
}
counter=0;
}
if (before_st.wMonth!=0) {
for (i=0;;i++) {
if (i>max_schedule) break;
if (loop_flag[schedule[i].group]==TRUE) continue;
if (i<=sch_no) continue;
if (check_time(i,&st,&before_st)==TRUE) {
sch_no=i;
counter=0;
}
}
for (i=0;;i++) {
int next_time;
if (i>max_schedule) break;
if (loop_flag[schedule[i].group]==TRUE) continue;
if (i<=sch_no) continue;
next_time=check_next_time(i,&st,ts);
if (next_time>=0 && next_time<=(int)ts) {
ts=next_time;
sch_no=i;
counter=0;
}
}
}
before_st=st;
if (next_tick==0) next_tick=t;
timer_step=ts+(next_tick-t);
if (timer_step<10) timer_step=10;
if (timer_step>10000000) timer_step=100;
next_tick=t+timer_step;
SetTimer(hWnd, 900,timer_step,NULL);
}
void pic_move(int dx,int dy)
{
if (move_flag==TRUE) return;
move_flag=TRUE;
set_initial_background();
gpx+=dx;
gpy+=dy;
get_initial_background();
jzp_timer(ghWnd);
move_flag=FALSE;
}
void pic_hide()
{
KillTimer(ghWnd,900);
hide_flag=TRUE;
set_initial_background();
}
void pic_show()
{
int i;
SYSTEMTIME st;
get_initial_background();
hide_flag=FALSE;
GetLocalTime(&st);
sch_no=0;
for (i=0;;i++) {
if (i>max_schedule) break;
if (loop_flag[schedule[i].group]==FALSE) continue;
if (check_time(i,&st,&st)==TRUE) {
sch_no=i;
}
}
counter=0;
timer_step=200;
next_tick=0;
get_background_flag=TRUE;
SetTimer(ghWnd, 900,1,NULL);
}
BOOL CALLBACK ControlDlgProc(HWND hDlg, UINT uMessage,
WPARAM wParam, LPARAM lParam)
{
int k,t;
switch (uMessage) {
case WM_INITDIALOG: // ダイアログ・ボックスの初期化
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, CB_RESETCONTENT, 0, 0 );
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, WM_SETREDRAW, FALSE, 0L );
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, CB_ADDSTRING,0,(LPARAM)TEXT("100%"));
if (bitspixel==24) {
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, CB_ADDSTRING,0,(LPARAM)TEXT("75%"));
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, CB_ADDSTRING,0,(LPARAM)TEXT("50%"));
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, CB_ADDSTRING,0,(LPARAM)TEXT("25%"));
}
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, CB_ADDSTRING,0,(LPARAM)TEXT("Half"));
transparent_backup=transparent;
if (bitspixel==24) {
if (transparent==TRANS_100) k=0;
if (transparent==TRANS_75) k=1;
if (transparent==TRANS_50) k=2;
if (transparent==TRANS_25) k=3;
if (transparent==TRANS_HALF) k=4;
transparent=TRANS_25;
} else {
if (transparent==TRANS_100) k=0;
if (transparent==TRANS_HALF) k=1;
transparent=TRANS_HALF;
}
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, CB_SETCURSEL, k,0);
SendDlgItemMessage(hDlg,IDC_TRANSPARENT, WM_SETREDRAW, TRUE, 0L );
SetFocus(GetDlgItem(hDlg, IDOK)); // OKボタンにフォーカスを設定
move_flag=FALSE;
pic_show();
return FALSE; // フォーカスを設定した時はFALSEを返す
case WM_COMMAND: // コマンドを受け取った
switch (wParam) {
case IDC_MOVE_UP: pic_move( 0,-1); break;
case IDC_MOVE_DOWN: pic_move( 0,+1); break;
case IDC_MOVE_LEFT: pic_move(-1, 0); break;
case IDC_MOVE_RIGHT: pic_move(+1, 0); break;
case IDC_MOVE_UP_10: pic_move( 0,-10); break;
case IDC_MOVE_DOWN_10: pic_move( 0,+10); break;
case IDC_MOVE_LEFT_10: pic_move(-10, 0); break;
case IDC_MOVE_RIGHT_10: pic_move(+10, 0); break;
case IDC_ABOUT: OnHelp(ghWnd, wParam, lParam); break;
case IDC_QUIT: OnDestroy(ghWnd, wParam, lParam); break;
case IDC_HIDE: pic_hide();
case IDOK: // [OK]ボタンが押された
case IDCANCEL: // [閉じる]が選択された
k=SendDlgItemMessage( hDlg, IDC_TRANSPARENT, CB_GETCURSEL, 0, 0);
if (bitspixel==24) {
if (k==0) t=TRANS_100;
if (k==1) t=TRANS_75;
if (k==2) t=TRANS_50;
if (k==3) t=TRANS_25;
if (k==4) t=TRANS_HALF;
} else {
if (k==0) t=TRANS_100;
if (k==1) t=TRANS_HALF;
}
transparent=transparent_backup;
if (transparent_backup!=t) {
pic_hide();
pic_show();
transparent=t;
}
EndDialog(hDlg, TRUE); // タイアログ・ボックスを閉じる
control_flag=FALSE;
return TRUE;
}
break;
}
return FALSE; // メッセージを処理しなかった場合はFALSEを返す
}
void control_clock(HWND hWnd)
{
HWND h;
h = CreateWindow(
TEXT("JZC"), // 登録されたウィンドウ・クラスの名前
TEXT("JZC"), // タイトル・バーに表示するテキスト
0, // ウィンドウ・スタイル
gpx, // ウィンドウの表示位置 (水平)
gpy, // (垂直)
gpsx, // ウィンドウの大きさ (幅)
gpsy, // (高さ)
ghWnd, // 親ウィンドウのハンドル
NULL, // ウィンドウ・クラスのメニューを使用
ghInst, // アプリケーション・インスタンスのハンドル
NULL // ウィンドウ作成データのアドレス
);
DialogBox(ghInst, MAKEINTRESOURCE(IDD_CONTROL_DIALOG),h, ControlDlgProc);
if (move_flag==TRUE) {
}
}
LRESULT CALLBACK MainWndProc(HWND hWnd, UINT uMessage,
WPARAM wParam, LPARAM lParam)
{
switch (uMessage) {
case WM_TIMER: jzp_timer(hWnd); break;
case WM_CREATE: OnCreate(hWnd, wParam, lParam); break;
case WM_DESTROY: OnDestroy(hWnd, wParam, lParam); break;
case WM_PAINT: OnPaint(hWnd, wParam, lParam); break;
case WM_HELP: OnHelp(hWnd, wParam, lParam); break;
case WM_NOTIFYICON:
if (lParam==0x201) {
if (hide_flag==TRUE) {
pic_show();
} else {
pic_hide();
}
}
if (lParam==0x203) {
if (hide_flag==FALSE) {
pic_hide();
}
if (control_flag==FALSE) {
control_flag=TRUE;
control_clock(hWnd);
}
}
break;
}
return 0;
}
/* =====================================================================
ウィンドウ作成時の処理
===================================================================== */
void OnCreate(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
RECT rc;
TCHAR Message[256];
GetWindowRect(hWnd, &rc);
winWidth = rc.right - rc.left;
winHeight = rc.bottom - rc.top;
if (winWidth<=240) pspc_flag=TRUE;
else pspc_flag=FALSE;
sch_no=0;
counter=0;
before_st.wMonth=0;
NullDC=GetDC(NULL);
bitspixel=GetDeviceCaps(NullDC,BITSPIXEL);
if (bitspixel==16) bitspixel=24;
if (load_skin(hWnd,TEXT("skin.txt"))==FALSE) {
OnDestroy(hWnd, wParam, lParam);
return;
}
tmp_pic.xsize=gpsx;
tmp_pic.ysize=gpsy;
tmp_pic.bitspixel=24;
tmp_pic.buf=(BYTE *)malloc(gpsx*gpsy*3);
work=(BYTE *)malloc(gpsx*gpsy);
back_pic.xsize=gpsx;
back_pic.ysize=gpsy;
back_pic.bitspixel=24;
back_pic.buf=(BYTE *)malloc(gpsx*gpsy*3);
draw_pic.xsize=gpsx;
draw_pic.ysize=gpsy;
draw_pic.bitspixel=24;
draw_pic.buf=(BYTE *)malloc(gpsx*gpsy*3);
// オフスクリーンの作成
bmi.bmih.biWidth = gpsx;
bmi.bmih.biHeight = gpsy ;
bmi.bmih.biSize = sizeof(bmi.bmih) ;
bmi.bmih.biPlanes = 1 ;
bmi.bmih.biBitCount = 24;
bmi.bmih.biCompression = BI_RGB ;
bmi.bmih.biSizeImage = 0 ;
bmi.bmih.biXPelsPerMeter = 0 ;
bmi.bmih.biYPelsPerMeter = 0 ;
bmi.bmih.biClrUsed = 0 ;
bmi.bmih.biClrImportant = 0 ;
baseBmp = CreateDIBSection( NullDC, (PBITMAPINFO)&bmi.bmih, DIB_RGB_COLORS,
(void **)&baseBuf, NULL, 0 ) ;
if ( !baseBmp ) {
wsprintf( Message, TEXT("baseBmp error (%d)"),GetLastError() ) ;
MessageBox( NULL, Message, TEXT("Error"), MB_OK ) ;
MessageBeep( MB_ICONASTERISK ) ;
return ;
}
baseDC = CreateCompatibleDC( NullDC ) ;
if ( !baseDC ) {
wsprintf( Message, TEXT("baseDC error (%d)"),GetLastError() ) ;
MessageBox( NULL, Message, TEXT("Error"), MB_OK ) ;
DeleteObject( baseBmp);
MessageBeep( MB_ICONASTERISK ) ;
return ;
}
SelectObject( baseDC, baseBmp ) ;
base_pic.bitspixel=24;
base_pic.buf=baseBuf;
base_pic.xsize=gpsx;
base_pic.ysize=gpsy;
if (bitspixel==8) {
bmi.bmih.biWidth = 1;
bmi.bmih.biHeight = 1 ;
bmi.bmih.biBitCount = 8;
tmp256Bmp = CreateDIBSection( NullDC, (PBITMAPINFO)&bmi.bmih, DIB_RGB_COLORS,
(void **)&tmp256Buf, NULL, 0 ) ;
if ( !tmp256Bmp ) {
wsprintf( Message, TEXT("tmp256Bmp error (%d)"),GetLastError() ) ;
MessageBox( NULL, Message, TEXT("Error"), MB_OK ) ;
MessageBeep( MB_ICONASTERISK ) ;
return ;
}
tmp256DC = CreateCompatibleDC( NullDC ) ;
if ( !tmp256DC ) {
wsprintf( Message, TEXT("baseDC error (%d)"),GetLastError() ) ;
MessageBox( NULL, Message, TEXT("Error"), MB_OK ) ;
DeleteObject( tmp256Bmp);
MessageBeep( MB_ICONASTERISK ) ;
return ;
}
SelectObject( tmp256DC, baseBmp ) ;
}
get_display_depth(&base_pic);
get_background_flag=TRUE;
hide_flag=FALSE;
next_tick=0;
// jzp_timer(ghWnd);
SetTimer(hWnd, 900,1,NULL);
}
/* =====================================================================
ウィンドウ破棄時の処理
===================================================================== */
void OnDestroy(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
ReleaseMutex(mutex);
ReleaseMutex(mutex);
DeleteTaskBarIcon( ghWnd, IDI_MAIN_ICON ) ;
set_initial_background();
PostQuitMessage(0);
}
/* =====================================================================
画面の描画
===================================================================== */
void OnPaint(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
PAINTSTRUCT ps;
HDC hDC;
SetFocus(hWnd);
hDC = BeginPaint(hWnd, &ps);
EndPaint(hWnd, &ps);
}
void mouse_down(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
}
void mouse_move(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
}
void mouse_up(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
}
/* =====================================================================
ヘルプボタンが押された
===================================================================== */
void OnHelp(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
OnHelpAbout(hWnd);
}
/* =====================================================================
ファイル・メニュー - 終了
===================================================================== */
void OnFileExit(HWND hWnd)
{
SendMessage(hWnd, WM_CLOSE, 0, 0L);
}
/* =====================================================================
ヘルプ・メニュー - バージョン情報の表示
===================================================================== */
void OnHelpAbout(HWND hWnd)
{
DialogBox(ghInst, MAKEINTRESOURCE(IDD_ABOUT_DIALOG),
hWnd, AboutDlgProc);
}
/* =====================================================================
バージョン情報の表示ダイアログ
===================================================================== */
BOOL CALLBACK AboutDlgProc(HWND hDlg, UINT uMessage,
WPARAM wParam, LPARAM lParam)
{
switch (uMessage) {
case WM_INITDIALOG: // ダイアログ・ボックスの初期化
SetFocus(GetDlgItem(hDlg, IDOK)); // OKボタンにフォーカスを設定
return FALSE; // フォーカスを設定した時はFALSEを返す
case WM_COMMAND: // コマンドを受け取った
switch (wParam) {
case IDOK: // [OK]ボタンが押された
case IDCANCEL: // [閉じる]が選択された
EndDialog(hDlg, TRUE); // タイアログ・ボックスを閉じる
return TRUE;