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

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

?? intrpret.c

?? 一個占星術算命游戲
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*
** Astrolog (Version 4.00) File: intrpret.c
**
** IMPORTANT NOTICE: the graphics database and chart display routines
** used in this program are Copyright (C) 1991-1993 by Walter D. Pullen
** (cruiser1@stein.u.washington.edu). Permission is granted to freely
** use and distribute these routines provided one doesn't sell,
** restrict, or profit from them in any way. Modification is allowed
** provided these notices remain with any altered or edited versions of
** the program.
**
** The main planetary calculation routines used in this program have
** been Copyrighted and the core of this program is basically a
** conversion to C of the routines created by James Neely as listed in
** Michael Erlewine's 'Manual of Computer Programming for Astrologers',
** available from Matrix Software. The copyright gives us permission to
** use the routines for personal use but not to sell them or profit from
** them in any way.
**
** The PostScript code within the core graphics routines are programmed
** and Copyright (C) 1992-1993 by Brian D. Willoughby
** (brianw@sounds.wa.com). Conditions are identical to those above.
**
** The extended accurate ephemeris databases and formulas are from the
** calculation routines in the program "Placalc" and are programmed and
** Copyright (C) 1989,1991,1993 by Astrodienst AG and Alois Treindl
** (alois@azur.ch). The use of that source code is subject to
** regulations made by Astrodienst Zurich, and the code is not in the
** public domain. This copyright notice must not be changed or removed
** by any user of this program.
**
** Initial programming 8/28,30, 9/10,13,16,20,23, 10/3,6,7, 11/7,10,21/1991.
** X Window graphics initially programmed 10/23-29/1991.
** PostScript graphics initially programmed 11/29-30/1992.
** Last code change made 12/31/1993.
*/

#include "astrolog.h"

#ifdef INTERPRET

/*
******************************************************************************
** Interpretation Subroutines.
******************************************************************************
*/

/* This function is used by the interpretation routines to print out lines  */
/* of text with newlines inserted just before the end of screen is reached. */

void FieldWord(string)
char *string;
{
  static char line[STRING*4];
  static int cursor = 0;
  int i, j;

  /* Hack: Dump buffer if function called with a null string. */

  if (*string == 0) {
    line[cursor] = 0;
    fprintf(S, "%s\n", line);
    cursor = 0;
    return;
  }
  if (cursor)
    line[cursor++] = ' ';
  for (i = 0; (line[cursor] = string[i]); i++, cursor++)
    ;

  /* When buffer overflows 80 columns, print out one line and start over. */

  while (cursor >= screenwidth-1) {
    for (i = screenwidth-1; line[i] != ' '; i--)
      ;
    line[i] = 0;
    fprintf(S, "%s\n", line);
    line[0] = line[1] = ' ';
    for (j = 2; (line[j] = line[i+j-1]) != 0; j++)
      ;
    cursor -= (i-1);
  }
}


/* Display a general interpretation of what each sign of the zodiac, house, */
/* and planet or object means. This is called to do the -I0 switch table.   */

void InterpretGeneral()
{
  char string[STRING];
  int i;

  fprintf(S,
    "Signs of the zodiac represent psychological characteristics.\n\n");
  for (i = 1; i <= SIGNS; i++) {
    AnsiColor(signansi(i));
    sprintf(string, "%s is", signname[i]); FieldWord(string);
    sprintf(string, "%s, and", description[i]); FieldWord(string);
    sprintf(string, "%s.", desire[i]); FieldWord(string);
    FieldWord("");
  }
  AnsiColor(DEFAULT);
  fprintf(S, "\nHouses represent different areas within one's life.\n\n");
  for (i = 1; i <= SIGNS; i++) {
    AnsiColor(signansi(i));
    sprintf(string, "The %d%s House is the area of life dealing with",
      i, post[i]); FieldWord(string);
    sprintf(string, "%s.", lifearea[i]); FieldWord(string);
    FieldWord("");
  }
  AnsiColor(DEFAULT);
  fprintf(S, "\nPlanets represent various parts of one's mind or self.\n\n");
  for (i = 1; i <= OBJECTI; i++) {
    if (ignore[i] || IsCusp(i))
      continue;
    AnsiColor(objectansi[i]);
    sprintf(string, "%s%s%s%s represents one's",
      i < 3 || (i >= THINGS && i <= OBJECTS) ? "The " : "",
      i == _NOD ? "North " : (i == _FOR ? "Part of " : ""), objectname[i],
      i == 13 ? " Athena" : ""); FieldWord(string);
    sprintf(string, "%s.", mindpart[i]); FieldWord(string);
    FieldWord("");
  }
  AnsiColor(DEFAULT);
}


