亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? options.c

?? 一個占星術算命游戲
?? C
?? 第 1 頁 / 共 4 頁
字號:
      SwapReal(&azialt[j], &azialt[j+1]);
      j--;
    }
  }

  /* Finally display the list showing each event and when it occurs. */

  for (i = 0; i < occurcount; i++) {
    SetSave(Mon, Day, Yea,
      DegToDec((real)time[i] / 60.0), Zon, Lon, Lat);
    j = DayOfWeek(Mon, Day, Yea);
    AnsiColor(rainbowansi[j + 1]);
    fprintf(S, "(%c%c%c) ", DAYNAM(j));
    AnsiColor(DEFAULT);
    s1 = time[i]/60;
    s2 = time[i]-s1*60;
    fprintf(S, "%s %s ", CharDate(Mon, Day, Yea, FALSE), CharTime(s1, s2));
    AnsiColor(objectansi[source[i]]);
    fprintf(S, "%7.7s ", objectname[source[i]]);
    AnsiColor(signansi(sign[i]));
    fprintf(S, "%c%c%c%c%c ",
      isret[i] > 0 ? '(' : (isret[i] < 0 ? '[' : '<'), SIGNAM(sign[i]),
      isret[i] > 0 ? ')' : (isret[i] < 0 ? ']' : '>'));
    AnsiColor(elemansi[type[i]-1]);
    if (type[i] == 1)
      fprintf(S, "rises  ");
    else if (type[i] == 2)
      fprintf(S, "zeniths");
    else if (type[i] == 3)
      fprintf(S, "sets   ");
    else
      fprintf(S, "nadirs ");
    AnsiColor(DEFAULT);
    fprintf(S, " at ");
    if (type[i] & 1) {
      j = (int) (FRACT(azialt[i])*60.0);
      fprintf(S, "%3d%c%02d'", (int) azialt[i], DEGR1, j);

      /* For rising and setting events, we'll also display a direction  */
      /* vector to make the 360 degree azimuth value thought of easier. */

      azi1 = cos(DTOR(azialt[i])); alt1 = sin(DTOR(azialt[i]));
      if (dabs(azi1) < dabs(alt1)) {
        azi2 = dabs(azi1 / alt1); alt2 = 1.0;
      } else {
        alt2 = dabs(alt1 / azi1); azi2 = 1.0;
      }
      fprintf(S, " (%.2f%c %.2f%c)",
        alt2, alt1 < 0.0 ? 's' : 'n', azi2, azi1 > 0.0 ? 'e' : 'w');
    } else
      PrintAltitude(azialt[i]);
    printl();
  }
}


/* Print out an ephemeris - the positions of the planets (at the time in the */
/* current chart) each day during a specified month, as done with the -E     */
/* switch. Display the ephemeris for the whole year if -Ey is in effect.     */

void DisplayEphemeris()
{
  int M0, M1, M2, daysiz, i, j, k, s, d, m;

  /* If -Ey is in effect, then loop through all months in the whole year. */

  if (exdisplay & DASHEy) {
    M1 = 1; M2 = 12;
  } else
    M1 = M2 = Mon;

  /* Loop through the month or months in question, printing each ephemeris. */

  for (M0 = M1; M0 <= M2; M0++) {
    daysiz = DayInMonth(M0, Yea);
    printf(eurodate ? "Dy/Mo/Yr" : "Mo/Dy/Yr");
    for (k = 0, j = 1; j <= total; j++) {
      if (!ignore[j] && IsThing(j)) {
        fprintf(S, "  %c%c%c%c ", OBJNAM(j), objectname[j][3] != 0 ?
          objectname[j][3] : ' ');
        k++;
        if (column80 && k >= 10)
          j = total;
      }
    }
    printl();
    for (i = 1; i <= daysiz; i++) {

      /* Loop through each day in the month, casting a chart for that day. */

      SetCore(M0, i, Yea, Tim, Zon, Lon, Lat);
      CastChart(TRUE);
      fprintf(S, "%s ", CharDate(M0, i, Yea, -1));
      for (k = 0, j = 1; j <= total; j++)
        if (!ignore[j] && IsThing(j)) {
          AnsiColor(objectansi[j]);
          s = ZTOS(planet[j]);
          d = (int) planet[j] - (s-1)*30;
          m = (int) (FRACT(planet[j])*60.0);
          fprintf(S, "%2d%s%02d%c", d, signabbrev[s], m,
            ret[j] >= 0.0 ? ' ' : '.');
          k++;
          if (column80 && k >= 10)
            j = total;
        }
      printl();
      AnsiColor(DEFAULT);
    }
    if (M0 < M2)
      printl();
  }
}


