-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication_charpak.java
2615 lines (2556 loc) · 87.1 KB
/
application_charpak.java
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
import java.awt.*;
import java.util.*;
import java.awt.*;
import java.util.*;
import java.awt.event.*;
import java.text.*;
public class application_charpak{
static appli_charpak applic_charpak;
public static void main(String[] args) {
applic_charpak=new appli_charpak("Fenetre initiale");
applic_charpak.run();
}
}
class appli_charpak extends Frame{
static final float pi=(float)3.141592652;
static final float eps0=1/(36*pi*10*(float)Math.pow((float)10000.0,2));
static final int dim=31,top_stop=60,left_stop=20,bottom_stop=100,right_stop=100,top_stop_cree=420,left_stop_cree=20,bottom_stop_cree=460,right_stop_cree=200,top_cree=320,left_cree=20,bottom_cree=360,right_cree=200;
final int top_demarre=300;
final int left_demarre=50;
final int bottom_demarre=480;
final int right_demarre=800;
Image image,image_method;
public ensemble_de_chambres ensemble[]=new ensemble_de_chambres[2];
int ppmouseh;int ppmousev;Graphics gr;
boolean relachee=false,pressee=false,cliquee=false,draguee=false;
long temps_en_sec=0;int i_run;
boolean creation_ensembles,demo_a_faire=true,dessiner_menu_principal_ou_fin=false;
long temps_initial_en_sec,temps_initial_en_sec_prec=0,temps_minimum=360;
String d_ou_je_reviens;
boolean fils_crees=false,terminer_demo=false,demo_faite=false;
private SimpleDateFormat formatter;
Color orange_pale;
int n_ensembles;
private MouseStatic mm;//Thread Th1;
boolean toutdebut,run_applet,dejapaint;
Font times14=new Font("Times",Font.PLAIN,14);
Font times_gras_14=new Font("Times",Font.BOLD,14);
Font times_gras_24=new Font("Times",Font.BOLD,24);
appli_charpak(String stri){
super(stri);
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
if(ensemble[0]!=null){
ensemble[0].dispose();
ensemble[0]=null;
}
if(ensemble[1]!=null){
ensemble[1].dispose();
ensemble[1]=null;
}
dispose();
System.exit(0);
};
});
toutdebut=true; dejapaint=false;
run_applet=true;
System.out.println("init applet");
mm=new MouseStatic(this);
this.addMouseListener(mm);
setBackground(Color.white);
formatter=new SimpleDateFormat ("EEE MMM dd hh:mm:ss yyyy", Locale.getDefault());
Date maintenant=new Date();orange_pale=new Color(140,90,0);
temps_initial_en_sec=temps_en_secondes(maintenant);
System.out.println("maintenant "+maintenant+" s "+temps_initial_en_sec);
creation_ensembles=true;fils_crees=false;
relachee=false;pressee=false;cliquee=false;draguee=false;
pack();setVisible(true);
setSize(1000,800);
setLocation(0,0);
gr= getGraphics();
String name="C:/Users/benoit Delcourt/Desktop/j2sdk1.4.2_04/bin/charpak_premiere_page.jpg";
image=createImage(400,400);
Graphics gTTampon=image.getGraphics();
image=Toolkit.getDefaultToolkit().getImage(name);
MediaTracker tracker=new MediaTracker(this);
tracker.addImage(image,1);
try {tracker.waitForAll(); }
catch (InterruptedException e){
System.out.println(" image pas arrivee?");
}
//g.drawImage(image2,555,0,null);
gr.drawImage(image,450,30,this);
gTTampon.dispose();
}
public long temps_en_secondes(Date nun){
formatter.applyPattern("s");
int s=Integer.parseInt(formatter.format(nun));
formatter.applyPattern("m");
int m=Integer.parseInt(formatter.format(nun));
formatter.applyPattern("h");
int h=Integer.parseInt(formatter.format(nun));
//System.out.println(" h "+h+" m "+m+" s "+s);
return (h*3600+m*60+s);
}
public void run(){
int isleep=20;
System.out.println(" Run ");
relachee=false;pressee=false;cliquee=false;draguee=false;
fin_de_programme:
while (run_applet){
Date now=new Date();
temps_en_sec=temps_en_secondes(now);
//System.out.println("temps_en_sec "+temps_en_sec);
if(temps_en_sec-temps_initial_en_sec>temps_minimum){
run_applet=true;break fin_de_programme;
}
//if((peindre&&(!creation_ensembless))||creation_ensembles)
if(toutdebut){
dessiner_menu_principal_ou_fin=false;
terminer_demo=false;
if(demo_a_faire){
n_ensembles=0;
gr.drawImage(image,450,30,this);
for(int iii=0;iii<2;iii++)
if(!cliquee){
creation_d_un_ensemble(iii,-1);
n_ensembles++;
}else{
cliquee=false;
terminer_demo=true;
break;
}
demo_a_faire=false;
}
if(!terminer_demo)
if(!cliquee){
for(int iii=1;iii>=0;iii--)
if(ensemble[iii]!=null){
if(ensemble[iii].comm!=null)
if(ensemble[iii].comm.vas_y_dessine){
ensemble[iii].comm.dessine_image();
ensemble[iii].comm.vas_y_dessine=false;
}
if(ensemble[iii].command==""){
if(ensemble[iii].du_nouveau_a_voir)
ensemble[iii].peint_ens();
//System.out.println(" cliquee "+cliquee);
}else{
//System.out.println("commande "+ensemble[iii].command+" iii "+iii);
ensemble[iii].traite_commande();
//ensemble[iii].command="";
}
}
//System.out.println(" cliquee "+cliquee);
}else{
terminer_demo=true;
fermer_ensembles();
toutdebut=false;
dessiner_menu_principal_ou_fin=true;
System.out.println(" terminer_demo ");
}
}else{
System.out.println(" vers paint,run_applet "+run_applet);
if(dessiner_menu_principal_ou_fin)
menu_principal_et_fin();
System.out.println(" &&&&vers paint ");
if(d_ou_je_reviens!=""){
System.out.println("d_ou_je_reviens "+d_ou_je_reviens+" n_ensembles "+n_ensembles);
n_ensembles=0;
}
if(creation_ensembles)
demarrer_application();
if(d_ou_je_reviens!=""){
System.out.println("***d_ou_je_reviens "+d_ou_je_reviens+" n_ensembles "+n_ensembles);
d_ou_je_reviens="";
}
//System.out.println(" apres creer_chambres");
if(n_ensembles!=0)
for(int ii=0;ii<n_ensembles;ii++){
if(ensemble[ii].comm!=null)
if(ensemble[ii].comm.vas_y_dessine){
ensemble[ii].comm.dessine_image();
ensemble[ii].comm.vas_y_dessine=false;
}
if(ensemble[ii].du_nouveau_a_voir){
ensemble[ii].peint_ens();
if(ensemble[ii].le_virer){
toutdebut=ensemble[ii].command=="Revenir a la page initiale avec infos";
if(toutdebut){
demo_a_faire=true;
terminer_demo=false;
dessiner_menu_principal_ou_fin=false;
creation_ensembles=false;
eraserect(gr,0,0,1000,1200,Color.white);
}else
dessiner_menu_principal_ou_fin=true;
creation_ensembles=true;
d_ou_je_reviens=ensemble[ii].command;
fermer_ensembles();
break;
}
}
}
}
i_run++;if(i_run==20)i_run=0;
//System.out.println("isleep");
try {Thread.sleep(isleep);}
catch (InterruptedException signal){System.out.println("catch ");}
}
System.out.println(" run_applet "+run_applet);
menu_principal_et_fin();
for(int ii=0;ii<n_ensembles;ii++){
if(ensemble[ii].comm!=null)ensemble[ii].comm.dispose();
ensemble[ii].dispose();
}
dispose();
}
void demarrer_application(){
//System.out.println("dem relachee "+relachee+" pressee "+pressee);
if(cliquee){
// if(relachee&&pressee){
System.out.println("11");
int xi=ppmouseh;int yi=ppmousev;
cliquee=false;
if ((xi > left_demarre)&&(xi < right_demarre)){
for(int i=0;i<=3;i++){
if ((yi > top_demarre+i*20)&&(yi < top_demarre+(i+1)*20)){
if(i<=1)
n_ensembles=2;
else
n_ensembles=1;
for(int iii=0;iii<n_ensembles;iii++)
creation_d_un_ensemble(iii,i);
for(int iii=0;iii<n_ensembles;iii++){
ensemble[iii].du_nouveau_a_voir=true;
ensemble[iii].peint_ens();
}
relachee=false;pressee=false;
creation_ensembles=false;
}
}
}
}
}
public void creation_d_un_ensemble(int iii,int i_demarre){
String str="";
if(i_demarre==0)str="Chambre unique a 4 fils";
if(i_demarre==1)str="Chambre a derive a fils";
if(i_demarre<=1)
if(iii==0)
str+=", fils au meme potentiel";
else
str+=", fils a deux potentiels differents.";
if(i_demarre==2)str="4 chambres a fils.";
if(i_demarre==3)str="1 chambre a derive et 2 chambres a fils a potentiels alternes";
System.out.println(" creation_d_un_ensemble iii "+iii+" i_demarre "+i_demarre);
ensemble[iii]=new ensemble_de_chambres(str, iii,i_demarre, this);
ensemble[iii].comment_init="";
//setVisible(false);
//ensemble[iii].setVisible(false);ensemble[iii].setVisible(true);
System.out.println(" ensemble "+iii);
}
public void menu_principal_et_fin(){
System.out.println("deb dans paint, toutdebut"+toutdebut);
System.out.println("passage dans paint,dejapaint "+dejapaint);
dessiner_menu_principal_ou_fin=false;
if(run_applet){
dejapaint=true;
eraserect(gr, 0,0,1000,1000,Color.white);
//if(creation_ensembles){
System.out.println(" top_cree "+top_cree);
int ppv;
gr.setColor(Color.red);
gr.setFont(times_gras_24);
gr.drawString("Cliquez dans ce menu pour un ensemble de chambres de votre choix.",left_demarre, top_demarre-20);
gr.setFont(times14);
paintrect_couleur(gr,top_demarre,left_demarre,bottom_demarre,right_demarre,Color.red);
gr.setFont(times_gras_24);
gr.setColor(Color.black);
gr.setColor(Color.blue);gr.setFont(times14);
drawline_couleur(gr,left_demarre, top_demarre+20, right_demarre, top_demarre+20, Color.red);
gr.drawString("Chambre unique a 4 fils au meme potentiel ou potentiels alternes.",left_demarre+10, top_demarre+14);//0
drawline_couleur(gr,left_demarre, top_demarre+40, right_demarre, top_demarre+40, Color.red);
gr.drawString("Chambre a derive a fils au meme potentiel ou potentiels alternes.",left_demarre+10, top_demarre+34);//1
drawline_couleur(gr,left_demarre, top_demarre+60, right_demarre, top_demarre+60, Color.red);
gr.drawString("Detecteur avec 4 chambres a fils en coincidence.",left_demarre+10, top_demarre+54);//2
drawline_couleur(gr,left_demarre, top_demarre+80, right_demarre, top_demarre+80, Color.red);
gr.drawString("Detecteur avec une chambre a derive et 2 chambres a fils en coincidence.",left_demarre+10, top_demarre+74);//3
drawline_couleur(gr,left_demarre, top_demarre+100, right_demarre, top_demarre+100, Color.red);
gr.drawString("",left_demarre+10, top_demarre+94);//4
drawline_couleur(gr,left_demarre,top_demarre+120, right_demarre, top_demarre+120, Color.red);
gr.drawString("",left_demarre+10, top_demarre+114);//5
drawline_couleur(gr,left_demarre,top_demarre+140, right_demarre,top_demarre+140, Color.red);
drawline_couleur(gr,left_demarre,top_demarre+160, right_demarre,top_demarre+160, Color.red);
}else{
System.out.println("erase gr ");
eraserect( gr,0,0,1000,1000,Color.white);
gr.setFont(times_gras_24);gr.setColor(Color.black);
if(temps_en_sec-temps_initial_en_sec>temps_minimum){
for(int i=0;i<20;i++)
gr.drawString("TEMPS MAXIMUM EXPIRE",100,100);
}
for(int i=0;i<20;i++){
gr.drawString("FIN DU PROGRAMME",100,150);
gr.drawString("POUR REVENIR A INTERNET, SUPPRIMEZ CETTE FENETRE.",100,200);
}
}
}
void fermer_ensembles(){
eraserect(gr,0,0,1000,1000,Color.white);
for(int i=0;i<n_ensembles;i++){
if(ensemble[i].comm!=null)
ensemble[i].comm.dispose();
ensemble[i].dispose();
ensemble[i]=null;
}
//setVisible(true);
d_ou_je_reviens="je reviens de num_fen";
n_ensembles=0;
cliquee=false;
relachee=false;
pressee=false;
}
void drawline_couleur(Graphics g,int xin, int yin, int xfin, int yfin, Color couleur)
{
g.setColor(couleur);g.drawLine(xin,yin,xfin,yfin);
}
void paintrect_couleur(Graphics g,int top, int left, int bot, int right, Color couleur)
{int x,y,width,height;
x=left;y=top;width=right-left;height=bot-top;
g.setColor(couleur);g.drawRect(x,y,width,height);
}
void remplisrect(Graphics g,int top, int left, int bot, int right, Color couleur)
{int x,y,width,height;
x=left;y=top;width=right-left;height=bot-top;
g.setColor(couleur);g.fillRect(x,y,width,height);
}
void paintrect(Graphics g,int top, int left, int bot, int right)
{int x,y,width,height;
x=left;y=top;width=right-left;height=bot-top;
g.setColor(Color.black);g.drawRect(x,y,width,height);
}
void paintcircle(Graphics g,int xx, int yy, int rr)
{int x,y,r;
x=xx;y=yy;r=rr;
g.setColor(Color.blue);g.fillOval(x,y,r,r);
}
// void eraserect(Graphics g, int top, int left, int bot, int right)
//{int x,y,width,height;
//x=left;y=top;width=right-left;height=bot-top;
//g.setColor(Color.white);g.fillRect(x,y,width,height);
//}
void eraserect(Graphics g, int top, int left, int bot, int right,Color couleur){
//System.out.println("couleur "+couleur);
int x,y,width,height;
x=left;y=top;width=right-left;height=bot-top;
g.setColor(couleur);g.fillRect(x,y,width,height);
}
void invertrect(Graphics g,int top, int left, int bot, int right)
{int x,y,width,height;
x=left;y=top;width=right-left;height=bot-top;
//g.setColor(Color.black);g.fillRect(x,y,width,height);
}
void paintcircle_couleur (Graphics g,long x,long y, long r,Color couleur)
{
g.setColor(couleur);g.fillOval((int)(x-r/2),(int)(y-r/2),(int)r,(int)r);
}
public void traite_click(){
System.out.println("entree traite_click "+"cliquee "+cliquee+"pressee "+pressee+"relachee "+relachee);
Date maintenant=new Date();
temps_initial_en_sec=temps_en_secondes(maintenant);
if(cliquee){
if(temps_initial_en_sec<temps_initial_en_sec_prec+2){
cliquee=false;pressee=false;relachee=false;
}else
temps_initial_en_sec_prec=temps_initial_en_sec;
}
if(cliquee&&!toutdebut&&n_ensembles!=0){
cliquee=false;pressee=false;relachee=false;
for(int ik=0;ik<n_ensembles;ik++){
ensemble[ik].le_virer=true;
ensemble[ik].command="Revenir a la fenetre principale";
}
}
}
class MouseStatic extends MouseAdapter{
appli_charpak subject;
public MouseStatic (appli_charpak a){
subject=a;
}
public void mouseClicked(MouseEvent e){
ppmouseh=e.getX();ppmousev=e.getY();
cliquee=true;
System.out.println("cliquee "+cliquee);
traite_click();
//for( int iq=0;iq<ens_de_cyl[icylindre].nb_el_ens;iq++)
}
public void mousePressed(MouseEvent e){
ppmouseh=e.getX();ppmousev=e.getY();pressee=true;
System.out.println("pressee "+pressee);
traite_click();
}
public void mouseReleased(MouseEvent e){
ppmouseh=e.getX();ppmousev=e.getY();cliquee=true;relachee=true;
System.out.println("relachee "+relachee);
}
}
}
class ensemble_de_chambres extends Frame implements ActionListener{
static final int top_ens_cyl=0,left_ens_cyl=10,bottom_ens_cyl=350,right_ens_cyl=800,top_ens_cyl1=0,left_ens_cyl1=0,bottom_ens_cyl1=800,right_ens_cyl1=500;
float ddd=(float)0.,scala=(float)0.,dist_min=1000;point toto,toto1;
float coco=(float)0.,cucu=(float)0.,caca=(float)0.,cici=(float)0.,cece=(float)0.;
float deux_pi_eps0=0;
int coco_int=0,cucu_int=0,caca_int=0,cece_int=0,i_fil=0;
static final float pixels_par_metre=(float)2.E4;
static final float vitesse_ohm=(float)1.5;
public chambre kammer[]=new chambre[6];
long temps_initial_en_sec_prec=0;
boolean fin_gerelesmenus_avec_souris,ret,stopper,du_nouveau_a_voir,occupied=false,le_virer=false;
int ppmouseh,ppmousev,ppmouseh_prec,ppmousev_prec;
String command_prec="",command="",comment="Utilisez les menus",comment_init="",comment_prec="";
private TextField tf;private keyList kl;boolean key_entered;
Graphics grp_ensemble;
public electr electron[]=new electr[200];
private MouseStatic mm;int nb_mouse;private MouseMotion motion;
int n_paint; boolean relachee,pressee,cliquee,draguee;
int n_counts;int i_demarre,n_chambres;
static commentaire comm;
int i_ens;appli_charpak subject;MenuBar mb1;
int nimage=10,npt_equipot=0;boolean montrer_cosmiques,equipoting=false;
boolean calcul_equip,show_forces;boolean trouve_deplacement;
point point_in,point_f;int bandeau_x,bandeau_y;
ensemble_de_chambres(String s, int i_ens1,int i_demarre1,appli_charpak sub1){
super(s);
subject=sub1;
deux_pi_eps0=2*subject.pi*subject.eps0;
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
le_virer=true;du_nouveau_a_voir=true;
command="Revenir a la page principale";
};
});
i_demarre=i_demarre1;
i_ens=i_ens1;command="";
bandeau_x=20;
if(i_demarre<=0||i_demarre==2)
bandeau_y=60;
else if(i_demarre==3){
bandeau_x=200;
bandeau_y=bottom_ens_cyl1-170;;
}else
bandeau_y=bottom_ens_cyl1-100;
mb1=null;
barre_des_menus();
toto=new point((float)0.,(float)0.);
toto1=new point((float)0.,(float)0.);
montrer_cosmiques=false;equipoting=false;
point_in=new point((float)0.,(float)0.);point_f=new point((float)0.,(float)0.);
mm=new MouseStatic(this);
this.addMouseListener(mm);
motion=new MouseMotion(this);
this.addMouseMotionListener(motion);
pack();
if(i_demarre==-1){
setSize(right_ens_cyl/2-left_ens_cyl/2,bottom_ens_cyl-top_ens_cyl);
setLocation(left_ens_cyl,top_ens_cyl+i_ens*350);
}
if(i_demarre==0){
setSize(right_ens_cyl-left_ens_cyl,bottom_ens_cyl-top_ens_cyl);
setLocation(left_ens_cyl,top_ens_cyl+i_ens*350);
}
if(i_demarre==1){
setSize(right_ens_cyl1-left_ens_cyl1,bottom_ens_cyl1-top_ens_cyl1);
setLocation(left_ens_cyl1+i_ens*500,top_ens_cyl1);
}
if(i_demarre>1){
setSize(right_ens_cyl-left_ens_cyl,2*(bottom_ens_cyl-top_ens_cyl)+50);
setLocation(left_ens_cyl,top_ens_cyl);
}
setVisible(true);
grp_ensemble=getGraphics();
du_nouveau_a_voir=true;
if(i_demarre<=1)
n_chambres=1;
if(i_demarre==2)n_chambres=4;
if(i_demarre==3)n_chambres=3;
for(int i=0;i<n_chambres;i++)
if(i_demarre<=0)
if(i_ens==0)
kammer[i]=new chambre_a_fils_horizontale(i,false);
else
kammer[i]=new chambre_a_fils_horizontale(i,true);
else if(i_demarre==1)
if(i_ens==0)
kammer[i]=new chambre_a_fils_verticale(i,false);
else
kammer[i]=new chambre_a_fils_verticale(i,true);
else if(i_demarre==2)
kammer[i]=new chambre_a_fils_horizontale(i,false);
else if(i_demarre==3)
if(i==0||i==2)
kammer[i]=new chambre_a_fils_horizontale(i,false);
else
kammer[i]=new chambre_a_fils_verticale(i,true);
for(int i=0;i<n_chambres;i++)
System.out.println("kammer[i].pot_alternes "+kammer[i].pot_alternes );
}
static class commentaire extends Frame{
final int top=100,left=250,bottom=600,right=830;
//final int top=0,left=0,bottom=700,right=900;
boolean vas_y_dessine=true;
int i_demarre;int nb_lignes=10;
Graphics grp_c; Image image_method;Graphics gTTampon;MediaTracker tracker1;
commentaire(String s){
super(s);
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
comm=null;
dispose();
};
});
//pack();
setSize(right-left,bottom-top);
setLocation(left,top);
setVisible(true);
grp_c= getGraphics();
System.out.println("cree graphe "+s+" i_demarre "+i_demarre );
String name="C:/Users/benoit Delcourt/Desktop/j2sdk1.4.2_04/bin/charpak_method.jpg";
image_method=createImage(400,400);
gTTampon=image_method.getGraphics();
image_method=Toolkit.getDefaultToolkit().getImage(name);
tracker1=new MediaTracker(this);
tracker1.addImage(image_method,1);
try {tracker1.waitForAll(); }
catch (InterruptedException e){
System.out.println(" image pas arrivee?");
}
}
void dessine_image(){
for (int ich=0;ich<1;ich++)
grp_c.drawImage(image_method,30,60,this);
}
}
public void barre_des_menus(){
System.out.println("i_demarre "+i_demarre);
mb1=new MenuBar();
if(i_demarre<=1){
Menu operations_sur_elements= new Menu("modifier la chambre");
MenuItem itepq3=new MenuItem("deplacer une plaque");
MenuItem itep3=new MenuItem("deplacer un fil");
MenuItem itep1=new MenuItem("eliminer un fil");
MenuItem itepp=new MenuItem("creer un fil sensible");
MenuItem iterr=new MenuItem("creer un fil de champ");
operations_sur_elements.add(itepq3);
itepq3.addActionListener(this);
operations_sur_elements.add(itep3);
itep3.addActionListener(this);
operations_sur_elements.add(itep1);
itep1.addActionListener(this);
operations_sur_elements.add(itepp);
itepp.addActionListener(this);
operations_sur_elements.add(iterr);
iterr.addActionListener(this);
if(i_demarre!=-1){
MenuItem itep=new MenuItem("augmenter v_champ de 150V");
MenuItem iter=new MenuItem("diminuer v_champ de 150V");
operations_sur_elements.add(itep);
itep.addActionListener(this);
operations_sur_elements.add(iter);
iter.addActionListener(this);
}
mb1.add(operations_sur_elements);
}
Menu actions= new Menu("Actions");
if(i_demarre<=1){
MenuItem itep00=new MenuItem("montrer chambre");
MenuItem itep11=new MenuItem("montrer_forces");
MenuItem itep22=new MenuItem("montrer champs supplementaires");
actions.add(itep11);
itep11.addActionListener(this);
if((i_demarre<=0)||(i_demarre==1)){
MenuItem itep111=new MenuItem("montrer_equipotentielles");
actions.add(itep111);
itep111.addActionListener(this);
}
actions.add(itep22);
itep22.addActionListener(this);
actions.add(itep00);
itep00.addActionListener(this);
}
MenuItem itep33=new MenuItem("montrer 3 cosmiques");
if((i_demarre==1)||(i_demarre==3))itep33=new MenuItem("montrer un cosmique");
actions.add(itep33);
itep33.addActionListener(this);
mb1.add(actions);
Menu meth= new Menu("Methode utilisee");
MenuItem itebc1=new MenuItem("Methode utilisee");
itebc1.addActionListener(this);
meth.add(itebc1);
mb1.add(meth);
if(i_demarre!=-1){
Menu revenir= new Menu("Sortir");
MenuItem iteb1=new MenuItem("Revenir a la page principale");
revenir.add(iteb1);
iteb1.addActionListener(this);
MenuItem iteb11=new MenuItem("Revenir a la page initiale avec infos");
revenir.add(iteb11);
iteb11.addActionListener(this);
MenuItem iteb12=new MenuItem("Sortir du programme");
revenir.add(iteb12);iteb12.addActionListener(this);
mb1.add(revenir);
}
setMenuBar( mb1);
//pack();setVisible(true);
}
public void peint_ens(){
if(du_nouveau_a_voir){
if(!le_virer)
du_nouveau_a_voir=false;
System.out.println(" peint_ens i_ens "+i_ens);
subject.eraserect(grp_ensemble,0,0,1000,1000,Color.white);
ecrire_bandeau();
grp_ensemble.setColor(Color.blue);
for(int i=0;i<n_chambres;i++)
kammer[i].paint();
}
}
public void traite_click(){
System.out.println("entree traite_click ");
int xi=ppmouseh;boolean ret,dg;
int yi=ppmousev;
for (int ich=0;ich<n_chambres;ich++)
kammer[ich].pt_supplementaire=false;
//System.out.println("xi "+xi+" yi "+yi);
if(cliquee){
Date maintenant=new Date();
subject.temps_initial_en_sec=subject.temps_en_secondes(maintenant);
if(!((ppmouseh==ppmouseh_prec)&&(ppmousev==ppmousev_prec))){
ppmouseh_prec=ppmouseh;ppmousev_prec=ppmousev;
}else
cliquee=false;
}
System.out.println(" command "+command+" equipoting "+equipoting);
//if(i_demarre==-1&&command=="deplacer un fil")
//kammer[101]=null;
if(command!=""){
if(!equipoting){
command_prec=command;
dg=gerelesmenus_avec_souris();
if(fin_gerelesmenus_avec_souris)
command="";
}
else
comment="Attendez la fin du calcul des equipotentielles";
}
// System.out.println("sortie traite_click ");
}
void drawline_couleur(Graphics g,int xin,int yin,int xfin,int yfin,Color couleur){
//System.out.println("command "+command);
if(command!="Revenir a la page principale")
g.setColor(couleur);g.drawLine(xin,yin,xfin,yfin);
}
public void actionPerformed(ActionEvent e){
command=e.getActionCommand();
System.out.println(command);
//while(occupied){
//}
if(command!="")
traite_commande ();
//return;
}
public void traite_commande (){
for (int ich=0;ich<n_chambres;ich++)
kammer[ich].pt_supplementaire=false;
relachee=false;
if(command!=""){
fin_gerelesmenus_avec_souris=false;
Date maintenant=new Date();
subject.temps_initial_en_sec=subject.temps_en_secondes(maintenant);
}
if (command=="Revenir a la page principale"||command=="Sortir du programme"||command=="Revenir a la page initiale avec infos"){
le_virer=true;
du_nouveau_a_voir=true;
}
//deplace_plan=false;
if(command!="")
fin_gerelesmenus_avec_souris=false;
else
calcul_equip=false;
if (command=="Methode utilisee"){
if(comm==null){
comm=new commentaire(command+" i_ens "+i_ens);
System.out.println(" image dessinee");
comm.dessine_image();
}
command="";
}
if((command !="montrer 3 cosmiques"&&command !="montrer un cosmique"&&command!="montrer champs supplementaires")&&!le_virer)
du_nouveau_a_voir=false;
if (command=="montrer chambre"){
comment=command ;
show_forces=false;calcul_equip=true;kammer[0].paint();
command="";
}
if (command=="augmenter v_champ de 150V"){
comment=" v_champ augmente de 150V" ;
ecrire_bandeau();
kammer[0].v_champ+=(float)150.;kammer[0].calculs();calcul_equip=true;
kammer[0].paint();
command="";
}
if (command=="diminuer v_champ de 150V"){
comment=" v_champ diminuee de 150V" ; ;
ecrire_bandeau();
kammer[0].v_champ-=(float)150.;kammer[0].calculs();calcul_equip=true;
kammer[0].paint();
command="";
}
if (command=="montrer champs supplementaires"){
comment="Pour voir le champ en un point cliquez en ce point";
ecrire_bandeau();
show_forces=false;
}
if (command=="montrer_equipotentielles"){
comment=command ;
show_forces=false;calcul_equip=true;kammer[0].paint();
command="";
}
if ((command =="montrer 3 cosmiques")||(command =="montrer un cosmique")){
montrer_les_cosmiques();
command="";
}
if(command=="eliminer un fil"||command=="deplacer un fil"||command=="creer un fil sensible"||command=="creer un fil de champ"||command=="deplacer une plaque"){
du_nouveau_a_voir=false;
calcul_equip=false;
kammer[0].n_pt_chp=0;show_forces=false;comment=" ";
}
if(command=="creer un fil sensible"||command=="creer un fil de champ"){
comment=" Cliquez a l'endroit ou vous voulez avoir un nouveau fil";
ecrire_bandeau();
}
if(command=="eliminer un fil"){
comment=" Cliquez sur le fil que vous voulez eliminer";
ecrire_bandeau();
}
if(command=="deplacer un fil"||command=="deplacer une plaque"){
comment=" Faites glisser le fil ou la plaque avec la souris";
ecrire_bandeau();
}
if(command=="montrer_forces"){
show_forces=true;calcul_equip=false;
kammer[0].n_pt_chp=0;
if (! kammer[0].calculs_faits)
kammer[0].calculs();
kammer[0].paint();
command="";
}
//System.out.println("command "+command);
//return;
}
void montrer_les_cosmiques(){
System.out.println(" debut montrer_cosmiques:");
montrer_cosmiques=true;
int n_part_a_montrer=3;
if(command =="montrer un cosmique")
n_part_a_montrer=1;
command="";
calcul_equip=false;
du_nouveau_a_voir=true;show_forces=false;kammer[0].n_pt_chp=0;
int cosmique=0;
while((cosmique<n_part_a_montrer)&&(command=="")){
occupied=true;
Date maintenant=new Date();
subject.temps_initial_en_sec=subject.temps_en_secondes(maintenant);
int dt_random=(int)((float)Math.random()*10);
System.out.println(" subject.temps_initial_en_sec "+subject.temps_initial_en_sec+" temps_initial_en_sec_prec "+temps_initial_en_sec_prec+" dt_random "+dt_random);
if(subject.temps_initial_en_sec-temps_initial_en_sec_prec>dt_random){
cosmique++;
temps_initial_en_sec_prec=subject.temps_initial_en_sec;
subject.temps_initial_en_sec=subject.temps_en_secondes(maintenant);
System.out.println(" cosmique "+cosmique);
int nelec=0;
int nreel=0;
du_nouveau_a_voir=false;
kammer[0].initialise_point_in_pointf();
toto.assigne(point_f.x-point_in.x,point_f.y-point_in.y);
if((i_demarre<=0)||(i_demarre==2)){
point_in.print("n_chambres "+n_chambres+" point point_in ");
point_f.print("point point_f ");
//toto.print(" toto ");
for (int ich=0;ich<n_chambres;ich++){
point point_in_ch=new point(point_in);
point point_f_ch=new point(point_f);
if(ich!=0){
float facteur=(kammer[ich].plans_yd(0)-point_in.y)/(point_f.y-point_in.y);
point_in_ch.additionne_point_facteur(toto,facteur);
}
if(ich!=n_chambres-1){
float facteur=(kammer[ich].plans_yd(1)-point_f.y)/(point_f.y-point_in.y);
point_f_ch.additionne_point_facteur(toto,facteur);
}
float dist=point_in_ch.distance(point_f_ch);
kammer[ich].nreel_max=(int)((float)30.*dist/(pixels_par_metre/200));
int nelec_ch=(int)(float)Math.round(((float)Math.random()+(float)Math.random())/(float)2.*kammer[ich].nreel_max);
point_in_ch.print( "ich "+ich+" dist "+dist+"point_in_ch ");
kammer[ich].premier_electron=nelec;
kammer[ich].nb_electron=nelec_ch;
for (int iel =0;iel< nelec_ch;iel++)
electron[nelec+iel]=new electr(point_in_ch,point_f_ch,ich);
point_f_ch.print("kammer[ich].premier_electron "+kammer[ich].premier_electron+" nelec_ch "+nelec_ch+"point_f_ch ");
nelec+=nelec_ch;
nreel+=nelec_ch;
}
}else{
if(i_demarre==1){
float dist=point_in.distance(point_f);
kammer[0].nreel_max=(int)((float)30.*dist/(pixels_par_metre/200));
nelec=(int)(float)Math.round(((float)Math.random()+(float)Math.random())/(float)2.*kammer[0].nreel_max);
nreel=nelec;
for (int iel =0;iel< nelec;iel++)
electron[iel]=new electr(point_in,point_f,0);
kammer[0].premier_electron=0;
kammer[0].nb_electron=nelec;
}
else if(i_demarre==3){
point point_f_ch=new point(point_f);
float facteur=(kammer[0].plans_yd(1)-point_f.y)/(point_f.y-point_in.y);
point_f_ch.additionne_point_facteur(toto,facteur);
float dist=point_in.distance(point_f_ch);
kammer[0].nreel_max=(int)((float)30.*dist/(pixels_par_metre/200));
int nelec_ch=(int)(float)Math.round(((float)Math.random()+(float)Math.random())/(float)2.*kammer[0].nreel_max);
for (int iel =0;iel< nelec_ch;iel++)
electron[iel+nelec]=new electr(point_in,point_f_ch,0);
kammer[0].premier_electron=0;
kammer[0].nb_electron=nelec_ch;
nelec+=nelec_ch;
point_in.print("00000nelec_ch "+nelec_ch+" point_in ");
point_f_ch.print(" point_f_ch ");
point point_in_ch=new point(point_in);
point_f_ch=new point(point_f);
facteur=(kammer[0].plans_yd(1)+10-point_in.y)/(point_f.y-point_in.y);
point_in_ch.additionne_point_facteur(toto,facteur);
facteur=(kammer[n_chambres-1].plans_yd(0)-10-point_f.y)/(point_f.y-point_in.y);
point_f_ch.additionne_point_facteur(toto,facteur);
dist=point_in_ch.distance(point_f_ch);
kammer[1].nreel_max=(int)((float)30.*dist/(pixels_par_metre/200));
nelec_ch=(int)(float)Math.round(((float)Math.random()+(float)Math.random())/(float)2.*kammer[1].nreel_max);
kammer[1].premier_electron=nelec;
kammer[1].nb_electron=nelec_ch;
for (int iel =0;iel< nelec_ch;iel++)
electron[iel+nelec]=new electr(point_in_ch,point_f_ch,1);
nelec+=nelec_ch;
nreel+=nelec_ch;
kammer[1].nreel_max=(int)((float)30.*dist/(pixels_par_metre/100));
point_in_ch.print("11111nelec_ch "+nelec_ch+" point_in_ch ");
point_f_ch.print(" point_f_ch ");
point_in_ch=new point(point_in);
facteur=(kammer[n_chambres-1].plans_yd(0)-point_in.y)/(point_f.y-point_in.y);
point_in_ch.additionne_point_facteur(toto,facteur);
dist=point_in_ch.distance(point_f);
kammer[2].nreel_max=(int)((float)30.*dist/(pixels_par_metre/200));
nelec_ch=(int)(float)Math.round(((float)Math.random()+(float)Math.random())/(float)2.*kammer[2].nreel_max);
point_in_ch.print("22222nelec_ch "+nelec_ch+" point_in_ch ");
point_f.print(" point_f ");
kammer[2].premier_electron=nelec;
kammer[2].nb_electron=nelec_ch;
for (int iel =0;iel< nelec_ch;iel++)
electron[iel+nelec]=new electr(point_in_ch,point_f,2);
nelec+=nelec_ch;
if(i_demarre==1)
nreel+=nelec_ch;
}
}
if (nelec > 200)
nelec=200;
if (nreel > 200)
nreel=200;
System.out.println("nelec "+nelec+" nreel "+nreel);
// subject.paintcircle(g,x,y,2);
//invertcircle(g,(float)Math.round(xin),(float)Math.round(yin),2);
//invertcircle(g,x,y,2);
int laps=0,lapsmax=500;
if((i_demarre==1)||(i_demarre==3))
lapsmax=400;
grp_ensemble.setColor(Color.orange);
while((nreel>1)&&(laps<lapsmax)){
laps++;
//System.out.println("laps "+laps+" nreel "+nreel);
if(laps==1){
grp_ensemble.setColor(Color.black);
subject.eraserect(grp_ensemble,0,0,1000,1000,Color.white);
for(int ich=0;ich<n_chambres;ich++){
kammer[ich].dessine_plans();
for (int ir=0 ;ir<kammer[ich].nfils;ir++)
kammer[ich].fil[ir].dessine_fil();
}
}
grp_ensemble.setColor(Color.blue);
comment=" cosmique "+cosmique;
ecrire_bandeau();
//System.out.println("command "+command);
//if (command=="Revenir a la page principale")
// retour_page_principale();
for (int ich=0;ich<n_chambres;ich++){
boolean fixer=((i_demarre==3)&&(laps>1)&&((ich==0)||(ich==2)));
if(!fixer)gere_electrons_chambre(ich,kammer[ich].nb_electron,kammer[ich].premier_electron,kammer[ich].nreel_max,nelec,nreel,laps);
}
}
//System.out.println(" avant");
for (int iel =0;iel< nelec;iel++)
electron[iel]=null;
//System.out.println(" apres");
}
occupied=false;
}
comment=" cosmique "+cosmique+ " utilisez le menu ";
ecrire_bandeau();
montrer_cosmiques=false;
}
void gere_electrons_chambre(int num_cha,int nb_elec_cha,int premier_elec,int nreel_max,int nelec_tot,int nreel,int laps){
int nfois0=0;int ielec=premier_elec;
int ielec0=-1;
int ij=premier_elec;
while((ielec0==-1)&&(ij<premier_elec+nb_elec_cha)){
if(i_demarre==3){
if((electron[ij].num_cha==1)&&!electron[ij].elimi)
ielec0=ij;
}else
if(!electron[ij].elimi)
ielec0=ij;
ij++;
}
int nfake=(int)(nreel_max*(float)1.5);
while((nfake>=0)||((ielec<premier_elec+nb_elec_cha))){
if(ielec==ielec0){
nfake--;
nfois0++;
}
//if((num_cha>0)&&(ielec!=ielec0))System.out.println("ielec "+ielec+" nb_elec_cha "+nb_elec_cha +" nfake "+nfake+" nfois0 "+nfois0);
if(!electron[ielec].elimi){
//electron[ielec].ptreal.print(" electron[ielec].ptreal ");
boolean bool=!((i_demarre==3)&&((num_cha==0)||(num_cha==2)))||(laps==1);
//System.out.println(" ielec "+ielec+"bool "+bool+" electron[ielec].num_cha "+electron[ielec].num_cha+" electron[ielec].elimi "+electron[ielec].elimi);
if(bool&&(nreel>1)){
point chp=kammer[num_cha].champ((int)(float)Math.round(electron[ielec].ptreal.x),(int)(float)Math.round(electron[ielec].ptreal.y));
//System.out.println("ex,ey,ielec,electron[ielec].elimi"+ex+" "+ey+" "+ielec+" "+electron[ielec].elimi);
float fact;
if(kammer[num_cha].horizontale)
fact=(float)30.;
else
fact=(float)10.;
ddd=(float)Math.pow(vitesse_ohm/pixels_par_metre/fact,2)*chp.carre();
//System.out.println("chp.longueur() "+chp.longueur());
cucu_int=(int)(float)Math.round(electron[ielec].ptreal.x);
coco_int=(int)(float)Math.round(electron[ielec].ptreal.y);
grp_ensemble.setColor(Color.white);
for (int jj=-1;jj<=1;jj++)
grp_ensemble.drawLine(cucu_int-1,coco_int+jj,cucu_int+1,coco_int+jj);
//subject.paintcircle_couleur(grp_ensemble,(int)(float)Math.round(electron[ielec].ptreal.x),(int)(float)Math.round(electron[ielec].ptreal.y),4,Color.white);
if((!(ielec==ielec0))||(nfois0==1))
electron[ielec].ptreal.additionne_point_facteur(chp,-vitesse_ohm/pixels_par_metre/fact);
else{
electron[ielec].ptreal.additionne_point_facteur(chp,(float)0.);
//System.out.println(" ielec "+ielec+" ielec0 "+ielec0+" nfois0 "+nfois0+" nelec_tot "+nelec_tot);
}
//pour eviter les encalminages.
if(!kammer[num_cha].horizontale&&((float)Math.abs(chp.x)<(float)Math.abs(chp.y)/(float)50.))
if((float)Math.random()>(float)0.2)
electron[ielec].ptreal.y+=(float)1.;
if(kammer[num_cha].horizontale&&((float)Math.abs(chp.y)<(float)Math.abs(chp.x)/(float)50.))
if((float)Math.random()>(float)0.2)
electron[ielec].ptreal.x+=(float)1.;
i_fil=electron[ielec].fil_elec;
toto1.assigne(kammer[num_cha].fil[i_fil].ptc.x-electron[ielec].ptreal.x,kammer[num_cha].fil[i_fil].ptc.y-electron[ielec].ptreal.y);
scala=toto1.scalaire(chp);
if (ddd > electron[ielec].dd||ddd >=(float)2.*(float)4.||chp.carre()<(float)1.e6||electron[ielec].dd<(float)2.*(float)4.||scala>0){
//if ((ddd > electron[ielec].dd)||(chp.carre()<(float)1.)||(electron[ielec].dd<(float)2.*(float)2.)){
electron[ielec].elimi= true;
nreel--;
if(!(scala>0))
kammer[num_cha].fil[electron[ielec].fil_elec].dessine_fil();
}else{