/* Display a general interpretation of what each aspect type means. This */
/* is called when printing the interpretation table in the -I0 switch.   */

void InterpretAspectGeneral()
{
  char string[STRING];
  int i;

  fprintf(S, "\nAspects are different relationships between planets.\n\n");
  for (i = 1; i <= MIN(aspects, ASPECTI); i++) {
    AnsiColor(aspectansi[i]);
    sprintf(string, "When planets are %s, one", aspectname[i]);
    FieldWord(string); sprintf(string, interact[i], ""); FieldWord(string);
    FieldWord("another.");
    if (therefore[i][0]) {
      sprintf(string, "%s.", therefore[i]); FieldWord(string);
    }
    FieldWord("");
  }
  return;
}


/* Print the interpretation of each planet in sign and house, as specified */
/* with the -I switch. This is basically array accessing combining the     */
/* meanings of each planet, sign, and house, and a couple of other things. */

void InterpretLocation()
{
  char string[STRING], c;
  int i, j;

  printl();
  for (i = 1; i <= OBJECTI; i++) {
    if (ignore[i] || IsCusp(i))
      continue;
    AnsiColor(objectansi[i]);
    j = ZTOS(planet[i]); c = Dignify(i, j);
    sprintf(string, "%s%s%s%s in %s", ret[i] < 0.0 ? "Retrograde " : "",
      i == _NOD ? "North " : (i == _FOR ? "Part of " : ""), objectname[i],
      i == 13 ? " Athena" : "", signname[j]);
    FieldWord(string);
    sprintf(string, "and %d%s House:", inhouse[i], post[inhouse[i]]);
    FieldWord(string);
    FieldWord("This person's"); FieldWord(mindpart[i]); FieldWord("is");
    if (((int) planet[i]) % 30 < 10)
      FieldWord("very");
    sprintf(string, "%s, and", description[j]); FieldWord(string);
    sprintf(string, "%s.", desire[j]); FieldWord(string);
    FieldWord("Most often this manifests");
    if (ret[i] < 0.0 && i != _NOD)
      FieldWord("in an independent, backward, introverted manner, and");
    FieldWord("in the area of life dealing with");
    sprintf(string, "%s.", lifearea[inhouse[i]]); FieldWord(string);

    /* Extra information if planet is in its ruling, falling, etc, sign. */

    if (c == 'R')
      FieldWord("This is a major aspect of the person's psyche!");
    else if (c == 'F')
      FieldWord("(This bit plays only a minor part in the person's psyche.)");
    else if (c == 'e')
      FieldWord("It is easy for them to express this part of themself.");
    else if (c == 'd')
      FieldWord("It is difficult for them to express this part of themself.");
    FieldWord("");
  }
}


/* Print an interpretation for a particular aspect in effect in a chart. */
/* This is called from the InterpretGrid and ChartAspect routines.       */

void InterpretAspect(x, y)
int x, y;
{
  char string[STRING*2];
  int n;

  n = grid->n[x][y];
  if (n < 1 || n > ASPECTI ||
    IsCusp(x) || IsCusp(y) || x > OBJECTI || y > OBJECTI)
    return;
  AnsiColor(aspectansi[n]);
  sprintf(string, "%s %s %s: This person's", objectname[x],
    aspectname[n], objectname[y]);
  FieldWord(string); FieldWord(mindpart[x]);
  sprintf(string, interact[n],
    modifier[MIN(abs(grid->v[x][y])/150, 2)][n-1]);
  FieldWord(string);
  sprintf(string, "their %s.", mindpart[y]); FieldWord(string);
  if (therefore[n][0]) {
    sprintf(string, "%s.", therefore[n]); FieldWord(string);
  }
  FieldWord("");
}


/* Print the interpretation of each aspect in the aspect grid, as specified */
/* with the -g -I switch. Again, this is done by basically array accessing  */
/* of the meanings of the two planets in aspect and of the aspect itself.   */

void InterpretGrid()
{
  int i, j;

  for (i = 1; i < OBJECTI; i++) if (!ignore[i] && !IsCusp(i))
    for (j = i+1; j <= OBJECTI; j++) if (!ignore[j] && !IsCusp(i))
      InterpretAspect(i, j);
}


/* Print an interpretation for a particular midpoint in effect in a chart. */
/* This is called from the ChartMidpoint routine.                          */