/* Display a calendar for the given month in the chart, as specified with  */
/* with the -K switch. When color is on, the title is white, weekends are  */
/* highlighted in red, and the specific day in the chart is colored green. */

void DisplayCalendarMonth()
{
  int i, j, k;

  AnsiColor(WHITE);
  PrintTab(' ', 16-StringLen(monthname[Mon]) >> 1);
  fprintf(S, "%s%5d\n", monthname[Mon], Yea);
  for (i = 0; i < 7; i++)
    fprintf(S, "%c%c%c", dayname[i][0], dayname[i][1], i < 6 ? ' ' : '\n');
  j = DayOfWeek(Mon, 1, Yea);
  AnsiColor(DEFAULT);
  for (i = 0; i < j; i++) {
    if (i == 0)
      AnsiColor(RED);
    fprintf(S, "-- ");
    if (i == 0)
      AnsiColor(DEFAULT);
  }
  k = DayInMonth(Mon, Yea);
  for (i = 1; i <= k; i++) {
    if (i == (int)Day)
      AnsiColor(GREEN);
    else if (j == 0 || j == 6)
      AnsiColor(RED);
    fprintf(S, "%2d", i);
    if (j == 0 || j == 6 || i == Day)
      AnsiColor(DEFAULT);
    if (j < 6) {
      j++;
      printc(' ');
    } else {
      j = 0;
      printl();
    }
  }
  while (j > 0 && j < 7) {
    if (j == 6)
      AnsiColor(RED);
    j++;
    fprintf(S, "--%c", j < 7 ? ' ' : '\n');
  }
  AnsiColor(DEFAULT);
}


/* Display a calendar for the entire year given in the chart, as specified */
/* with the -Ky switch. This is just like twelve of the individual month   */
/* calendars above displayed together, with same color highlights and all. */

void DisplayCalendarYear()
{
  int r, w, c, m, d, dy, p[3], l[3], n[3];

  dy = DayOfWeek(1, 1, Yea);
  for (r = 0; r < 4; r++) {    /* Loop over one set of three months */
    AnsiColor(WHITE);
    for (c = 0; c < 3; c++) {
      m = r*3+c+1;
      PrintTab(' ', 16-StringLen(monthname[m]) >> 1);
      fprintf(S, "%s%5d", monthname[m], Yea);
      if (c < 2)
        PrintTab(' ', 20 + MONTHSPACE -
          (16-StringLen(monthname[m]) >> 1) - StringLen(monthname[m]) - 5);
    }
    printl();
    for (c = 0; c < 3; c++) {
      for (d = 0; d < 7; d++)
        fprintf(S, "%c%c%c", dayname[d][0], dayname[d][1],
          d < 6 || c < 2 ? ' ' : '\n');
      if (c < 2)
        PrintTab(' ', MONTHSPACE-1);
      m = r*3+c+1;
      p[c] = dy % 7;
      l[c] = DayInMonth(m, Yea);
      n[c] = 0;
      dy += l[c];
    }
    for (w = 0; w < 6; w++) {      /* Loop over one set of week rows */
      for (c = 0; c < 3; c++) {    /* Loop over one week in a month  */
        m = r*3+c+1;
        d = 0;
        if (w == 0)
          while (d < p[c]) {
            if (d == 0)
              AnsiColor(RED);
            fprintf(S, "-- ");
            if (d == 0)
              AnsiColor(DEFAULT);
            d++;
          }
        AnsiColor(DEFAULT);
        while (d < 7 && n[c] < l[c]) {
          n[c]++;
          if (n[c] == Day && m == Mon)
            AnsiColor(GREEN);
          else if (d == 0 || d == 6)
            AnsiColor(RED);
          fprintf(S, "%2d%c", n[c], d < 6 || c < 2 ? ' ' : '\n');
          if (d == 0 || d == 6 || (n[c] == Day && m == Mon))
            AnsiColor(DEFAULT);
          d++;
        }
        while (d < 7) {
          if (d == 0 || d == 6)
            AnsiColor(RED);
          fprintf(S, "--%c", d < 6 || c < 2 ? ' ' : '\n');
          if (d == 0)
            AnsiColor(DEFAULT);
          d++;
        }
        if (c < 2)
          PrintTab(' ', MONTHSPACE-1);
      }
    }
    if (r < 3)
      printl();
  }
  AnsiColor(DEFAULT);
}


