質問編集履歴

2

編集

2020/06/19 05:11

投稿

KZK13
KZK13

スコア43

test CHANGED
File without changes
test CHANGED
@@ -573,3 +573,189 @@
573
573
  }
574
574
 
575
575
  ```
576
+
577
+
578
+
579
+ if文のmodoruを使っていたプログラムを正しく動くように書き直しました。
580
+
581
+ ```
582
+
583
+ #include "DxLib.h"
584
+
585
+
586
+
587
+ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
588
+
589
+ {
590
+
591
+ char String[256];
592
+
593
+ int InputHandle;
594
+
595
+ int modoru = 0;
596
+
597
+ int modoruframe = 0;
598
+
599
+
600
+
601
+ SetGraphMode(700, 780, 32); // ウィンドウの大きさを指定
602
+
603
+ ChangeWindowMode(TRUE); // 全画面ではなくウインドウを使用
604
+
605
+ // DXライブラリの初期化
606
+
607
+ if (DxLib_Init() == -1) return -1;
608
+
609
+
610
+
611
+ // 描画先を裏にする
612
+
613
+ SetDrawScreen(DX_SCREEN_BACK);
614
+
615
+
616
+
617
+ // キー入力ハンドルを作る(キャンセルなし全角文字有り数値入力じゃなし)
618
+
619
+ InputHandle = MakeKeyInput(50, FALSE, FALSE, FALSE);
620
+
621
+
622
+
623
+ // 作成したキー入力ハンドルをアクティブにする
624
+
625
+ SetActiveKeyInput(InputHandle);
626
+
627
+
628
+
629
+ // キー入力終了待ちループ
630
+
631
+ // (ProcessMessageをループごとに行う)
632
+
633
+ if (modoru == 0) {
634
+
635
+
636
+
637
+ while (ProcessMessage() == 0)
638
+
639
+ {
640
+
641
+
642
+
643
+ // 画面の初期化
644
+
645
+ ClearDrawScreen();
646
+
647
+
648
+
649
+ //まずは描画する部分から作る。
650
+
651
+ // 入力モードを描画
652
+
653
+ DrawKeyInputModeString(640, 480);
654
+
655
+ // 入力途中の文字列を描画
656
+
657
+ DrawKeyInputString(0, 0, InputHandle);
658
+
659
+ // 入力が終了している場合は終了
660
+
661
+ //エンターキーが押されていないとき
662
+
663
+ if (CheckKeyInput(InputHandle) != 0) {
664
+
665
+
666
+
667
+ // 入力された文字列を取得
668
+
669
+ GetKeyInputString(String, InputHandle);
670
+
671
+ DrawString(0, 0, String, GetColor(255, 255, 255));
672
+
673
+
674
+
675
+ // DrawFormatString(100, 150, GetColor(255, 255, 0), "ProcessMessage()は%d,modoruは%d", ProcessMessage(), modoru);
676
+
677
+ modoru = 1;
678
+
679
+ // 裏画面の内容を表画面に反映させる
680
+
681
+
682
+
683
+ // 再度インプットハンドルをアクティブにする
684
+
685
+ SetActiveKeyInput(InputHandle);
686
+
687
+ // 入力文字列を初期化する
688
+
689
+ SetKeyInputString("", InputHandle);
690
+
691
+ }
692
+
693
+ // 入力された文字列を画面に表示する
694
+
695
+ //関数ProcessMessage()にエラーがない限りループの外には出ず、ループはずっと続くのでProcessMessage()内にif文を書いた。
696
+
697
+ if (modoru == 1) {
698
+
699
+ // DrawString(0, 300, "あなたが入力した文字列は", GetColor(255, 255, 255));
700
+
701
+ DrawString(0, 16, String, GetColor(255, 255, 255));
702
+
703
+
704
+
705
+ }
706
+
707
+
708
+
709
+ //ProcessMessage()は1のままでここに書くことで上のif文の描画関数すべて関わるのでここにScreenFlip()を描けばよい。
710
+
711
+ ScreenFlip();
712
+
713
+
714
+
715
+ }
716
+
717
+ }
718
+
719
+
720
+
721
+
722
+
723
+ // 用済みのインプットハンドルを削除する
724
+
725
+ DeleteKeyInput(InputHandle);
726
+
727
+
728
+
729
+ ClearDrawScreen();
730
+
731
+
732
+
733
+
734
+
735
+ // 裏画面の内容を表画面に反映させる
736
+
737
+ ScreenFlip();
738
+
739
+
740
+
741
+ // キー入力待ち
742
+
743
+ // WaitKey();
744
+
745
+
746
+
747
+ // DXライブラリの使用終了
748
+
749
+ DxLib_End();
750
+
751
+
752
+
753
+ // 終了
754
+
755
+ return 0;
756
+
757
+ }
758
+
759
+
760
+
761
+ ```

1

編集

2020/06/19 05:11

投稿

KZK13
KZK13

スコア43

test CHANGED
File without changes
test CHANGED
@@ -359,3 +359,217 @@
359
359
 
360
360
 
361
361
  ```
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+ あの後、epistemeさんから頂いたプログラムを自分なりに少しいじり、あることに気が付いたのですが、
370
+
371
+ char buffer[256];を使わずに、関数strcmpを使うと、関数strcmpの方で入力した文字をバッファに入れるなどを自動でやってくれているためchar buffer[256];を使わなくても同じような結果が得られたのでしょうか?
372
+
373
+ ```
374
+
375
+ #include "DxLib.h"
376
+
377
+ #include <string>
378
+
379
+
380
+
381
+ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
382
+
383
+ {
384
+
385
+ char String[256];
386
+
387
+ int InputHandle;
388
+
389
+ int modoru = 0;
390
+
391
+ std::string input;
392
+
393
+ std::string message;
394
+
395
+ int duration = 0;
396
+
397
+
398
+
399
+ SetGraphMode(700, 780, 32); // ウィンドウの大きさを指定
400
+
401
+ ChangeWindowMode(TRUE); // 全画面ではなくウインドウを使用
402
+
403
+ // DXライブラリの初期化
404
+
405
+ if (DxLib_Init() == -1) return -1;
406
+
407
+
408
+
409
+ // 描画先を裏にする
410
+
411
+ SetDrawScreen(DX_SCREEN_BACK);
412
+
413
+
414
+
415
+ // キー入力ハンドルを作る(キャンセルなし全角文字有り数値入力じゃなし)
416
+
417
+ InputHandle = MakeKeyInput(50, FALSE, FALSE, FALSE);
418
+
419
+
420
+
421
+ // 作成したキー入力ハンドルをアクティブにする
422
+
423
+ SetActiveKeyInput(InputHandle);
424
+
425
+
426
+
427
+ // キー入力終了待ちループ
428
+
429
+ // (ProcessMessageをループごとに行う)
430
+
431
+
432
+
433
+ while (ProcessMessage() == 0)
434
+
435
+ {
436
+
437
+
438
+
439
+ // 画面の初期化
440
+
441
+ ClearDrawScreen();
442
+
443
+
444
+
445
+ //まずは描画する部分から作る。
446
+
447
+ // 入力モードを描画
448
+
449
+ DrawKeyInputModeString(640, 480);
450
+
451
+ // 入力途中の文字列を描画
452
+
453
+ DrawKeyInputString(0, 0, InputHandle);
454
+
455
+
456
+
457
+
458
+
459
+ //その後にif文での分岐を考える。
460
+
461
+ // 入力が終了している場合は終了
462
+
463
+ //ループ内とは言えエンターキー一回でCheckKeyInputが呼べればいい。
464
+
465
+ //エンターキーが押されていないとき?の部分。
466
+
467
+ if (CheckKeyInput(InputHandle) != 0) {
468
+
469
+ // 入力された文字列を取得
470
+
471
+ // char buffer[256];//
472
+
473
+ // 入力された文字列を取得
474
+
475
+ GetKeyInputString(String, InputHandle);
476
+
477
+ // input = buffer;
478
+
479
+ DrawString(0, 0, String, GetColor(255, 255, 255));
480
+
481
+ if (strcmp(String, "hello") == 0) {
482
+
483
+ message = "hello! my friend!!";
484
+
485
+ }
486
+
487
+ else {
488
+
489
+ message = "not 'hello'";
490
+
491
+ }
492
+
493
+ duration = 1;
494
+
495
+ // 再度インプットハンドルをアクティブにする
496
+
497
+ SetActiveKeyInput(InputHandle);
498
+
499
+ // 入力文字列を初期化する
500
+
501
+ SetKeyInputString("", InputHandle);
502
+
503
+
504
+
505
+ }
506
+
507
+
508
+
509
+ // DrawFormatString(100, 150, GetColor(255, 255, 0), "ProcessMessage()は%d,modoruは%d", ProcessMessage(), modoru);
510
+
511
+
512
+
513
+ DrawString(100, 500, message.c_str(), GetColor(200, 200, 255));
514
+
515
+
516
+
517
+ // 裏画面の内容を表画面に反映させる
518
+
519
+ ScreenFlip();
520
+
521
+
522
+
523
+
524
+
525
+
526
+
527
+
528
+
529
+
530
+
531
+ }
532
+
533
+
534
+
535
+ // 用済みのインプットハンドルを削除する
536
+
537
+ DeleteKeyInput(InputHandle);
538
+
539
+
540
+
541
+ // 画面の初期化
542
+
543
+ ClearDrawScreen();
544
+
545
+
546
+
547
+
548
+
549
+ // 裏画面の内容を表画面に反映させる
550
+
551
+ ScreenFlip();
552
+
553
+
554
+
555
+ // キー入力待ち
556
+
557
+ // WaitKey();
558
+
559
+
560
+
561
+ //ループないやループから出た後で何かしらの問題が発生したら終了する。
562
+
563
+ // DXライブラリの使用終了
564
+
565
+ DxLib_End();
566
+
567
+
568
+
569
+ // 終了
570
+
571
+ return 0;
572
+
573
+ }
574
+
575
+ ```