Exemplo n.º 1
0
        public decimal BalanceAmount(string name)
        {
            if (Balances == null || name.IsNullOrWhiteSpace())
            {
                return(0);
            }

            if (!Balances.ContainsKey(name))
            {
                return(0);
            }

            return(Balances[name].BalanceAmount);
        }
Exemplo n.º 2
0
        public static double Ln(double x)
        {
            double var;

            if (ThreadedNaturalLogarithm.ContainsKey(x))
            {
                var = ThreadedNaturalLogarithm[x];
            }
            else
            {
                var = Math.Log(x);
                ThreadedNaturalLogarithm.Add(x, var);
            }

            return(var);
        }
Exemplo n.º 3
0
        public void Save(DealRequest DRequest)
        {
            lock (DataDealRequest)
            {
                if (DataDealRequest.ContainsKey(DRequest.CreationTime))
                {
                    DataDealRequest[DRequest.CreationTime] = DRequest;
                }
                else
                {
                    DataDealRequest.Add(DRequest.CreationTime, DRequest);
                }
            }

            this.SaveDataRequest(DRequest.CreationTime.ToString());
        }
Exemplo n.º 4
0
 // ensure that key/name associations persist between runs, done so remote people dont change their name and try to play with
 // us, once we make an association with a key, we change that name on our terms, also prevents key spoofing with dupe
 // user ids
 public void SaveKeyIndex(PacketStream stream)
 {
     NameMap.LockReading(() =>
     {
         foreach (ulong user in KeyMap.Keys)
         {
             if (NameMap.ContainsKey(user))
             {
                 Debug.Assert(NameMap[user] != null);
                 if (NameMap[user] != null)
                 {
                     stream.WritePacket(new UserInfo()
                     {
                         Name = NameMap[user], Key = KeyMap[user]
                     });
                 }
             }
         }
     });
 }
Exemplo n.º 5
0
        public void SimTest()
        {
            if (Core.InvokeRequired)
            {
                Core.RunInCoreAsync(delegate() { SimTest(); });
                return;
            }

            uint project = 0;

            // schedule
            PlanBlock block = new PlanBlock();

            block.ProjectID   = project;
            block.Title       = Core.TextGen.GenerateWords(1)[0];
            block.StartTime   = Core.TimeNow.AddDays(Core.RndGen.Next(365));      // anytime in next year
            block.EndTime     = block.StartTime.AddDays(Core.RndGen.Next(3, 90)); // half a week to 3 months
            block.Description = Core.TextGen.GenerateSentences(1)[0];
            block.Scope       = -1;
            block.Unique      = Core.RndGen.Next();

            // add to local plan
            LocalPlan.AddBlock(block);


            // goals

            // get  uplinks including self and scan all goals for  anything assigned to local
            List <ulong> uplinks = Core.Trust.GetUplinkIDs(Core.UserID, project);

            uplinks.Add(Core.UserID);

            List <PlanGoal> assignedGoals = new List <PlanGoal>();

            PlanMap.LockReading(delegate()
            {
                foreach (ulong uplink in uplinks)
                {
                    if (PlanMap.ContainsKey(uplink) && PlanMap[uplink].GoalMap != null)
                    {
                        foreach (List <PlanGoal> list in PlanMap[uplink].GoalMap.Values)
                        {
                            foreach (PlanGoal goal in list)
                            {
                                if (goal.Person == Core.UserID)
                                {
                                    assignedGoals.Add(goal);
                                }
                            }
                        }
                    }
                }
            });


            PlanGoal randGoal = null;

            if (assignedGoals.Count > 0)
            {
                randGoal = assignedGoals[Core.RndGen.Next(assignedGoals.Count)];
            }


            List <ulong> downlinks = Core.Trust.GetDownlinkIDs(Core.UserID, project, 3);

            if (downlinks.Count > 0)
            {
                // create new goal
                PlanGoal newGoal = new PlanGoal();

                newGoal.Project     = project;
                newGoal.Title       = GetRandomTitle();
                newGoal.End         = Core.TimeNow.AddDays(Core.RndGen.Next(30, 300));
                newGoal.Description = Core.TextGen.GenerateSentences(1)[0];

                int choice = Core.RndGen.Next(100);

                // create new goal
                if (randGoal == null || choice < 10)
                {
                    newGoal.Ident  = Core.RndGen.Next();
                    newGoal.Person = Core.UserID;
                }

                // delegate goal to sub
                else if (randGoal != null && choice < 50)
                {
                    PlanGoal head = randGoal;

                    // delegate down
                    newGoal.Ident      = head.Ident;
                    newGoal.BranchUp   = head.BranchDown;
                    newGoal.BranchDown = Core.RndGen.Next();
                    newGoal.Person     = downlinks[Core.RndGen.Next(downlinks.Count)];
                }
                else
                {
                    newGoal = null;
                }


                if (newGoal != null)
                {
                    LocalPlan.AddGoal(newGoal);
                }
            }


            // add item to random goal
            if (randGoal != null)
            {
                PlanItem item = new PlanItem();

                item.Ident    = randGoal.Ident;
                item.Project  = randGoal.Project;
                item.BranchUp = randGoal.BranchDown;

                item.Title          = GetRandomTitle();
                item.HoursTotal     = Core.RndGen.Next(3, 30);
                item.HoursCompleted = Core.RndGen.Next(0, item.HoursTotal);
                item.Description    = Core.TextGen.GenerateSentences(1)[0];

                LocalPlan.AddItem(item);
            }

            SaveLocal();
        }