/* Display either a biorhythm chart or the time difference in various units */
/* between two charts, i.e. two types of relationship "charts" that aren't  */
/* related in any way to planetary positions, as specified by either the    */
/* -rb or -rd switches, respectively.                                       */

void DisplayRelation()
{
#ifdef BIORHYTHM
  int i, j;
  real k, l;
#endif

  /* If we are calculating the difference between two dates, then display */
  /* the value and return, as with the -rd switch.                        */

  if (relation == DASHrd) {
    fprintf(S, "Differences between the dates in the two charts:\n");
    AnsiColor(rainbowansi[1]); fprintf(S, "Years  : %.0f\n", JD/365.25);
    AnsiColor(rainbowansi[2]); fprintf(S, "Months : %.0f\n", JD/(365.25/12));
    AnsiColor(rainbowansi[3]); fprintf(S, "Weeks  : %.0f\n", JD/7.0);
    AnsiColor(rainbowansi[4]); fprintf(S, "Days   : %.0f\n", JD);
    AnsiColor(rainbowansi[5]); fprintf(S, "Hours  : %.0f\n", JD*24.0);
    AnsiColor(rainbowansi[6]); fprintf(S, "Minutes: %.0f\n", JD*24.0*60.0);
    AnsiColor(rainbowansi[7]); fprintf(S, "Seconds: %.0f\n", JD*24.0*3600.0);
    AnsiColor(DEFAULT);
    return;
  }

#ifdef BIORHYTHM
  /* If we are doing a biorhythm (-rb switch), then we'll calculate it for */
  /* someone born on the older date, at the time of the younger date. Loop */
  /* through the week preceeding and following the date in question.       */

  JD = floor(JD + ROUND);
  for (JD -= 7.0, i = -7; i <= 7; i++, JD += 1.0) {
    if (i == 0)
      AnsiColor(WHITE);
    else if (i == 1)
      AnsiColor(DEFAULT);
    fprintf(S, "T%c%d Day%c:",
      i < 0 ? '-' : '+', abs(i), abs(i) != 1 ? 's' : ' ');
    for (j = 1; j <= 3; j++) {
      printc(' ');
      switch (j) {
      case 1: k = _PHY; AnsiColor(RED);   fprintf(S, "Physical");     break;
      case 2: k = _EMO; AnsiColor(BLUE);  fprintf(S, "Emotional");    break;
      case 3: k = _INT; AnsiColor(GREEN); fprintf(S, "Intellectual"); break;
      }
      AnsiColor(i ? DEFAULT : WHITE);

      /* The biorhythm calculation is below. */

      l = Biorhythm(JD, k);
      fprintf(S, " at %c%3.0f%%", l < 0.0 ? '-' : '+', dabs(l));

      /* Print smiley face, medium face, or sad face based on current cycle. */

      AnsiColor(PURPLE);
      fprintf(S, " :%c", l > 50.0 ? ')' : (l < -50.0 ? '(' : '|'));
      AnsiColor(i ? DEFAULT : WHITE);
      if (j < 3)
        printc(',');
    }
    printl();
  }
#endif /* BIORHYTHM */
}


/* Another important procedure: Display any of the types of (text) charts    */
/* that the user specified they wanted, by calling the appropriate routines. */