void InterpretMidpoint(x, y)
int x, y;
{
  char string[STRING];
  int n, i;

  if (IsCusp(x) || IsCusp(y) || x > OBJECTI || y > OBJECTI)
    return;
  n = grid->n[y][x];
  AnsiColor(signansi(n));
  sprintf(string, "%s midpoint %s in %s: The merging of the person's",
    objectname[x], objectname[y], signname[n]);
  FieldWord(string); FieldWord(mindpart[x]);
  FieldWord("with their"); FieldWord(mindpart[y]);
  FieldWord("is");
  if (grid->v[y][x]/60 < 10)
    FieldWord("very");
  sprintf(string, "%s, and", description[n]); FieldWord(string);
  sprintf(string, "%s.", desire[n]); FieldWord(string);
  FieldWord("Most often this manifests in");
  if (ret[x]+ret[y] < 0.0 && x != _NOD && y != _NOD)
    FieldWord("an independent, backward, introverted manner, and");
  FieldWord("the area of life dealing with");
  i = HousePlaceIn(STOZ(n) + (real)grid->v[y][x]/60.0);
  sprintf(string, "%s.", lifearea[i]); FieldWord(string);
  FieldWord("");
}


/* This is a subprocedure of DisplayInDay(). Print the interpretation for */
/* a particular instance of the various exciting events that can happen.  */ 