void PrintChart(prog)
{
  if (todisplay == 0)          /* Assume the -v chart if user */
    todisplay |= DASHv;        /* didn't indicate anything.   */
  if (todisplay & DASHv) {
    if (relation < DASHrd)
      ChartLocation();
    else

      /* If the -rb or -rd relationship charts are in effect, then instead  */
      /* of doing the standard -v chart, print either of these chart types. */

      DisplayRelation();
    if (todisplay - (todisplay & DASHv*2-1))
      printl2();
  }
  if (todisplay & DASHw) {
    ChartWheel();
    if (todisplay - (todisplay & DASHw*2-1))
      printl2();
  }
  if (todisplay & DASHg) {
    if (relation > DASHr0) {
      CreateGrid(FALSE);
      ChartGrid();
      if (exdisplay & DASHg0) {    /* If -g0 switch in effect, then  */
        printl();                  /* display aspect configurations. */
        DisplayGrands();
      }
    } else {

      /* Do a relationship aspect grid between two charts if -r0 in effect. */

      CreateGridRelation((exdisplay & DASHg0) > 0);
      DisplayGridRelation();
    }
    if (todisplay - (todisplay & DASHg*2-1))
      printl2();
  }
  if (todisplay & DASHm) {
    if (!(todisplay & DASHg) || relation <= DASHr0)
      CreateGrid(FALSE);
    if (relation > DASHr0) {
      if (exdisplay & DASHm0)
        ChartAspect();
      else
        ChartMidpoint();
      if (todisplay - (todisplay & DASHm*2-1))
        printl2();
    } else {
      CreateGridRelation((exdisplay & DASHm0) == 0);
      if (exdisplay & DASHm0)
        DisplayAspectRelation();
      else
        DisplayMidpointRelation();
    }
  }
  if (todisplay & DASHZ) {
    if (exdisplay & DASHZd)
      DisplayInDayHorizon();
    else
      ChartHorizon();
    if (todisplay - (todisplay & DASHZ*2-1))
      printl2();
  }
  if (todisplay & DASHS) {
    ChartSpace();
    if (todisplay - (todisplay & DASHS*2-1))
      printl2();
  }
  if (todisplay & DASHj) {
    ChartInfluence();
    if (todisplay - (todisplay & DASHj*2-1))
      printl2();
  }
  if (todisplay & DASHL) {
    ChartAstroGraph();
    if (todisplay - (todisplay & DASHL*2-1))
      printl2();
  }
  if (todisplay & DASHK) {
    if (exdisplay & DASHKy)
      DisplayCalendarYear();
    else
      DisplayCalendarMonth();
    if (todisplay - (todisplay & DASHK*2-1))
      printl2();
  }
  if (todisplay & DASHd) {
    DisplayInDaySearch(prog);
    if (todisplay - (todisplay & DASHd*2-1))
      printl2();
  }
  if (todisplay & DASHD) {
    DisplayInDayInfluence();
    if (todisplay - (todisplay & DASHD*2-1))
      printl2();
  }
  if (todisplay & DASHE) {
    DisplayEphemeris();
    if (todisplay - (todisplay & DASHE*2-1))
      printl2();
  }
  if (todisplay & DASHt) {
    DisplayTransitSearch(prog);
    if (todisplay - (todisplay & DASHt*2-1))
      printl2();
  }
  if (todisplay & DASHT)
    DisplayTransitInfluence(prog);
}

/* options.c */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久久久久图文区| 中文字幕在线不卡| 亚洲男人的天堂网| 国产精品久久福利| 亚洲美女精品一区| 亚洲永久精品大片| 美女视频一区在线观看| 国产精品一区二区不卡| 懂色一区二区三区免费观看| 成人黄色在线网站| 欧美色爱综合网| 精品国产青草久久久久福利| 久久综合九色综合欧美就去吻| 国产色综合久久| 亚洲制服丝袜一区| 国产麻豆精品theporn| 91在线视频官网| 日韩欧美色综合| 日韩理论片中文av| 麻豆传媒一区二区三区| 成人v精品蜜桃久久一区| 欧美精品1区2区| 亚洲国产精品激情在线观看 | 国产成人免费视频网站| 欧美丝袜丝交足nylons图片| 精品国产伦一区二区三区免费| 亚洲视频在线一区二区| 国产一区二区三区视频在线播放| 色欧美日韩亚洲| 国产日韩精品一区| 免费的国产精品| 8x8x8国产精品| 亚洲中国最大av网站| 国产大片一区二区| 精品国产网站在线观看| 亚洲成人综合网站| 日本韩国欧美在线| 亚洲色图欧洲色图婷婷| 国产99精品国产| 亚洲国产人成综合网站| 97精品超碰一区二区三区| 国产亚洲成年网址在线观看| 精品午夜久久福利影院| 91精品国产欧美一区二区成人| 亚洲在线一区二区三区| 色婷婷精品久久二区二区蜜臀av| 亚洲三级在线免费| 一本到不卡精品视频在线观看| 亚洲mv在线观看| 欧美日韩在线电影| 国产精品国产自产拍高清av| 国产精品久久久一区麻豆最新章节| 青青国产91久久久久久| 51精品秘密在线观看| 青椒成人免费视频| 日韩欧美的一区二区| 亚洲一区二区三区四区中文字幕| 欧亚一区二区三区| 日本视频中文字幕一区二区三区| 制服丝袜在线91| 国产乱一区二区| 日韩理论片网站| 在线电影一区二区三区| 国产综合色产在线精品| 国产精品欧美久久久久无广告 | 色久优优欧美色久优优| 亚洲综合色区另类av| 欧美成人猛片aaaaaaa| 国产a视频精品免费观看| 亚洲免费资源在线播放| 日韩亚洲欧美中文三级| 成人免费黄色在线| 日韩vs国产vs欧美| 欧美国产日本韩| 91麻豆精品国产自产在线| 国产乱子轮精品视频| 一区二区三区国产豹纹内裤在线 | 精品一区二区精品| 亚洲一区免费视频| 欧美国产日韩一二三区| 欧美一级xxx| 欧美在线你懂的| 成人app软件下载大全免费| 日韩精品欧美精品| 亚洲午夜精品17c| 国产精品嫩草影院com| 日韩欧美另类在线| 欧美三级韩国三级日本一级| 成人一区二区三区| 国产综合久久久久影院| 人人超碰91尤物精品国产| 亚洲综合色视频| 亚洲综合自拍偷拍| 中文字幕中文在线不卡住| 精品国产sm最大网站| 91精品久久久久久蜜臀| 欧美日韩精品一二三区| 欧洲中文字幕精品| 99久久99久久综合| 99久久婷婷国产综合精品电影| 成人丝袜高跟foot| 国产精品综合一区二区三区| 寂寞少妇一区二区三区| 激情五月婷婷综合| 精品一区二区免费| 国产99久久久国产精品潘金| 粉嫩嫩av羞羞动漫久久久| 成人国产视频在线观看| 97精品视频在线观看自产线路二| 色综合久久久久久久| 欧美视频一区二| 日韩一区二区三| 久久伊99综合婷婷久久伊| 久久亚洲精品国产精品紫薇| 欧美国产视频在线| 亚洲欧美韩国综合色| 日日摸夜夜添夜夜添亚洲女人| 久久国内精品自在自线400部| 国产成人av电影在线| 欧美日韩一区二区在线视频| 欧美一区二区免费视频| 国产精品美日韩| 一区二区不卡在线视频 午夜欧美不卡在 | 国产精品久久三区| 亚洲在线中文字幕| 国产乱码精品1区2区3区| a美女胸又www黄视频久久| 欧美日高清视频| 中文字幕一区三区| 久久成人免费网站| 欧美在线视频不卡| 欧美激情综合五月色丁香 | 亚洲精品欧美激情| 六月丁香婷婷久久| 欧美日韩五月天| 国产精品久久久久aaaa樱花| 免费精品视频在线| 色综合久久综合网97色综合| 国产午夜一区二区三区| 日本强好片久久久久久aaa| 91老师片黄在线观看| 国产亚洲精品精华液| 免费观看成人鲁鲁鲁鲁鲁视频| 一本高清dvd不卡在线观看| 久久久精品黄色| 韩国女主播成人在线| 欧美一级免费观看| 五月天激情综合| 在线免费观看视频一区| 国产精品久久久久aaaa樱花| 国内不卡的二区三区中文字幕| 国产欧美日韩综合| 国产精品小仙女| 久久综合色鬼综合色| 美女爽到高潮91| 精品国产91亚洲一区二区三区婷婷| 日韩极品在线观看| 91麻豆精品久久久久蜜臀| 日本视频在线一区| 日韩精品一区二区三区四区 | 91极品美女在线| 一区二区三区在线视频免费| 97成人超碰视| 亚洲国产精品一区二区尤物区| 欧美日韩一区成人| 麻豆国产精品一区二区三区 | 欧美日韩一二三区| 日本va欧美va精品发布| 久久精品男人的天堂| av中文一区二区三区| 一区二区在线观看免费视频播放| 欧美色综合网站| 久久成人免费日本黄色| 中文字幕一区二区三区不卡| 欧美中文字幕一区二区三区| 蜜桃免费网站一区二区三区| 久久久99精品久久| 91片在线免费观看| 日产精品久久久久久久性色| 久久亚洲私人国产精品va媚药| 91丨九色丨尤物| 日韩成人av影视| 成人免费在线视频观看| 日韩一卡二卡三卡| 色综合中文字幕国产 | 国产一区二区精品久久91| 亚洲欧美国产毛片在线| 2021久久国产精品不只是精品 | 精品国产一区二区三区久久影院| 成人v精品蜜桃久久一区| 精一区二区三区| 亚洲国产欧美在线人成| 中文字幕一区二区三| 亚洲精品一区二区三区香蕉| 在线视频一区二区三区| 国产成人免费在线观看| 日韩av午夜在线观看| 亚洲国产精品久久久久婷婷884| 国产日韩亚洲欧美综合| 欧美妇女性影城|