void InterpretInDay(source, aspect, dest)
int source, aspect, dest;
{
  char string[STRING];

  if (source > OBJECTI || dest > OBJECTI)
    return;

  /* Interpret object changing direction. */

  if (aspect == _DIR) {
    AnsiColor(objectansi[source]);
    FieldWord("Energy representing"); FieldWord(mindpart[source]);
    FieldWord("will tend to manifest in");
    FieldWord(dest ? "an independent, backward, introverted" :
      "the standard, direct, open");
    FieldWord("manner.");
    FieldWord("");

  /* Interpret object entering new sign. */

  } else if (aspect == _SIG) {
    AnsiColor(objectansi[source]);
    FieldWord("Energy representing"); FieldWord(mindpart[source]);
    sprintf(string, "will be %s,", description[dest]);
    FieldWord(string);
    sprintf(string, "and it %s.", desire[dest]); FieldWord(string);
    FieldWord("");

  /* Interpret aspect between transiting planets. */

  } else if (aspect > 0 && aspect <= ASPECTI) {
    AnsiColor(aspectansi[aspect]);
    FieldWord("Energy representing"); FieldWord(mindpart[source]);
    sprintf(string, interact[aspect], modifier[1][aspect-1]);
    FieldWord(string);
    sprintf(string, "energies of %s.", mindpart[dest]); FieldWord(string);
    if (therefore[aspect][0]) {
      if (aspect > _CON) {
        sprintf(string, "%s.", therefore[aspect]); FieldWord(string);
      } else
        FieldWord("They will affect each other prominently.");
    }
    FieldWord("");
  }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美视频在线播放| 欧美性极品少妇| 日韩精品午夜视频| 亚洲成a人片在线观看中文| 一区二区三区在线播放| 中文字幕一区二区三区不卡在线| 国产色一区二区| 日韩欧美国产系列| 欧美精品一区二区精品网| 亚洲精品在线一区二区| 久久网站热最新地址| 久久嫩草精品久久久精品一| 久久人人97超碰com| 国产欧美一区二区精品性色超碰| 国产亚洲欧美色| 日韩美女啊v在线免费观看| 一区二区三区.www| 美国三级日本三级久久99| 精品一区二区三区在线观看国产 | 欧美激情在线观看视频免费| 国产欧美精品一区二区色综合 | 99久久综合99久久综合网站| 91在线视频播放| 欧美私模裸体表演在线观看| 日韩一区二区三区观看| 久久久www免费人成精品| 亚洲美女偷拍久久| 久久国产日韩欧美精品| a美女胸又www黄视频久久| 在线观看91av| 国产精品福利在线播放| 水蜜桃久久夜色精品一区的特点 | 久久精品免视看| 亚洲日本在线看| 蜜桃视频一区二区三区| 成人一级片在线观看| 欧美日韩日日夜夜| 国产婷婷一区二区| 石原莉奈在线亚洲二区| 成人激情动漫在线观看| 69成人精品免费视频| 亚洲国产精品99久久久久久久久| 亚洲高清三级视频| 不卡av在线网| 亚洲精品一线二线三线| 亚洲妇女屁股眼交7| 成人黄色777网| 日韩欧美三级在线| 一区二区三区久久久| 国产成人综合网站| 精品国产乱码久久久久久闺蜜| 亚洲六月丁香色婷婷综合久久| 国产精品综合网| 欧美一区二区不卡视频| 亚洲国产日韩av| 97se亚洲国产综合自在线观| 精品福利一区二区三区| 天天综合网 天天综合色| 不卡视频免费播放| 欧美激情综合五月色丁香| 日韩国产一二三区| 日本一区二区高清| 九一久久久久久| 日韩精品一区二区三区蜜臀| 亚洲午夜久久久久久久久电影院| jizzjizzjizz欧美| 国产日韩欧美高清| 国产成人av网站| 欧美极品美女视频| 国产成人精品亚洲777人妖| 日韩精品中文字幕在线不卡尤物| 亚洲一区二区三区四区的| 色久优优欧美色久优优| 一区二区三区中文在线观看| 91丨九色丨国产丨porny| 亚洲同性同志一二三专区| 色综合一个色综合亚洲| 亚洲手机成人高清视频| 91视频一区二区| 伊人婷婷欧美激情| 欧美日韩一本到| 日韩av成人高清| 精品国产乱码久久久久久免费 | 国产精品私人自拍| 成人在线综合网站| 亚洲日本在线视频观看| 欧美午夜精品久久久久久超碰| 午夜精品福利久久久| 91麻豆精品国产无毒不卡在线观看| 亚洲va中文字幕| 日韩亚洲电影在线| 成人一区二区三区中文字幕| 亚洲欧美日韩综合aⅴ视频| 在线国产电影不卡| 欧美aⅴ一区二区三区视频| 欧美不卡一区二区三区| 国产麻豆精品95视频| 中文字幕一区二区在线观看| 在线免费精品视频| 美腿丝袜在线亚洲一区| 国产精品美女久久久久久久| 日本道色综合久久| 免费人成网站在线观看欧美高清| 久久久久国产免费免费 | 欧美一区二区三区在线视频| 国模冰冰炮一区二区| 综合久久一区二区三区| 4438成人网| 99热99精品| 美国一区二区三区在线播放| 自拍偷拍欧美激情| 精品免费国产二区三区| 一本色道久久加勒比精品| 奇米在线7777在线精品| 亚洲视频电影在线| 日韩亚洲欧美在线观看| 色美美综合视频| 国产精品自拍网站| 亚洲电影在线免费观看| 国产精品灌醉下药二区| 日韩三级中文字幕| 91视频免费播放| 国产一区二区久久| 爽好多水快深点欧美视频| 国产精品夫妻自拍| 26uuu久久天堂性欧美| 欧美日韩亚洲不卡| 日韩午夜三级在线| 日本韩国欧美三级| 成人手机在线视频| 国内精品国产成人国产三级粉色| 亚洲国产一二三| 亚洲精品日韩专区silk| 久久蜜桃av一区精品变态类天堂 | 久久一留热品黄| 欧美日韩免费一区二区三区| 95精品视频在线| 成人av在线网站| 懂色av噜噜一区二区三区av| 久久国产精品无码网站| 热久久国产精品| 日韩vs国产vs欧美| 亚洲综合色丁香婷婷六月图片| 亚洲日本丝袜连裤袜办公室| 欧美精彩视频一区二区三区| 精品1区2区在线观看| 精品久久久三级丝袜| 337p亚洲精品色噜噜噜| 7777精品伊人久久久大香线蕉超级流畅| 色偷偷88欧美精品久久久| 99国产精品久久久久| 91香蕉视频污在线| 97久久精品人人澡人人爽| 99精品国产99久久久久久白柏 | 欧美日韩大陆在线| 欧美日韩成人一区二区| 欧美日韩国产大片| 欧美精品在线观看播放| 亚洲免费毛片网站| 夜夜亚洲天天久久| 日韩激情视频网站| 国产一区二区不卡老阿姨| 国产激情偷乱视频一区二区三区| 粉嫩久久99精品久久久久久夜| 国产传媒欧美日韩成人| 成人av电影在线播放| 一本久久综合亚洲鲁鲁五月天| 色婷婷一区二区三区四区| 日本久久一区二区| 91精品国模一区二区三区| 欧美成人r级一区二区三区| 久久久精品黄色| 亚洲视频综合在线| 日韩精品欧美成人高清一区二区| 久久精品国产精品亚洲红杏 | 国产拍揄自揄精品视频麻豆| 中文字幕在线不卡视频| 一区二区三区精品在线| 午夜精品久久久久久久久久久| 蜜臀久久久久久久| 国产成人午夜精品影院观看视频| 99re亚洲国产精品| 欧美在线观看视频在线| 精品嫩草影院久久| 伊人一区二区三区| 经典三级视频一区| 91久久国产最好的精华液| 日韩一区二区电影网| 国产精品三级视频| 日本欧美一区二区| 成人激情文学综合网| 欧美一区中文字幕| 综合av第一页| 狠狠v欧美v日韩v亚洲ⅴ| 91在线看国产| 久久人人爽爽爽人久久久| 亚洲精选在线视频| 成人性生交大片免费| 精品久久久久香蕉网| 亚洲综合视频在线|